• We use white background in our email templates. Unfortunately the link color is white too, which means that our customers cannot see links.

    We are using Yith email template plugin. There is no option to set link colour in this plugin.

    How to fix?

    Joen

Viewing 1 replies (of 1 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi,
    you need to update YITH WooCommerce Email Templates to the last version (1.2.0) and add the following code snippet in your theme functions.php

    if ( !function_exists( 'yith_wcet_customization_set_link_color_to_black' ) ) {
        function yith_wcet_customization_set_link_color_to_black() {
            echo 'a, .link, h2{color: #000 !important}';
        }
    
        add_action( 'yith_wcet_after_email_styles', 'yith_wcet_customization_set_link_color_to_black' );
    }

    Please try it and let us know if everything works fine!

    Best Regards
    YIThemes

Viewing 1 replies (of 1 total)
  • The topic ‘Email link color’ is closed to new replies.