Expiry Code not working

This code was working on my site to show when memberships expire but realized stopped.

[s2Eot /]

Any insight?

Has also stopped showing on my website. Customers are complaining.

I used to use [s2Eot date_format=“M jS, Y, g:i a T” timezone=“Europe/London” /]

have tried changing it to different formats but still doesn’t show.

Any ideas please?

However, using print_r($eot = s2member_eot());
shows a unixtime in the array so the EOT does exist.
Why the the shortcode working all of a sudden though?

Also I notice s2member has removed their support helpdesk. That’s nice…

Since nobody has been able to offer any assistance with this (which makes me hate this plugin even more than I already did), I have had to spend time fixing it myself. Well, sort of

[php]
$eot = s2member_eot();
$eot2 = $eot[‘time’];
echo gmdate(“M jS, Y, g:i a T”, $eot2);
[/php]

If I wanted to spend time messing about with PHP, I wouldn’t have spent money on a plugin to do it for me.

At last I hope this helps @sfauset and anyone else for whom the shortcode has stopped working for no reason.

Thank you for your help!