Archived topic
Add label under the product gallery
3 replies · Started by nik9 on September 27, 2021
Hello, we want to add a info about the product copyright on a product single page. One option is to display this info unter the product picture with the hook "woocommerce_product_thumbnails". However this does not work. Also possible would be to display it on the bottom center on the product picture like a watermark.
What is the best way to do this with GP?
Cheers
Hi there,
You can refer to this Woocommerce visual hook guide:
https://www.businessbloomer.com/woocommerce-visual-hook-guide-single-product-page/
If the content you want to add is pure text, you can also try this CSS:
.single-product figure.woocommerce-product-gallery__wrapper:after {
content: 'your content here';
display: block;
text-align: center;
}
Let me know :)
Hello,
Thanks. Yes this looks nice. Thanks :)
You are welcome :)