Jeff Sherk
Forum Replies Created
-
Forum: Plugins
In reply to: [DEPRECATED PayPal Multiple Emails for WooCommerce] Issue with paypal ipnThe check for this email comparison happens outside my plugin, so it is not within my control.
This can not be fixed from within my plugin as there is no way to access that email address to change it for the return call. Now that is not exactly true, because you could change old_email to new_email before the call and then wait for return and then change it back to old_email, however more than one transaction could be occuring at a time, so there is a chance that it you change it for one, then another transaction that is using the other email would get the error instead, so this is not a viable option.
The only way it might be fixable would require modifications to core files for either woocommerce or worpdress itself. You would have to add an array of paypal email addresses and check against all of them to see if there is a match. This is also not a viable option.
Sorry I can not solve this for you.
- This reply was modified 9 years, 3 months ago by Jeff Sherk.
You should have received an email from me. Post back here if you did not get it.
Thanks
Yes you can have access. I have recreated the problem on my test site.
In order to recreate you need to do the following:
(1) Login to your site using secure https://mysite.com/wp-admin and NOT http://
(2) Then choose the CAPTURE option in your plugin.
(3) Then try to EDIT a post and you should get a blank page.If you still can not recreate on one your sites, then post an email where I can send you login details for my test site for you to access.
Thanks
- This reply was modified 9 years, 4 months ago by Jeff Sherk.
- This reply was modified 9 years, 4 months ago by Jeff Sherk.
Forum: Plugins
In reply to: [DEPRECATED PayPal Multiple Emails for WooCommerce] Order with 2 categoriesIt will only be able to do one account.
I do remember coming across a paid plugin that does do what you are asking for, but I can not remember where I saw it.
Check the extensions on WooCommerce.com and also check the plugins on WooForce and Code Canyon sites.
Forum: Plugins
In reply to: [DEPRECATED PayPal Multiple Emails for WooCommerce] Multiple CategoriesOkay I will consider this feature in the future.
Thanks
Okay I will consider this feature in the future.
Thanks
Yes the country codes are all two letter country codes.
There is a list here:
http://www.nationsonline.org/oneworld/country_code_list.htmGlad you figured it out.
Forum: Plugins
In reply to: [DEPRECATED PayPal Multiple Emails for WooCommerce] Issue with paypal ipnNo further information given so marked it as resolved.
On the settings page, leave the redirect URL section blank/empty so it will use it’s default behavior.
Each landing page will need to have it’s own REGISTER button with a custom link like this:
So if the landing page is LandingPage1.html then the register link on that page would be:
http://mydomain.com/wp-login.php?action=register&redirect_to=http%3A%2F%2Fmydomain.com%2FLandingPage1.htmlThis will take you the registration page and then return you to the page you came from.
Hope this helps.
Forum: Plugins
In reply to: [DEPRECATED PayPal Multiple Emails for WooCommerce] Issue with paypal ipnI would need more specific information to be able to troubleshoot this better.
Please give me as much detail as you can about the error you are receiving.
Thanks
Forum: Plugins
In reply to: [DEPRECATED PayPal Multiple Emails for WooCommerce] How many addresses?Yes it only allows 2 account emails.
Awesome! Worked great.
That was a test table, so here is real one with proper color changes:
http://forerunnertv.com/ante-nicene-fathers/teachings🙂
Well that’s too bad 🙁
I guess I need to submit it as a feature request!
Thanks
Forum: Plugins
In reply to: [WooCommerce] How to revert post_status changes added in 2.2Okay so looking at the database, it looks like older versions of woocommerce set the post type as PUBLISHED but now uses something different so no longer displays “published” orders.
I simply changed the post_type from published to wc-completed to get them to show up in the list on the orders page.
I used the following SQL to fix it (WARNING: backup database before making any changes):
UPDATEwp_postsSETpost_status= ‘wc-completed’ WHEREpost_status= ‘published’ ANDpost_type= ‘shop_order’