1
vote
1answer
58 views

Gravity Forms field entries into wp_query loop

I have a simple function that filters the page content when form (ID 18) is submitted. It simply displays the entry of field (ID 13)... add_action("gform_after_submission_18", "set_post_content", 10, ...
0
votes
1answer
85 views

need correction with a snippet in functions.php

I use gravity forms and wp-favorites plugin (helps users select their favorite posts). I am trying to auto-populate gravity form with the following snippet. It works pretty well but it shows only the ...
0
votes
1answer
194 views

What's the best way to echo out a filter variable?

I have a plugin filter that isn't working for me: add_filter( 'gform_notification_email_3', 'route_notification', 10, 2 ); function route_notification($email_to, $entry) { global $post; ...