Attributes table after product_meta
-
Hello.
Is it possible place the attributes table, after product_meta? Not after short description.
Thanks in advance.
Attachments:
You must be
logged in to view attached files.
Hello,
Unfortunately, there is no option to move the attributes, they can be shown after the short description or in the Additional tab.
Best Regards
Hello . Thank you for your support.
I solved it with this snippet on child theme on function.php.
/**
* Show product attributes after product meta
*/
add_action ( 'woocommerce_product_meta_end', 'show_attributes', 25 );
function show_attributes() {
global $product;
wc_display_product_attributes( $product );
}
Happy new year.
Hello,
Thank you for sharing the information. If you have any questions please feel free to contact us.
Happy New Year!