Skip to content

Instantly share code, notes, and snippets.

@rsharrer
Created September 30, 2013 20:42
Show Gist options
  • Save rsharrer/6769966 to your computer and use it in GitHub Desktop.
Save rsharrer/6769966 to your computer and use it in GitHub Desktop.
WP-Functions /Gravity Forms Formlua
//GF Formula
add_filter("gform_calculation_formula", "change_formula", 10, 4);
function change_formula($formula, $field, $form, $lead){
$formula = "18% + " . $formula;
return $formula;
}
// End GF Formula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment