• Resolved tenebralyo

    (@tenebralyo)


    My testing email is showing:

    #039;

    instead of ‘

    already tried these possible fixes but still is showing that.

    // fixed apostrophe not appearing on emails
    function wpb_sender_name( $original_email_from ) {
        return "Rosillo's Pizza";
    }
    add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
    
    // additional fix
    remove_filter ('the_title', 'wptexturize');

    none of these fixed the issue, at least for the testing email

    • This topic was modified 1 year, 2 months ago by tenebralyo.
Viewing 1 replies (of 1 total)
  • Plugin Support Amimul Ihsan

    (@amimulihsanmahdi)

    Hello there,

    You can try the below code and hopefully, this will resolve the issue:

    add_filter('wp_mail', 'my_wp_mail');
    
    function my_wp_mail($atts) {
    
    $atts['subject'] = html_entity_decode($atts['subject'], ENT_QUOTES);
    return $atts;
    }

    Thank you

Viewing 1 replies (of 1 total)
  • The topic ‘site title apostrophe not working’ is closed to new replies.