Home Forums WoodMart support forum SHOW CUSTOM MADE WIDGET (PRODUCT CAROSUEL) ON THE BOTTOM OF SINGLE PRODUCT PAGE

SHOW CUSTOM MADE WIDGET (PRODUCT CAROSUEL) ON THE BOTTOM OF SINGLE PRODUCT PAGE

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #371506

    Golden1
    Participant

    PLEASE SEE ATTACHED IMAGE

    #371598

    Luke Nielsen
    Keymaster

    Hello,

    In your case the best way to show 3 products on the single page is to use the Additional tabs in Theme Settings -> Single product -> Tabs -> to the “Content type” field add an HTML block that contains some product element from your page builder.

    https://monosnap.com/file/6CrLvQOYhFSIQGdpeCJ367EiBBJM1a

    https://gyazo.com/4655950d7ac6df371ab7da9b786c77ba

    Let me know if there is anything else I can help and have a good day!

    Kind Regards

    #371813

    Golden1
    Participant

    Hi thanks for quick response.

    Wouldn’t the solution of adding an HTML block to ‘additional tab’ require the customer to physically click the tab before being able to view the items?

    I was hoping for a solution to have it displayed by default on the standard single product page.

    #371940

    Luke Nielsen
    Keymaster

    Hello,

    This custom tab with the products can be reordered to the first, hence this tab will be opened by default and the customer will not have to click on it. In order to do it, you should add the below code to the functions.php file in your child theme.

    if (  ! function_exists('wd_reorder_tabs')  ) {
    
        function wd_reorder_tabs( $tabs ) {
            $tabs['wd_custom_tab']['priority'] = 5;
    
            return $tabs;
        }
    
        add_filter( 'woocommerce_product_tabs', 'wd_reorder_tabs', 98 );
    }

    https://gyazo.com/9bfccd318f59c39971eda11e3ba9f8b0

    Looking forward to hearing back from you.

    Kind Regards

    #372078

    Golden1
    Participant

    Hello, won’t that replace the description tab from being shown by default?

    Also, any way to make the product carousel dynamically show products from the same brand?

    #372435

    Luke Nielsen
    Keymaster

    Hello,

    Yes, it will replace the description tab. So in such a case, I suggest you try to use the “Upsells” functionality of Woocommerce that appears products under the description of the product.

    https://monosnap.com/file/POkO3nxUMsYDlChmC0jM5vNh3j4MEi

    For each product, you can set any Uppsells products (e.g with the same brand) via Dashboard -> Products -> Linked products.

    https://monosnap.com/file/WXBdhKQr1G3rQDMNzM6lqNpnDeNxsa

    Unfortunately, we don’t have such functionality that dynamically shows products from the same brand in the carousel.

    Kind Regards

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