Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Codemenschen

    (@codemenschen)

    Hello @tomassrbija

    I checked your website for final step error you can use below CSS code and add this from plugin settings => Custom CSS

    #voucher-multistep-form .paymentUserInfo .full, #voucher-multistep-form .paymentUserInfo .half{
    color: #111 !important;
    }

    and regarding error on sending mail… and receive HTML content on mail.. I checked you have used some different characters which is not being converted and breaks PHP syntax. Can you please check by adding different mail content. It will surely work.

    Let me know if you need any further help…

    Thread Starter Nemanja Tomanovic

    (@tomassrbija)

    Hi @codemenschen and thank you for your reply.

    The provided CSS code only fixed information visibility on Overview page but that didn’t do anything for Sucesufull payment page error we are seeing. It’s still here.

    What we tried to do is restoring website to a backup version before we installed your plugin to delete all data from the database and to have your plugin installed with default settings. So we installed plugin again and with default plugin setting we experienced the same issues with Sucesufull payment page, not sending emails to others than the recipient and having HTML markup in emails.

    But we noticed something more that we probably missed the first time. When we activated the plugin this notification displayed:

    https://drive.google.com/file/d/1O0j4lrVLuxx9Unt5gxBM9-QzJWlhOe9D/view?usp=sharing

    The translation would be: “The plugin generated 2 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.”

    Can this help you anyway? Thank you for your help, much appreciated!

    Plugin Author Codemenschen

    (@codemenschen)

    Hello @tomassrbija

    I have tested again… Can you confirm if there is any round brackets on the mail content? not sure but this can break syntax. Also, we have 2 options while adding content from editor “Visual” and “Text” can you please confirm content looks okay in visual option. HTML content should be on Text option.

    Also, let you know your drive link for images I can’t access.

    Plugin Author Codemenschen

    (@codemenschen)

    Hi @tomassrbija

    Can you please try to add below script to your theme’s function file. if still, you are receiving HTML on mail. This will surely work.

    function wpse27856_set_content_type(){
    return “text/html”;
    }
    add_filter( ‘wp_mail_content_type’,’wpse27856_set_content_type’ );

    Thread Starter Nemanja Tomanovic

    (@tomassrbija)

    Your solution worked perfectly. Thank you for amazing support and dedication to solve my problem.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Issue with sending emails’ is closed to new replies.