Skip to content

Instantly share code, notes, and snippets.

@vanbo
Created September 10, 2018 15:52
Show Gist options
  • Select an option

  • Save vanbo/31e6059d1288c9e1012024c50c91692e to your computer and use it in GitHub Desktop.

Select an option

Save vanbo/31e6059d1288c9e1012024c50c91692e to your computer and use it in GitHub Desktop.
pay360-hosted-request-filter
add_filter( 'pay360_hosted_get_parameters', 'prefix_add_request_parameters' );
function prefix_add_request_parameters($args, $order, $gateway) {
// Add, remove or update a parameter
// Add template parameter
$args['template'] = 'template_name';
// Always return the arguments back
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment