• Hi guys,

    I’m trying to add the Reviews Template above the Related Products on the Single Product page. I was using the following add_action call to do this before updating to WC 3.0:

    add_action( 'woocommerce_after_single_product_summary', 'comments_template', 14 );

    This no longer works, so I tried creating a function to hook in and display the reviews template like so:

    function osc_wc_add_product_comments_template() {
    	wc_get_template( 'woocommerce/single-product-reviews' );
    }

    But this isn’t working. I know it’s not an issue of using the Priority of 14 in the action hook, since I tested displaying some heading text using that priority and it showed up above the Related Products just fine.

    Is there a new way to do this with WooCommerce 3.0 and beyond?

    Thanks!

  • The topic ‘Show Product Reviews Template Outside of Tab in WooCommerce 3.0 +’ is closed to new replies.