lcsweden
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] How to get rid of “View Order” button in emails@ryanhungate On this page? https://ww.wp.xz.cn/plugins/mailchimp-for-woocommerce/
All I can see there is the support forum button, which is how I got here.
I did look for support directly from MailChimp, since we’ve also got some other issues, but there’s no support unless you’ve got a paid subscription. The site is still under development, and we’re trying to not start subscriptions on services that we don’t yet know if we can use.
Another issue seems to be that Mailchimp doesn’t consistently send notifications for every order, only some.
Forum: Plugins
In reply to: [WooCommerce] Coupon management has moved! – noticeI’m fairly new to WooCommerce, but this and similar seems to happen every time there’s an update, and is resolved by:
UPDATE wpdc_wc_admin_notes SET status='actioned' WHERE type = 'update';It’s tempting to just put that update in crontab, since this seems to routinely not work. You click to dismiss the notice, but nothing happens.
Forum: Plugins
In reply to: [BjornTech Swish for WooCommerce] Status after cancelled paymentI was able to solve this is a fairly simple plugin.
In short, I store a copy of the cart contents in LocalStorage in the browser, and then restore it if detecting a failed Swish payment. This is done via javascript that looks at the server status, and makes an ajax request back to WP to add items back to cart.
Forum: Plugins
In reply to: [BjornTech Swish for WooCommerce] Status after cancelled payment@bjorntech Finns det något javascript event jag kan lyssna efter för att se när betalningen är färdig eller avbruten?
Forum: Plugins
In reply to: [BjornTech Swish for WooCommerce] Status after cancelled paymentMin tanke är att hålla koll på vad som ligger i korgen, vilket ju är enkeltmed hjälp av WC()->cart. Detta skulle kunna sparas i en egen cookie, som inte rörs av WC.
Denna information kan sedan stoppas tillbaka för att återfylla korgen vid behov. Verkar funka att göra med WC()->cart->add_to_cart(produktid, antal, variationsid).
Detta borde säkert göras som en plugin, och blir kanske inte korrekt enligt WP/WC standard, men jag tänker mig att det blir lätt att peta in relevant kod med hjälp av pluginet “Theme Customisations” som redan används för andra småfix.
Jag har lite annat som skall fixas på siten först, men kommer nog ta tag i detta ordentligt under veckan.
- This reply was modified 5 years, 9 months ago by lcsweden.
Forum: Plugins
In reply to: [BjornTech Swish for WooCommerce] Status after cancelled paymentBTW, feels weird to writing in English when there’s probably only swedes looking at this, but all other threads were in English so I just went with the flow… 😀
Forum: Plugins
In reply to: [BjornTech Swish for WooCommerce] Status after cancelled paymentThat’s a shame, but I really appreciate the quick answer!
Has anyone looked at workarounds?
I’m new to Woocommerce, but am from a developer/systems background. My thoughts are that the order could be picked up from the database, and details emailed to the customer, maybe with a link that lets them resume?
Maybe there’s even cart abandonment plugins that handle exactly this kind of issue?