No content to show
User Activity
Hi, sorry, I didn't use this one, check in theme settings, translate adapt -> default theme content -> newsletter, is there option for already subscribed message? I have only 3: Newsletter: Label, Newsletter: Success, Newsletter: Button Label so in t...
What theme are you using? This is for Dawn, maybe newsletter form field have different names than in Dawn so you should adjust them to mach or check if in your theme, this monit will work out of the box, in the settings etc.
in global.js at the end add, I think you added it to theme.js: var live_url = window.location.href;
var result = live_url.includes('form_type=customer');
//var input_val = document.querySelector('#NewsletterForm--footer').value.length;
var input_val ...
Hello, line 9693 should bevar input_val = document.querySelector('[id*="NewsletterForm"]').value.length; in your case if contact id will change (this random number after Contact_), it won't work
Hello, I had same issue, id values are different (added random id into the name)use this one (original line of code is behind // as a comment) var live_url = window.location.href;var result = live_url.includes('form_type=customer');//var input_val = ...