Forum Replies Created
-
AuthorPosts
-
prodrenalinMember
Answering your questions from before:
We haven’t changed any code in the plugins. We added a few CSS rules to change the look of the cart.
I am not in a good position to try to bring the bug back (having worked around it) and try turning off the fancy redirection. I couldn’t find anyone on the dev team who said they turned it on.
For now, I think we’re happy with how things are working. I’m just hoping that my detailed feedback helps with your continued development.
prodrenalinMemberI have worked around this problem locally by adding code to a plugin I used for adding features to our theme.
// Work around WP eStore bug where no payment gateway is chosen
if(!isset($_COOKIE)) {
// If we don’t have the gateway cookie set, then set it.
$_COOKIE = ‘pppro’;
setcookie(“eStore_gateway”, ‘pppro’, 0, ‘/’, ‘.prodrenalin.com’);
}
This works for me because I’m happy to use pppro as the default. I imagine you’ll want something more general on your end. Or perhaps this is a bug related to the particular short tag we used for our cart, which is [wp_eStore_cart_fancy2].
prodrenalinMemberI can now confirm that if I clear cookies and go through checkout, I do not have a cookie named “eStore_gateway”. Not having this cookie when I click the checkout button causes this problem. If I change the payment method, the cookie is set to “pppro” or “ppadvancedA”.
prodrenalinMemberHere’s some more information.
I turned off multiple payment types. I turned off “pay by credit card”. I cleared my cookies. Then, I tested checking out. It sent me directly to the ordinary PayPal payment with my WP admin email address.
-
AuthorPosts