Home Forums Basel support forum Attributes table after product_meta

Attributes table after product_meta

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

    xsports81
    Participant

    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.
    #253751

    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

    #254862

    xsports81
    Participant

    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.

    #254936

    Hello,

    Thank you for sharing the information. If you have any questions please feel free to contact us.

    Happy New Year!

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