Please go to the subscribe page to choose a subscription level.
// URL in form action doesn’t work correctly
// This snippet will replace the URL
window.onload = () => {
setTimeout(() => {
const formElement = document.querySelector(„form[name=lp-coupon-form]“);
// Read Window.location
let currentLocation = location.toString();
if (formElement) {
formElement.setAttribute(„action“, currentLocation);
}
}, 500);
};