move tab “Reviews tab” in WooCommerce Single Product Page
-
I want to change the position of the “reviews tab” to the position below the share button on the right
i removed the default “reviews tab” with this code and it worked
add_filter( 'woocommerce_product_tabs', 'maarra_remove_reviews_tab', 9999 ); function maarra_remove_reviews_tab( $tabs ) { unset( $tabs['reviews'] ); return $tabs; }
but I don’t know how to re-add the “reviews tab” under the share button. How to do it, Thank you
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘move tab “Reviews tab” in WooCommerce Single Product Page’ is closed to new replies.