Hi @davidgurr
Thanks so much for responding quickly.
Yes, it works perfectly.
The WordPress module is stripping out inline css and javascript for me.
I ran my automation a few minutes ago and as you can see the two items in bold in the input below get stripped out in the output. I badly need this fixed as it effects a lot of my automations.
Input:
<p class=”text-center”>Offers Ends [next-sunday format=”M jS”]</p> <div class=”d-flex d-flex-row gap mobile-center justify-center”> <div class=”col”> <button class=”submit-link light white-b load-modal”>VIEW CLOSE OUT SAVINGS LIST</button> <div style=”display:none;”><p class=”h3″>VIEW CLOSE OUT SAVINGS LIST</p> <script src=”https://hpforms.bpimclients.com/frm_embed/ht-ss-savings-list/”></script> </div></div></div>
Output:
<p class=”text-center”>Offers Ends [next-sunday format=”M jS”]</p> <div class=”d-flex d-flex-row gap mobile-center justify-center”> <div class=”col”> <button class=”submit-link light white-b load-modal”>VIEW CLOSE OUT SAVINGS LIST</button> <div><p class=”h3″>VIEW CLOSE OUT SAVINGS LIST</p> </div></div></div>