Home Forums WoodMart support forum Instagram not showing + another issue.

Instagram not showing + another issue.

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #37011

    miguel1876
    Participant

    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.

    #37031

    Artem Temos
    Keymaster

    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

    #37033

    miguel1876
    Participant

    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?

    #37036

    Artem Temos
    Keymaster

    Try this

    add_action( 'woocommerce_before_single_product_summary.', 'product_labels', 43 );
    function product_labels() {
        echo '<p>Product Labels go here</p>';
    }
    #37040

    miguel1876
    Participant

    No, It does not work 🙁

    #37042

    Artem Temos
    Keymaster

    Try to add it directly to the file woocommerce/content-single-product.php overriding it in the child theme https://gyazo.com/abe78a26fc7f448888e870031821302e

    #37048

    miguel1876
    Participant

    I guess that’s an option.

    Thanks for your help.

    #37056

    Artem Temos
    Keymaster

    You are welcome!

Viewing 8 posts - 1 through 8 (of 8 total)