clazzid
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Galleries] Second Instance in single post?Hey! thanks for the super quick response Andy!, gotcha, what i did was just copy the whole plugin and ran some auto-renaming on the functions and it all seems to work! haha, but I will look into the metabox file and metadata to make it a little cleaner.
Thanks for the awesome pointers.
And for the great little plugin!this should do it as well:
<?php _e("<!--:en-->english text<!--:--><!--:es-->spanish text<!--:-->"); ?>Forum: Plugins
In reply to: [Promotion Slider] [Plugin: Promotion Slider] Slider duplicating imagehi, im very new in jquery, ive been trying to fix that issue myself for some time, to no true avail, if you click faster than the “fadeOut” time, it bugs, opens new slide under lat one coz last one is still there, wast sure how to fix that, im thinking it needs to disable the next and prev function till fade out complete, but i didnt really understand your code.
so i came up with a css hack fix
in promo_slider.js go to the end where to// Add / Remove classes
and addcurrentItem.css({position: 'absolute', top: '0px', left: '0px'}); newItem.css({position: 'absolute', top: '0px', left: '0px'});and then just add
.panel:not(.current) { visibility:hidden; }in your stylesheet or anywhere 😛
its a bit funky but works for me
adding the first lines in css didn’t work, apparently because the “current” class wasn’t applied on load all the times,