Stripe Billing Method Does Not give options

I have seen several related posts but none of the answers work for me. So far I have tried without success to:

  • Removed all plug-ins
  • Reinstalled S2 Members
  • Upgraded and downgraded s2member and s2member pro

A lot of issues appear on the page that seem to stem from the first 2:

s2member-o.php:1 Failed to load resource: the server responded with a status of 403 ()
jquery-migrate.min.js:2 JQMIGRATE: Migrate is installed, version 3.4.0
s2member-o.php:1 Failed to load resource: the server responded with a status of 403 ()

This is the site: https://www.phillymtcc.org/checkout-stripe/

This is the code for the custom Stripe billing form I am using. Note: Membership has a fixed seasonal EOT ending March 31.

[insert_php]

$now = strtotime(‘now’);

$fixed_eot_time = strtotime(‘31 March 2024’);

$days_until_fixed_eot_time = round(($fixed_eot_time - $now) / DAY_IN_SECONDS);

[/insert_php]

[s2Member-Pro-Stripe-Form level=“1” ccaps="" desc="$35 - Season, ending March 31, 2024" cc=“USD” custom=“www.phillymtcc.org” ta=“0” tp=“0” tt=“D” ra=“35.00” rp="[insert_php]echo esc_attr($days_until_fixed_eot_time); [/insert_php]" rt=“D” rr=“BN” default_country_code=“US” captcha=“0” /]

This first occurred a couple of years ago (around 2019) when the Stripe just stopped working. I tried to fix and it was taking too long so I ended up just using PayPal which was always buggy for us. I would like to fix Stripe now.

Thank you