suzt808
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Variations Radio Buttons] Not working for Variable SubscriptionsMantish, Do you have a solution for having the radio buttons work with Variable Subscription products ?
Forum: Plugins
In reply to: [Facebook] Home page wrong redirectI have the same issue of the site redirecting to the home page ( https://mysite.com/ ) when pagination is set correctly and visiting https://mysite.com/page/2/ when this plugin is on and static homepage is set.
When the plugin is turned off the issue is resolve – the pages redirect correctly
Is there a fix for this ?
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Page title not being picked up by Twitter…Thanks jjwalker,
your php code was the solution to pull excerpt titles and linksForum: Plugins
In reply to: [Easy Instagram] Removing image dimensions (responsive)Curious, did you get an answer to this or have you resolved this yourself ?
Forum: Plugins
In reply to: [WooCommerce] Trying to remove sidebar from all Woo commerce PagesThis is what I used/ added to my functions.php file to remove the sidebar on all pages
/** * WooCommerce * * Unhook sidebar */ remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10);
HTH
Forum: Plugins
In reply to: [Haiku minimalist audio player] Just updated to new version of HaikuThe patch by Gentlefish worked for me.
@momnt when can this get further tested incorporated into the plugin ?
Thank you for a good plugin, just need to fix the replace all mp3s issue
Forum: Plugins
In reply to: [Plugin: Lightbox Gallery] Does it work on php gallery code?I have this issue also…
Ideally I would like to call the gallery dynamic from within a loop for a specific category. However the code above and the following code pulled from wordpress codex on the gallery also doesn’t work<?php //$gallery_shortcode = '[gallery id="' . intval( $post->ID) . '"]'; //print apply_filters( 'the_content', $gallery_shortcode ); ?>
The above didn’t work exactly, it pulled all the gallery images on the page in a column and once clicking on the images, it went to the image page versus lightbox.
I also tried
<?php $gallery_shortcode = '[gallery]'; print apply_filters( 'the_content', $gallery_shortcode ); ?>
And that didn’t work either..
Do you have a suggestion for pulling multiple galleries within the loop ?
Thanks in advance,Forum: Plugins
In reply to: [Plugin: Lightbox Gallery] LightBox Gallery – multiple galleriesI reviewed the lightbox-gallery.js and added the class=”galleryX” to the shortcode.
however multiple galleries still did not work for me either.I tried adding additional lines to the javascript to
jQuery('.galleryX a').lightBox({captionPosition:'gallery'});
and so on and that did not work either.What is the method to make the additional galleries work ?
Thank you