Home Forums WoodMart support forum Move related products section before reviews

Move related products section before reviews

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #306443

    fuba182
    Participant

    On the product page, I use the separate reviews section. I would like the related products section to be before the reviews section. How to do it? Thank you

    #306576

    Hello,

    Now we are checking the product page and it is already as you describe: https://take.ms/rMSFe

    Please clarify.

    Best Regards

    #306950

    fuba182
    Participant

    hello.. yes.. I managed by inserting this code and disabling the option of related products in theme settings, because the disabled option was generating duplicity, showing the related products above and below the reviews. Please tell me if there’s something wrong or that can get better. Thank you

    add_action( 'init', 'move_related_products_before_tabs' );
    function move_related_products_before_tabs( ) {
        remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
        add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 5 );
    }
    #307116

    Hello,

    You apply the common practice in this code and it should work well.

    If you have any questions please feel free to contact us.

    Best Regards

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