Viewing 5 replies - 1 through 5 (of 5 total)
  • Great H-master

    (@great-h-master)

    Hello. Thank you for using Paid Memberships Pro. Could you tell us the exact nature of the interference? If we have more details we can try to reproduce the error and find a solution. Looking forward to your response. Thanks again.

    Thread Starter rudik123

    (@rudik123)

    When i instaled Paid Membership Pro, any messages that are sent from site to user does not have a graphic (only text), but when i turn off a Paid Membership Pro all is OK.

    Jessica Oros

    (@jessica-o)

    Hey there,

    PMPro sends HTML emails by default, which WP Better Emails ignores. You can remove the filter and change them back to plain text with this code:

    // change emails to text/plain
    function my_wp_mail_content_type($content_type) {
        return 'text/plain';
    }
    remove_filter('wp_mail_content_type', 'pmpro_wp_mail_content_type');
    add_filter('wp_mail_content_type', 'my_wp_mail_content_type');

    You’ll want to add that to your active theme’s functions.php file or a customizations plugin as described here: https://www.paidmembershipspro.com/2012/08/create-a-plugin-for-pmpro-customizations/

    Hope that helps!

    Thanks,
    Jess

    Thread Starter rudik123

    (@rudik123)

    Workin OK now. THANK YOU !

    No problem ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Problem with WP Better Emails’ is closed to new replies.