How can I move product meta to above the product details?
-
Hi, I want to move the category below the title. How can I do that?
Hello,
You can change the position of the “Category” field with the help of the below custom PHP code. Paste it to the functions.php file in your child theme.
add_action( 'wp', function (){
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 7);
}, 1000 );
Don’t hesitate to let me know if you need any further help or any other info.
Kind Regards
It worked perfectly. Thanks a lot for your support.
Hello,
Glad that everything is sorted out!
We will appreciate it if you can refer your friends or family members to become a part of our Xtemos family.
Thanks for your time and have a great day.
Kind Regards
The topic ‘How can I move product meta to above the product details?’ is closed to new replies.