This is happening all over my site.
Exhibit “A” – https://tro.bike/motorcycle-touring/maps/usa/kentucky/hillbilly-triangle-ride/
Your plugin’s code generates attributes reading … class=”asp-stripe-form” action=””
The empty action attribute is invalid markup and I’m notified via email (W3C API) every time it strikes.
My current “solution” is to alter the output buffer … $buffer = str_replace(‘class=”asp-stripe-form” action=””‘, ‘class=”asp-stripe-form”‘, $buffer);
… but this really needs to be address as I’m not convinced my fix qualifies as a non-empty, required attribute in the form.
