Doug Smith
Forum Replies Created
-
A format like this should work for either simple products or if the variation ID is uploaded to Google as the ID.
https://example.com/checkout/?add-to-cart={id}
Once you set the URL, there is a test button that you can use to try it out.
Indeed it has helped me with my work, @edeesims Thank you for sharing your plugin!
@thirstyjon I have been using the plugin heavily over the last week and the only problem I’ve run into is that it does not return any results when I also have the bbPress plugin active.
My apologies for initially jumping to the conclusion that this was a premium advertising attempt. I have edited my original message to remove that and hopefully be more helpful to future searchers.
Thanks for the fix instructions. It’s all good now.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Two “User Sync” options in the menu?Thanks. That makes sense.
By the way, I do care about privacy and care for our customers and users, but not all of us are subject to GDPR.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Two “User Sync” options in the menu?How does all of this play out when using your premium e-commerce integration, is the syncing of orders and the ability to segment based on purchase history, abandoned carts, etc. now only available for customers who have explicitly subscribed?
That will be so useful! I’ll be eager to try it too.
@madeincosmos, I was experiencing similar problems as others described here.
As I tried to track down the cause, our logs seemed to indicate that customers were being rejected for having expired saved cards. The odd thing was that we didn’t have the saved cards feature turned on, although we had in the past. Even turning it back on and checking customer accounts didn’t show the bad cards.
I checked out your mini-plugin that updates the customer Stripe tokens to see how it worked and then checked our database for that pattern. We had thousands of old tokens. So I ran your plugin and that quick update completely solved it. This has been verified by customers who previously couldn’t check out. We are also no longer seeing this type of failed order that had been occurring every day.
Thanks!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Enable Stripe Checkout: any advantage?I think it makes the checkout page feel a little cleaner and a nicer experience for the buyer.
I can verify that this fixed the double quantity and only the last item added to the cart remaining issues in Safari for me as well.
Forum: Plugins
In reply to: [PayPal for WooCommerce] Turn off PayPal guest checkoutPerfect. Thank you!
There is a PayPal Mark option in the settings that will include it on the checkout page. Just check the box next to Enable the PayPal Mark on regular checkout.
This does not remove the button from the cart page, though, if you’re also after that. I wish that were an option too because having multiple paths for checkout is terribly poor UI that is confusing for the customer.
@pimmytizzle, Try visiting your WordPress Settings –> Permalinks page once and then see if your events load again.
Sorry, @royho, our posts crossed. I just downloaded it again and it did fix the problem.
For others who may be dealing with this, you may also need to have customers who ran into the problem refresh the page or clear their browser’s cache before it works.
Verifying that I’m seeing what appears to be the same problem. I filed an issue over at the extension’s Github repository.
Forum: Plugins
In reply to: [Sugar Calendar - Google Maps] Maps Don't Show Up AnymoreI had the same problem. Google is being more picky on the way their API is called. It’s generated a missing API key error but that doesn’t seem to actually be the problem.
The fix is easy with a couple edits to the plugin. There are two instances where “//maps.google.com” is used. The “//” needs to be changed to “https://” and then it should work.
You’ll find them on lines 169 and 193 and the new lines will look like this:
wp_enqueue_script( 'google-maps-api', 'https://maps.google.com/maps/api/js?sensor=false' );$url = add_query_arg( $args, 'https://maps.googleapis.com/maps/api/geocode/json' );I’ll report this to the developer.