1 giacinto Nov 03, 2006 14:59
3 giacinto Nov 04, 2006 14:05
THANK YOU M8! :D
4 giacinto Nov 04, 2006 14:05
THANK YOU VERY MUCH! :D
5 nomad Aug 05, 2007 18:59
In my case it does not work. The checkboxes do appear, but there is no "Get Selection" button. Has something changed in later versions? (I use 1.10.2 Florida)?
6 afwas Aug 05, 2007 20:52
If you are interested in this topic, do look at my post in [url=http://forums.b2evolution.net//viewtopic.php?p=58257#58257]this topic[/url] as well.
Regarding the form, I am experiencing the same behaviour. As soon as I find out more, I will report back to this topic.
Good luck
7 nomad Aug 05, 2007 20:56
Thanks for your rely. I hope we'll get that fixed. But the "Get Selection" - button does appear on the skin blog http://skins.b2evolution.net/ so there must be a solution
8 afwas Aug 05, 2007 21:58
I have the hack.
This is tested in B2evo 1.10.2. If you haven't got that version already, do [url=http://b2evolution.net/news/2007/08/05/1_10_upgrade_now]upgrade[/url] today.
Open ../blogs/plugins/_categories.plugin.php and add after (line 150):
echo $params['title'];
this:
/* Add Missing SubmitButton hack by Afwas */
if ( $params['form'] )
{
global $Blog;
$bblogUrl = $Blog->dget( 'blogurl', 'raw' );
echo'<form action="'.$bblogUrl.'" method="get">';
}
/* End start <form> */
Add after (approx line 246):
) echo 'checked="checked" '?> />
<label for="catALL"><?php echo T_('ALL') ?></label>
</span>
this:
<!-- Second part of Add Missing SubmitButton hack by Afwas -->
<br /><br />
<input name="submit" class="submit" value="Get selection" type="submit">
</form>
<!-- End hack by Afwas -->
or download the zipfile and replace the whole file (do make a backup of the old one).
It works on my blog. Do report any odd behaviour.
Good luck
9 nomad Aug 05, 2007 22:08
Thanks! Now there is a Get Selection button, but it sends me to the wrong URL - the directory name of the chosen skin appears in the URL
10 afwas Aug 05, 2007 22:28
Something is wrong. As soon as I figured it out, I am back at this topic.
*edit*
The version that's up for download should work
11 nomad Aug 05, 2007 22:30
Yes, I have
12 nomad Aug 06, 2007 00:18
Thanks! Now it works!
find a piece that looks like this in your skins _main.php :-
and change it to look like this :-