• Resolved aprpac

    (@aprpac)


    Hi,

    How do I get the form heading to appear below the Add to Cart buttons instead of to the side of it?

    Thanks in advance
    Paul

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    add_filter('wcpa_display_hooks', function ($hooks) {
     
        $hooks["fields"] = ["woocommerce_after_add_to_cart_button", 10];
     
        return $hooks;
    });

    Use this code to show the fields below the add to cart button
    Thank you

Viewing 1 replies (of 1 total)
  • The topic ‘Move form below Add to Cart button’ is closed to new replies.