Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // http://www.gravityhelp.com/forums/topic/gd-star-rating-vote-field
- // run the code after the form is submitted, for form 1 only
- add_action('gform_after_submission_1', 'record_gdsr_vote', 10, 2);
- function record_gdsr_vote($entry, $form) {
- // field #3 is the vote field - change it if your vote is recorded in a different field
- gdsrBlgDB::save_vote($entry['post_id'], $entry['created_by'], $entry['ip'], $entry['user_agent'], (int)$entry['3'], 0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement