Gravity Forms – Prevent Multiple Form Entries Same User ID with Same Field Value

https://gravitywiz.com/documentation/gravity-forms-limit-submissions/ Gravity Perks is a great addon to gravity forms that does a lot of cool things. This particular add on would solve this problem – plus they have great support. I found this on github – I gave it a try and it didn’t break my site: https://github.com/uamv/gravityforms-custom-entry-limit Not sure if that means per … Read more

Add OG meta tags to wp head

Well You can also try by adding action inside. function after_submission( $entry, $form ) { $name = $entry[2]; $item = $entry[5]; insert_og_in_head( $name, $item ); add_action( “wp_head”, “insert_og_in_head” ); } add_action( “gform_after_submission”, “after_submission”, 10, 2 ); function insert_og_in_head( $name = NULL, $item = NULL) { global $post; if ( !is_page( 6 ) ) //if it … Read more

Adding Gravity Form With if(is_page) Is Not Working

if you got following in your functions.php function add_split_test_forms() { if (is_page(‘Homepage’)): gravity_form(19, false, false, false, ”, false); endif; } you will at least need to run this function once: add a line add_split_test_forms() in your functions.php. if your condition if (is_page(‘Homepage’)): is correct. (I prefer if ( is_front_page()): should also work.) Then your form … Read more

Gravity Forms ExactTarget Add-on Plugin: Nothing happens after step 2 when creating a new feed [closed]

It appears that there are some SimpleXMLElement objects in the array that is to be serialized in stack trace above, and as the error says, ‘Serialization of ‘SimpleXMLElement’ is not allowed.’ Boo. I tried to figure out how to modify the response so it replaces all the SimpleXMLElement objects, but this was a pain. I … Read more