You just want to change the text?
Yes please, Where do I do that?
Just add the following code to your child theme’s functions.php file
add_filter( 'gettext', 'rpress_change_order_details_text', 20, 3 );
function rpress_change_order_details_text( $translated_text, $text, $domain ) {
if ( $domain == 'restropress' ) {
switch ( $translated_text ) {
case '%s Instructions' :
$translated_text = __( 'Please enter your address', 'restropress' );
break;
case 'Add %s instructions (optional)' :
$translated_text = __( 'Add Address', 'restropress' );
break;
}
}
return $translated_text;
}
@sagarseth9 I would like to remove email address field or change non-mandatory on email address field on checkout page. How can I do it bro?
Hello @ilowoo,
Sorry for the late response.
The work as per your requirement will be possible by custom work.
You can contact through our official website to do the custom work.
Regards,
Bibhu