bofman
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced post slider] Adding the categoryHello,
I needed to add the category in the slider. Perharps it might help you, I edited the file advanded-post-slider.php and added the following lines :
<h1 class="advs-cat"><?php $category = get_the_category();echo $category[0]->cat_name;?></h1>just before
<<?php echo $optset['advps_ttitle_tag'];?> class="advs-title" style="font-size:<?php echo $optset['advps_titleFsize'];?>Note that this is a temporary solution until the author plugin adds this feature. If you update the plugin it will go.
Forum: Plugins
In reply to: [Advanced post slider] Previous / Next always visibleI know it’s not the best solution (in France we call this way of doing “Système D”), but for the moment at the line 451 of advanced-post-slider.php I replaced “fadeout” by “stop”
$(".advps-left-arrow, .advps-right-arrow,.advps-left-arrow-two, .advps-right-arrow-two").stop(200,'linear',function(){});<?php endif;?>but the better way will come soon when it will come from the author 🙂
(and if you update the plugin it will leave, but I use the slider template only at one place)Forum: Plugins
In reply to: [Advanced post slider] Broken after today's upgradethanks digontoahsan,
effectively I had to remove it or my title tag wasn’t displayed.
Forum: Plugins
In reply to: [Advanced post slider] Previous / Next always visibleoups…sorry for that 🙂
I was thinking that opening a second topic with the same request was unusefull.No problem
Forum: Plugins
In reply to: [Advanced post slider] Previous / Next always visibleHello,
i really need this feature too, could someone help us please ?
thanks 🙂
Forum: Plugins
In reply to: [Advanced post slider] Broken after today's upgradeHello,
I think the plugin author forgot to open a DIV markup in advanced-post-slider.php, line 493.
Just replace :
<<?php echo $optset['advps_ttitle_tag'];?> class="advs-title"
by :
<?php echo $optset['advps_ttitle_tag'];?><div class="advs-title"works for me 🙂