Instagram not showing + another issue.
-
Hi guys.
FYI – We have used Basel on two clients site and now Woodmart on another two clients.
I have a couple of issues:
1 – The Instagram element is not working. It only shows one image.
http://rarinutrition.com/
You can see the issue on the home page and on the Product pages.
http://rarinutrition.com/product/infinity/
2 – I wanted to add a bit of custom content below the Product Image in the Single Product page, however it doesn’t seem to be working. The content shows for a brief second but then it disappears when the page is fully loaded.
This is the code I am using.
add_action( 'woocommerce_product_thumbnails', 'product_labels', 10 );
function product_labels() {
echo '<p>Product Labels go here</p>';
}
Please help.
Thanks so much.
Hi,
We are glad to know that you used our themes for 4 projects 🙂 We would like to ask you to add all 4 purchase codes in your account section.
1. We have fixed the Instagram issue in the last update.
2. Try to use this action for this purpose woocommerce_before_single_product_summary
.
Regards
Hi
Sure… I will have to as our two clients for the code as they were the ones who purchased the other two licenses.
In regards to the second issue – It does not work. Nothing shows using
add_action( 'woocommerce_before_single_product_summary.', 'product_labels', 15 );
function product_labels() {
echo '<p>Product Labels go here</p>';
}
Any other suggestions?
Try this
add_action( 'woocommerce_before_single_product_summary.', 'product_labels', 43 );
function product_labels() {
echo '<p>Product Labels go here</p>';
}
Try to add it directly to the file woocommerce/content-single-product.php
overriding it in the child theme https://gyazo.com/abe78a26fc7f448888e870031821302e
I guess that’s an option.
Thanks for your help.