dataroots
Forum Replies Created
-
Forum: Plugins
In reply to: [Pay For Post with WooCommerce] Woocommerce subscriptions and membershipsHi Matt,
thanks for your quick response and guide me into the right direction. I really appreciate it. Most likely it will be a function to automatically cancel the order after the user or admin cancels the subscription.
Thanks!
Hi ztof,
It’s been a while since you posted your question, but I just came across it today. To exclude the FooBox javascript and css files from the homepage, you can include this code in your functions.php file:
function my_deregister_styles() {
if ( is_front_page() ) {
wp_deregister_style( ‘foobox-free-min’ );
wp_deregister_script( ‘foobox-free-min’ );
}
}Hope this helps!
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Thumbnails are not centeredHi RinorMaz,
The best option is to find out where the dimensions of 149 pixels is hard coded in the WordPress settings. This could be either in the Woocommerce thumbnail settings (hard crop) or in the Yith settings.
A css fix would be
.yith_magnifier_thumbnail {
width: 95px !important;
}But this just overrules the hard code settings.
Hope this helps.
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Slider thumbnails not alignedHi RinorMaz,
No problem! I am not 100% sure where to look as I don’t have admin access to your website. Looks like the thumbnail size is hard cropped. Check in the Yith Zoom Magnifier settings and make sure the option “This option fits the thumbnails within the available space. Disable it if you want to manage freely the thumbnails (eg. add margins, paddings, etc.) ” is not selected. Deselect and refresh your website.
If this doesn’t work I suggest you change the settings in Woocommerce – display and deselect hard crop for the thumbnails. You have to regenerate the thumbnails though. There is a plugin for this.
Good Luck!
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Slider thumbnails not alignedHi RinorMaz,
You have a set width of 149 pixels for the thumbnails, while the actual width is 75 pixels. This causes the thumbnail box to stretch. You have to change this into your thumbnail settings.
Forum: Plugins
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Slider thumbnails not alignedHi,
Try this in your style.css or custom style file:
ul.yith_magnifier_gallery { margin: 0; }
If that doesn’t work, change this in your themes/Total/style.css:
.entry ul, .entry ol { margin: 0 0 20px 30px }into
.entry ul, .entry ol { margin: 0 0 20px 0 }
Good Luck!