• Resolved domzu

    (@domzu)


    Hi everybody!

    I am trying to move the form to another hook on the product page.
    How can i achieve that via functions.php?
    Or will it be necessary to edit the plugin files?

    Greetings
    domzu

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can move the form using hooks which is inside the add to cart form. For example;

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

    Thank you.

    Hi! I think this is what I’m searching for.. could you please help me to “hook” form under the product image in product page?

    Thanks so much

    You can’t hook the fields nowhere other than inside the cart form of woocommerce. You can’t submit the values to cart if the fields are not inside the cart form. The product thumbnail/image is out of the cart form. So you can’t place the form there.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Place on another Hook’ is closed to new replies.