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 ashokrane/24bfc98e718e8fc4679f8aee1163dcf8 to your computer and use it in GitHub Desktop.
Save ashokrane/24bfc98e718e8fc4679f8aee1163dcf8 to your computer and use it in GitHub Desktop.
How to shorten WooCommerce product name in Abandon cart recover email notification
<?php
add_filter( 'wcap_product_name', 'shorten_product_name_in_abandon_cart_emails', 10, 1 );
function shorten_product_name_in_abandon_cart_emails( $item_name ) {
if ( 'Rent a bicycle' == $item_name ) {
$item_name = 'Rent a bicy..';
}
return $item_name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment