Tell me what I'm doing wrong. I need to correct the file woocommerce/emails/plain/customer-new-account.php
An email arrives in which the link to the LC is listed as text, I want to make it clickable by adding a tag
Source:
echo sprintf( __( 'You can access your account area to view your orders and change your password here: %s.', 'woocommerce' ), wc_get_page_permalink( 'myaccount' ) ) . "\n\n";
My code is:
echo sprintf( __( 'You can access your account area to view your orders and change your password here: <a href="%s">%s</a>.', 'woocommerce' ), wc_get_page_permalink( 'myaccount' ) ) . "\n\n";
<a>...</a>to plain text email? It does not work in principle. - KAGG Designwoocommerce/emails/customer-new-account.php- without plain. - KAGG Design