Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamara-m/bfb6fa5cb0c8d0303e52352510ba2b00 to your computer and use it in GitHub Desktop.
Save tamara-m/bfb6fa5cb0c8d0303e52352510ba2b00 to your computer and use it in GitHub Desktop.
<?php
/**
* Create multiple variables for calculation fields
*/
function prefix_calculation_global_calculation_vars( $vars ) {
return array(
'my_first_variable' => 50,
'price_modifier_1' => 150
);
}
add_filter( 'pewc_calculation_global_calculation_vars', 'prefix_calculation_global_calculation_vars' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment