• Resolved jdwf0658

    (@jdwf0658)


    hey just wondering if there are any filters or actions that can be tapped into. possibly remove and then add back in on the page where I want it.

    (Specifically the checkout page for guests) Would like to unhook this and put it under the place order buttons but before the closing form tag.

    Thanks

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jdwf0658

    (@jdwf0658)

    Also wondering for the use case of custom forms that I made without using a plugin. I try to keep from the bloat as I dont need 100 different features for every little thing.

    I haven’t even check over the plugins code yet to see if theres any hooks/ filters i can take advantage of, figured it would be faster and easier to get directly from the plugins developer! Thank you!

    Plugin Author Elliot Sowersby

    (@elliotvs)

    Technically if you have some code knowledge, you would be able to implement it onto any custom form. Just check out the code for one of the existing integrations and you’ll see what’s needed.

    The [simple-turnstile] shortcode will show the widget, then in your forms validation hook, just check the response with:

    $check = cfturnstile_check();
    $success = $check['success'];
    if($success != true) {
        // Code for error notice + stop submission
    }
    
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Documentation’ is closed to new replies.