//wrap single product image in an extra div
add_action( 'woocommerce_before_single_product_summary', 'images_div', 2);
add_action( 'woocommerce_before_single_product_summary', 'close_div', 20);
function images_div()
{
echo "<div class='span_5 col single-product-main-image'>";
}
Into this:
//wrap single product image in an extra div
add_action( 'woocommerce_before_single_product_summary', 'images_div', 8);
add_action( 'woocommerce_before_single_product_summary', 'close_div', 29);
function images_div()
{
echo "<div class='span_5 col single-product-main-image'>";
}
Hi there,
I’ve installed the WooCommerce YITH zoom plugin, and it doesn’t seem to work with this theme as it is (please see the example here:http://publicmarking.com/product/damask-textile-repeat/)
The plugin makes the original main product image take up the entire width of the page.
Can you please help me to fix this?
The plugin’s website is here btw: http://wordpress.org/plugins/yith-woocommerce-zoom-magnifier/
I believe it is supposed to look like this:http://demo.yithemes.com/room09/product/africa-style/
With the plugin disabled, it looks like this: http://publicmarking.com/wp-content/uploads/2014/03/Screen-Shot-2014-03-09-at-12.39.49-PM.png
Hope this helps.
Thank you so much and I look forward to your reply.
Best, Larry
Hey Larry!
Open up the functions.php file and change this: Cheers :)Thank you!