Hi Team,
Please check the attached screenshot. I want to add <a> tag inside label with target="_blank". It is for terms conditions checkbox and hyperlink for privacy policy url. Currently it is working with <a> tag but when I try to add target="_blank" inside <a> tag, the complete label is hidden.
Please let me know how we can fix this?

Shane
Supporter
Languages:
English (English )
Timezone:
America/Jamaica (GMT-05:00)
Hi Ankit,
Thank you for getting in touch.
Can you trying adding the target='_blank' with single quotes instead of double quotes.
Please let me know if this helps.
Thanks,
Shane
Hi,
I tried to add target='_blank' but after saving the changes the rel="noopener" added automatically and because of this double quote, the error generated and checkbox hide at frontend.
I have remove that rel="noopener" manually but again it added automatically.
Please check the screenshot.

Shane
Supporter
Languages:
English (English )
Timezone:
America/Jamaica (GMT-05:00)
Hi Ankit,
Not sure why this is getting added, however you can workaround this by using the JS below.
jQuery(document).ready(function(){
jQuery('#add_blank').attr('target', '_blank');
});
Just add an ID to your anchor tag and you can use the code above to add the target attribute.
Please let me know if this helps.
Thanks,
Shane
My issue is resolved now. Thank you!