Follow these steps to change the “I’ll Keep This Item” wording shown on the return/exchange screen:
1. Open your theme’s functions.php file
Navigate to your child theme’s directory and locate the functions.php file.
If it doesn’t exist, create one.
2. Insert the following code snippet
Copy and paste the code snippet below into your functions.php file:
/*
* Change the “I’ll Keep This Item” label text
*/
add_filter( 'zorem_returns_keep_item_text', 'change_keep_item_label_text' );
function change_keep_item_label_text( $text ) {
// Customize the label as needed
$text = esc_html__( 'Cancel Return Request', 'zorem-returns-exchanges' );
return $text;
}3. Save the file
Save the changes to your functions.php file.
By following these steps, you’ve successfully changed the “I’ll Keep This Item” label to your preferred wording.