Gravity Forms on submit return value on same page
I would use a Gravity Forms text confirmation. It will allow you to pull the field value of the Wish field via merge tags. And you can create your share links in the same confirmation.
I would use a Gravity Forms text confirmation. It will allow you to pull the field value of the Wish field via merge tags. And you can create your share links in the same confirmation.
My plugin Gravity Forms Media Library provides this functionality for Gravity Forms: https://gravitywiz.com/documentation/gravity-forms-media-library/
You should be able to replace this section: $posts = get_posts( ‘numberposts=-1&post_status=publish&post_type=questionnaire’ ); $choices = array(); $choices[] = array(“text” => “Select Questionnaire”, “value” => “”); foreach ( $posts as $post ) { $choices[] = array( ‘text’ => $post->post_title, ‘value’ => $post->post_title ); } // update ‘Select a Post’ to whatever you’d like the instructive option … Read more
How to gets users EMAIL by their USERNAME
I think this would a job for Ajax. I’ve done a similar thing to load more posts, which is basically, onclick, load content, append content (to existing element). I haven’t finalized it entirely but I think this will give you a good nudge in the desired direction. First we need a function which does what … Read more
you can create a single page that doesn’t let them register and then asking their First Name, Last Name and other details. And then use the field upload in the advance fields on the backend view you will be able to see the submission together with their name, address and other details and the file … Read more
The scripts and styles were not loading on admin pages because the No-Conflict Mode setting of Gravity Forms plugin was turned ON. As the setting is designed to do so: As described in Gravity Forms documentation: To temporarily resolve the issue, go to Forms > Settings and enable No Conflict mode. This should stop third … Read more
Never mind… got it and feel stupid. This did the trick: #field_35_53 td::after { content: attr(data-label); font-size: 14px; letter-spacing: .5pt; white-space: nowrap; display: block; clear: both; }
After debugging, I noticed that the formId in the hooked function for filter was actually fieldId for the date field and hence the fieldId undefined. Here no actual formId is received in hooked JS filter function and the actual fieldId is passed as formId. So, quick workaround I applied using formId only, is: // Allow … Read more
Get value of pre-populated Gravity forms field as variable in my function