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 spivurno/0a20e6eab24877cf0d3fa4e7aba3127a to your computer and use it in GitHub Desktop.
Save spivurno/0a20e6eab24877cf0d3fa4e7aba3127a to your computer and use it in GitHub Desktop.
Gravity Perks // GP eCommerce Fields // Modify Order Labels
<?php
/**
* Gravity Perks // GP eCommerce Fields // Modify Order Labels
* http://gravitywiz.com/documentation/gravity-forms-ecommerce-fields/
*/
add_filter( 'gpecf_order_labels', function( $labels ) {
$labels['order'] = 'Le Order';
$labels['product'] = 'Le Product';
$labels['quantity'] = 'Le Quantity';
$labels['unit_price'] = 'Le Unit Price';
$labels['price'] = 'Le Price';
$labels['subtotal'] = 'Le Subtotal';
$labels['total'] = 'Le Total';
return $labels;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment