Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
September 30, 2015 at 12:35 pm #24156
I don’t know why but for some reason maybe since theme/plugin update the product pricing has appeared underneath the captions on category pages where image thumbnails are displayed , I would like to remove it along with the price on product pages which sits under the image title.
I can’t seem to find any setting which controls whether to display this or not, any help would be much appreciated.
September 30, 2015 at 8:16 pm #24159Try this CSS code (add it to your child theme or to Symbiostock Express > Advanced Settings > Custom CSS Box):
.post-type-archive-product .product_price { display: none; } /* hide the price underneath the thumbnails on shop pages */ .tax-product_cat .product_price { display: none; } /* hide the price underneath the thumbnails on product category pages */ .tax-product_tag .product_price { display: none; } /* hide the price underneath the thumbnails on product tag pages */ .single-product .pricebox { display: none; } /* hide the price on single product pages */ .home #home-product-carousel .product_price { display: none; } /* hide the price underneath the thumbnails on home product carousel */ .single-product #upsale-product-carousel .product_price { display: none; } /* hide the price underneath the thumbnails on upsale product carousel */ .single-product #related-product-carousel .product_price { display: none; } /* hide the price underneath the thumbnails on related product carousel */
September 30, 2015 at 8:58 pm #24162October 1, 2015 at 1:04 am #24164Agreed,
great work as usual Henri, very much appreciated and it does work a treat!
-
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.