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 clifgriffin/3f973630c5b91b30ba56fe7c8f338b94 to your computer and use it in GitHub Desktop.
Save clifgriffin/3f973630c5b91b30ba56fe7c8f338b94 to your computer and use it in GitHub Desktop.
Change 'Billing and Shipping address' heading for CheckoutWC
<?php
// Do NOT include the opening php tag.
// Place in your theme's functions.php file
add_filter( 'cfw_billing_shipping_address_heading', function( $heading ) {
return 'Shipping address';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment