• How to remove + from email subject while sharing wishlist?

    I checked out your previous tickets and tried to the same as told by you but that didnt resolve the issue

Viewing 1 replies (of 1 total)
  • Plugin Support Antonio La Rocca

    (@therock130)

    Hi there

    Could you please try to add the following snippet of code at the end of functions.php file of your theme or child theme?

    add_filter( 'yith_wcwl_wishlist_params', function( $params ) {
    	$params['share_atts']['share_link_title'] = 'HERE YOUR CUSTOM SUBJECT';
    
    	return $params;
    } );

    You’ll need to replace HERE YOUR CUSTOM SUBJECT with anything you want in your subject, and this should appear without + symbols

Viewing 1 replies (of 1 total)
  • The topic ‘Removing + from email subject while sharing wishlist’ is closed to new replies.