antistenes
Forum Replies Created
-
Forum: Plugins
In reply to: [IW Magnific Popup] Nextgen/NexcellentHi,
I’ve found a simple and maybe a bit crude way to make it work with one line of jQuery.
<script> jQuery( document ).ready(function($) { $(this).find(".ngg-galleryoverview").addClass("iwmp-gallery gallery"); }); </script>
Forum: Plugins
In reply to: [AddToAny Share Buttons] Excluding from specific categoryTo elaborate on the same issue: It would be fantastic to be able to NOT show on certain Post-Categories as well as being able to exclude specific (Custom) Post-Types as well.
I’ve had the same problem, here’s the solution I’ve found:
In WP-Types go to ‘Custom Fields Control’, in the column ‘Types Name’ look up the value of the Custom Field you want to display (It’s something like ‘wpcf-xxx’.) That’s the value you’ll have to put into the Revolution Slider meta-tag, like so: %meta:wpcf-xxx%cheers,
a.Forum: Plugins
In reply to: [WP FullPage] setting for horizontal scrolling of postsThank you very much!
Forum: Plugins
In reply to: [WP Single Post Navigation] does not seem to work with headway 3.4.3 – 3.4.11I’ve got a reply from Headway support that solves the problem. I’ll quote:
You can tell the developer to add the following hook in for Headway 3 compatibility:
add_action( 'headway_body_close', 'ddw_wpspn_single_prev_next_links' );
… The other hook is for Headway 2.If you’re using a child theme, feel free to put that same code in the functions.php file until the plugin author addresses it. If you’re not using a child theme, you can put the following into your Header Scripts/Analytics option under Headway > Options:
<?php add_action( 'headway_body_close', 'ddw_wpspn_single_prev_next_links' ); ?>