• I work with a charity that has an apostrophe in the name and the automated emails cannot parse it creating weird characters in the subject line.

    Help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    If you want to add apostrophe in product name in email topic, You need to customize the template file of the plugin. Below is an example for placed bid email. Go to below path and replace code on line no.194
    Plugin folder -> email-template.php

    From
    $adm_sub = “[“.get_bloginfo(‘name’).”] “.__(“A bidder has placed a bid on the product”, “wdm-ultimate-auction”).” – “.$auc_name;

    To
    $adm_sub = “[“.get_bloginfo(‘name’).”] “.__(“A bidder has placed a bid on the product”, “wdm-ultimate-auction”).” – ‘”.$auc_name.” ‘ “;

    If you want to change topic of any email, you have to change code as above in email-template.php file.

    Thank You

    Thread Starter HitsukiEri

    (@hitsukieri)

    How do I parse the Blog Name’s apostrophe? Is it the same method as mentioned?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Email Topic Cannot Parse Apostrophe’ is closed to new replies.