• Resolved kare93

    (@kare93)


    Hello,

    I would like to know if its possible to change position of fields. I want to set them under of add to cart button.

    Please help,
    thanks in advance

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    Yes, you can show the fields below add to cart button.

    Just use the filter below, Add this to your theme’s functions.php file

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

    Thank You

    Thread Starter kare93

    (@kare93)

    Perfect, it works!

    Thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change position of fileds’ is closed to new replies.