ekliptor
Forum Replies Created
-
Forum: Plugins
In reply to: [SLP Payments for WooCommerce] Order Status ‘Cancelled’> 1. Will the status change to ‘Processing’ (which is the status for paid orders) when customer pays an order using email instructions?
Yes the order status will change from “pending payment” to “processing” (as with every WooCommerce payment gateway).> 2. How long the payment window is valid for immediate checkout?
There is an option called “woocommerce_hold_stock_minutes” for all gateways. You can actually edit this in WC admin: https://domain.com/wp-admin/admin.php?page=wc-settings&tab=products§ion=inventory
After this time WooCommerce will mark the order as cancelled and increase your stock inventory again (if you let WC manage your inventory).
How long was your value?
I am thinking we should increase this for our plugin. Or actually always allow orders to go through. Even if the payment arrives after “woocommerce_hold_stock_minutes” – meaning the order has already been automatically set to “cancelled” once it arrives. The store owner will have to deal with shipping or refund either way in that case, so marking it as paid and set status to “processing” makes more sense.3. How long the email instructions are valid?
As long as the order status is “pending payment”, see question 2 and “woocommerce_hold_stock_minutes” setting.Forum: Plugins
In reply to: [SLP Payments for WooCommerce] SLP token rate APIit’s ok to ask in here ??
one thread per issue.
i will close this as resolved- This reply was modified 5 years, 3 months ago by ekliptor.
Forum: Plugins
In reply to: [SLP Payments for WooCommerce] SLP token rate APIThe token rate has it’s own field after SLP Socket API in WP plugin settings: https://ibb.co/B639W4d
You need to provide your custom endpoint. There is a sample PHP script with the script as mentioned on the comment next to the input field: https://plugins.trac.www.ads-software.com/browser/slp-payments-for-woocommerce/trunk/tpl/token-rate-sample.php
So you can either:
1. host this script yourself and provide token rate updates
2. contact Cryptophyl exchange to implement a JSON API following this spec (which would be really cool)Forum: Plugins
In reply to: [CashTippr] FireFox errorfixed in CashTippr v1.0.47 available in the WP updater.
It will now show an alert when not logged into BadgerWallet.Forum: Plugins
In reply to: [CashTippr] DB migration is not working as intendedfixed in CashTippr v1.0.47 available in the WP updater
Forum: Plugins
In reply to: [CashTippr] DB migration is not working as intendedThanks for your report. I just fixed this by checking if the table already exists.
You can either wait for the next release (together with a fix for your other issue) or uninstall (not just deactivate) & reinstall the CashTippr plugin as a workaround.
Also this bug only happens when you upgrade from a very old version – so you must have been one of the first users – thx
Forum: Plugins
In reply to: [CashTippr] FireFox errorYes it only happens when the user is not logged into BadgerWallet.
I filed an issue about this in January https://github.com/Bitcoin-com/badger/issues/10Unfortunately not fixed yet, looking for a workaround.
I am already using the Twenty Seventeen theme for the blog and the Storefront theme for the shop.
Also it works perfectly fine when I turn off debug notices on my WP.
So I think a simple check if the user (or Paypal has provided a shipping address should be enough):
if (isset($shipping_details['address_1'])) $customer->set_shipping_address( $shipping_details['address_1'] );
Since my shop sells a software subscription the users usually don’t have a shipping address in their profile (only billing address) and thus the PHP warning is common.