Paul Sandford
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woo prettyPhoto lightbox thumbnails not working in GenesisShould just add that in fairness it’s probably not WooThemes that need to sort it out. I’m using Genesis too and that’s why I could see the problem you’re having. So, the problem lies elsewhere. :-/
Forum: Plugins
In reply to: [WooCommerce] Woo prettyPhoto lightbox thumbnails not working in GenesisHi Westweb.
I noticed this problem when I read your post – I was actually searching for help on how to use the prettyPhoto lightbox that WooCommerce uses and get that to work in other parts of the WP site (I’m struggling with that).
Anyway… The oblong is obviously linked to the main product image but it doesn’t make sense to me as to what the purpose of that is at all. The code is adding an inline style to that element when you hover over it that switches the display on. I have, however, had some luck thinking outside the box and this is purely a hack to hide the offending oblong. Couple of options – try either of these in your custom WooCommerce style sheet:
Option 1 – simply force the display to none (!important needed to override the inline style)
.pp_pic_holder.pp_woocommerce div.pp_gallery { display:none !important; }Option 2 – hide it by sending it beneath the image
.pp_pic_holder.pp_woocommerce div.pp_gallery { z-index: -1; }Hope that helps. Perhaps when WooThemes sort that mess out you can remove the temporary fix.