• I use this code to move additional information under add to cart button.
    Is there a way to also move the files?

    // Add "additional information" after add to cart
    add_action( 'woocommerce_single_product_summary', 'additional_info_under_add_to_cart', 35 );
    function additional_info_under_add_to_cart() {
        global $product;
    
        if ( $product && ( $product->has_attributes() || apply_filters( 'wc_product_enable_dimensions_display', $product->has_weight() || $product->has_dimensions() ) ) ) {
            wc_display_product_attributes( $product );
        }
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Hitendra Chopda

    (@hitendra-chopda)

    Hello Orloxgr,

    Thanks for reaching out to us.

    No, our product attachments showcase based on the hook that you can’t use in another woocommerce hook.

    If always showcase all the attachments in the attachment tab.

    Best Regards,
    Hitendra & Dotstore Team

    Plugin Support Hitendra Chopda

    (@hitendra-chopda)

    Hello Orloxgr,

    Hope you are doing well.

    We haven’t heard back from you in a while, so I’m going to mark this as resolved.

    If you have any further questions, you can start a new thread.

    Best Regards,
    Hitendra & Dotstore Team

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Move tab under add to cart’ is closed to new replies.