Scott C Wilson

Results 248 comments of Scott C Wilson

I am assuming these will be old enough so it's not relevant. People can still install the old plugin if they need it. We removed linkpoint, for example.

Decided to abandon this PR; too many other more important things to worry about.

Prefer to maintain the existing hierarchy. It's redundant but things become more complex if the plugin hierarchy doesn't mirror the core.

It would be a global setting "Do not allow add to cart on products with a date_available in the future" in Admin > Configuration > Stock. That would be the...

These logs reference includes/modules/payment/paypalwpp.php on line 3186. includes/modules/payment/paypalwpp.php on line 3194. those lines don't exist in 1.5.7 or 1.5.8. What code version are you running here?

Fixing this: --> PHP Notice: Undefined index: ACK in /.../includes/modules/payment/paypal/paypal_curl.php on line 618. is just a matter of checking if it's set before referencing it.

1.5.8 has not been released, and you shouldn't be using it on a live store. The 'L_ERRORCODE0' references are bugs in Ceon's code; you can fix them just by checking...

When I say "bugs in Ceon's code," I mean that if ($response['L_ERRORCODE0'] == 10422 || $response['L_ERRORCODE0'] == 10486) { should be if (!empty($response['L_ERRORCODE0']) && ($response['L_ERRORCODE0'] == 10422 || $response['L_ERRORCODE0'] ==...

Upgrading is always good. Just a note though, no confirmed security issues with jQuery 3.5.1 as of this date.