dashed-slug.net
Forum Replies Created
-
Forum: Reviews
In reply to: [Bitcoin and Altcoin Wallets] One word, perfectThis is the perfect plugin review! Thank you!
Sadly, I know very well that the plugin is not perfect. But I will continue improving it and I thank you so much for your kind words!
best
AlexHello,
Deposits from transactions with multiple outputs are now handled correctly by the plugin in version 3.3.2.
Thank you for reporting this issue.
Once you verify that your issue is resolved, could you please close this thread?
kind regards
Hello,
Are you talking about a transaction with multiple outputs, where both outputs are deposit addresses for users of the plugin?
Your funds are safe in your wallet, but this case is not covered at the moment by the plugin, so the second user would not receive any coins.
I will have to implement several changes and will report back when this is done.
kind regards
AlexForum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Embed [wallets_deposit] on a public pageHello,
This doesn’t really fit into the plugin architecture, because the shortcodes use the JSON API and the API is only available to logged in users.
Having said this, there is nothing stopping you from displaying the same addresses in a static HTML. The qr code is rendered with this library, although you could use another one if you like:
https://github.com/jeromeetienne/jquery-qrcode/
kind regards
Forum: Plugins
In reply to: [Simple Membership] User opt-in checkbox for GDPR complianceThank you very much for implementing this so quickly!
Forum: Plugins
In reply to: [Simple Membership] User opt-in checkbox for GDPR complianceThank you very much for the information! Looking forward to the update.
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Column widths in [wallets_transactions]Hello Andy,
About your request to display transactions in rows, in version
3.2.0you can now use[wallets_transactions template="rows"]. Please see the release notes for more details.Can we mark this thread as resolved or does the LTCT problem you reported persist?
thanks
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Only Have Blank Boxes on WP Frontend HELP!!!Hello,
Thanks for submitting all of this info.
It seems you have already read the troubleshooting guide in the documentation, so you know that the UIs will show empty if there are any kind of JavaScript errors in the frontend.
In your particular case there seems to be a problem with the compression encoding for the plugin’s JSON API. This looks very strange, since your debug info indicates that the zlib PHP module is loaded.
There’s two things you can try:
1. Try adding
define( 'WP_DEBUG_DISPLAY', false );into yourwp-config.php. For more info about this, see here. If you have enabled logging but have not set this constant, then any PHP warnings or errors from this plugin or any other, might be getting printed out along with the compressed output of the API, thus messing up the encoding.2. If #1 does not work, you can try going to your admin screens, to Wallets → Frontend settings → Disable zlib compression for JSON API. Check the box and click on “Save Changes”. This should solve your issue at the possible expense of a slight delay on the API calls. Depending on a number of factors the delay might not even be noticeable.
Thank you again for your detailed feedback, Do let me know what you find.
kind regards
AlexForum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Reset Testnet TotalsHello Mario,
Glad to hear that you are happy with the plugin!
If your site only contains testnet transactions, simply empty the transactions and addresses tables using your SQL console with:
DELETE FROM wp_wallets_txs;
DELETE FROM wp_wallets_adds;If you only need to delete transactions for a single testnet coin such as CoinPayments’ LTCT, while retaining balances for other coins, use something like:
DELETE FROM wp_wallets_txs WHERE symbol = 'LTCT';
DELETE FROM wp_wallets_adds WHERE symbol = 'LTCT';You will need to make sure to replace
wp_with the actual DB table prefix that your installation uses.I have not added this command as a feature in the plugin because of its high potential for causing nasty accidents 🙂
kind regards
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Could not contact server.@sunrisecoin Thank you for reporting.
Can you please follow the forum guidelines? Namely, study the troubleshooting section in the documentation, and if your issue is not addressed there, open a new thread with the exact error message you see and as much information as possible, including the coin adapter that you are using and the wallet that you are trying to interface to.
Looking forward to your reply.
kind regards
AlexForum: Reviews
In reply to: [Bitcoin and Altcoin Wallets] Excellent plug-in and supportThank you very much for your very kind review. I appreciate it.
Indeed I want everyone to know that I am committed to improving and supporting this plugin and its extensions.
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Balances dissapeared after updateHello Andy,
I saw notifications in my email about your post on the CoinPayments forum, but today the thread does not seem to exist. Did you delete it? Did you resolve the issue?
Whenever there is a missing deposit from the CoinPayments adapter, the way to debug this is listed in the page for the coin adapter under “troubleshooting”. Essentially we need to see the IPN history logs. There should be an IPN message with status=100 for that transaction. This is the message that the CoinPayments platform sends to the plugin to notify about an incoming deposit. If you click on the date/time for this message in the IPN history list, it will show you details about this IPN message. If there were any errors, they will be there. You can also retry sending the message if it did not arrive correctly at your plugin.
please keep me updated with what you find
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] wallet move operation failedThe problem with IE11 is addressed in the latest version 3.1.2 of the plugin.
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Balances dissapeared after updateHello Andy,
Yes this appears to be an issue with the CoinPayments adapter, so if you can open a thread on the forum for the CoinPayments adapter that will be great. I will close this thread as you resolved the JavaScript error. Any JavaScript errors will interfere with the frontend, so you must always make sure that no components cause errors.
You should follow the troubleshooting guide on the coin adapter page regarding deposits. Essentially, I will need to see the details about the IPN notification with status = 100 in your IPN history.
best
Alex
Forum: Plugins
In reply to: [Bitcoin and Altcoin Wallets] Balances dissapeared after updateHello,
It appears you are reporting two distinct issues:
1. About the frontend, is there any JavaScript error in your browser console?
Today another user reported an incompatibility with Internet Explorer 11, so I will release a patch for that tomorrow. If you are using that browser, test again with another browser.
If you are using another browser already, please post any JavaScript error messages here so I can have a look.
2. When you visit the “transactions” page in the admin interface, is the BTC deposit confirmed? If it is not, it will not yet count towards your user balances.
kind regards