Skip to content

Instantly share code, notes, and snippets.

@Idealien
Created September 26, 2018 01:49
Show Gist options
  • Save Idealien/8fb26ba57600d26d54b4b3ce8126035c to your computer and use it in GitHub Desktop.
Save Idealien/8fb26ba57600d26d54b4b3ce8126035c to your computer and use it in GitHub Desktop.
Example of post-workflow step calculations
<?php
add_action( 'gravityflow_post_webhook', 'sh_action_gravityflow_post_webhook', 10, 4 );
function sh_action_gravityflow_post_webhook( $response, $args, $entry, $current_step ) {
//Replace step ID and fields for calculation to match your use case.
if ( $current_step->get_id() == 77 && is_numeric( $entry['3'] ) && is_numeric( $entry['16'] ) ) {
$entry['14'] = round( $entry['3'] * $entry['16'], 2);
$result = GFAPI::update_entry( $entry );
}
}
@kamyarazar
Copy link

kamyarazar commented Feb 16, 2021

Hello again
Thank you very much
I was submit in there and if it will be solved, ill share it for sure!
If you dont like my comments to be here, im sory for that an i can delete them quiekly
Thanks again and Good Bye.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment