Home Forums WoodMart support forum Moving UpSells

Moving UpSells

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #286402

    silentmedia
    Participant

    Hi Team!

    I would like to move the Up-Sells section on the Product Page from the default section to Above Tabs.

    I found this code on the web, which sort of works, it does not remove from the footer.

    I would also like the Up-Sells Products to be centered. (Even if there are 4 products to show on 6 column setting).

    add_action( 'init', 'move_upsells_after_related' );
    function move_upsells_after_related( ) {
        remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
        add_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 5 );
    }

    Kind Regards,
    Jasbir

    #286697

    Hello,

    Please add these hooks to your code:

    remove_action( 'woodmart_before_sidebar_area', 'woocommerce_upsell_display', 20 );
    remove_action( 'woodmart_woocommerce_after_sidebar', 'woocommerce_upsell_display', 10 );

    Best Regards

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