• Resolved persoonlijkvaardiger

    (@persoonlijkvaardiger)


    Hi. I like this plugin. I like it that I can use simple code in text to beautify links and that works flawlessly. But… when I use a placeholder link, like {set_password_url}, I cannot change it’s default blue color. I tried <a style=”color:#33baba;”>{set_password_url}</a> but that doesn’t work. I use Hello theme with Elementor, so no solution there. Can you help?

    {set_password_url} does not work either and is pretty important.

Viewing 1 replies (of 1 total)
  • Dina S.

    (@themehighsupport)

    Please check after adding the below code in your child theme’s functions.php file.

    add_filter( 'woocommerce_email_styles', 'th_add_css_to_emails', 9999, 2 );
    function th_add_css_to_emails( $css, $email ) {
       $css .= '
          #tpf_t_builder a { color: red!important }
       ';
       return $css;
    }

    Thank you!

Viewing 1 replies (of 1 total)
  • The topic ‘change default link color AND {set_password_url} does not work’ is closed to new replies.