Home Forums WoodMart support forum Upsells products sidebar

Upsells products sidebar

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #331912

    technique
    Participant

    Hello,

    1. How can I make upsells products grid one column on sidebar?
    2. How can I show product name and price below product image on upsells products grid?
    See attached image for clarification

    Thank you and regards

    Attachments:
    You must be logged in to view attached files.
    #331924

    technique
    Participant

    Hello again,

    Related to my previous questions, can I move upsells product grid above product description tabs when I set upsells product positions on standart?

    Please see attached image for clarification.

    Thanks a lot

    Attachments:
    You must be logged in to view attached files.
    #331964

    Hello,

    1&2) Please provide the URL of the website to check it myself and help you out accordingly.

    3) Please try adding the following Code on the child theme functions.php

    add_action( 'wp', 'move_upsells_after_related', 1010 );
    function move_upsells_after_related( ) {
    	remove_action( 'woodmart_before_sidebar_area', 'woocommerce_upsell_display', 20 );
    	remove_action( 'woodmart_woocommerce_after_sidebar', 'woocommerce_upsell_display', 10 );
        remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
        add_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 5 );
    }

    Best Regards

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