Hello,
I want to change the font in xstore’s email builder emails. The current one is just not good.
I looked at the solution here:
https://www.8theme.com/topic/files-of-xstore-built-in-email-builder/
But after applying the code nothing changes. I wanted to insert a “Inter” font (with your code):
add_filter('woocommerce_email_styles', 'add_css_to_email', 99999999);
function add_css_to_email($css) {
$css .= '
/* Put CSS here */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
body, div, h2, h3, h4, td, tr, span {
font-family: "Inter", sans-serif;
}';
return $css;
}
Also your original code didn’t work. Am i doing something wrong?
Thank you,