Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pramodjodhani/45fb78115633ede7d18af9babf2290ac to your computer and use it in GitHub Desktop.
Save pramodjodhani/45fb78115633ede7d18af9babf2290ac to your computer and use it in GitHub Desktop.
<?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