Created
August 31, 2022 06:46
-
-
Save pramodjodhani/45fb78115633ede7d18af9babf2290ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Orderable custom checkout - change shipping title | |
| add_action( | |
| 'wp_footer', | |
| function() { | |
| if ( is_checkout() ) { | |
| ?> | |
| <script> | |
| orderable_checkout_pro_params.i18n.shipping_title = 'Pickup/ Delivery'; | |
| </script> | |
| <?php | |
| } | |
| }, | |
| 1000 | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment