Extra s, hmm weird 🙂 Will look, thanks for letting me know!
Alrighty, I’m guessing you already have another plugin for this, my code is as follows:
if ( $options['stripe_modal_ssl'] == 'Yes' ) {
$path = str_replace("http", "https", $path, $count);
}
What that’s telling me is that the link already is https:// , so just disable the option.
Yeah, I fixed it by disabling the option, just thought it would be best to check first to avoid confusing. What if on some blogs the https is not required and a user could may or may not be using https?
Perhaps you could change the code to:
if ( $options['stripe_modal_ssl'] == 'Yes' && substr($path, 0, 5) != 'https' ) {
$path = str_replace("http", "https", $path, $count);
}
Sure, but that’s sending the wrong impression too (i.e. that the user thinks he has and needs SSL enabled on the wp-stripe when they don’t, because another plugin already handles what not).
Doesn’t sent the wrong message. Works as designed (add https if options is selected) but fixes the bug so it doesn’t change the the url to httpss – making it unusable.
We can agree to disagree, I feel I just need to add it to the description 🙂