I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

alexg

Forum Replies Created

Viewing 15 posts - 1,426 through 1,440 (of 2,199 total)
  • Author
    Posts
  • in reply to: form size #4906
    alexg
    Keymaster

    Hello,

    Please check the argument “qrsize”. See https://www.dashed-slug.net/bitcoin-altcoin-wallets-wordpress-plugin/shortcodes/

    with regards

    alexg
    Keymaster

    xchangeshack.com

    in reply to: Delete an user with a positive balance #4896
    alexg
    Keymaster

    OK, after investigating:

    • If you use “Tools” -> “Erase personal data”, then the user’s transactions will also be deleted.
    • If you go to “Users” -> “Delete”, then the user’s transactions will not be deleted.

    If you still have the user’s ID, you can delete the transactions manually (after you do a DB backup) with the following SQL:

    DELETE FROM wp_wallets_txs WHERE account = ?

    where ? is the user’s numeric ID.

    I will change the code in the next patch so that transactions will also be deleted if you use “Users” -> “Delete”.

    Thank you!

    in reply to: Delete an user with a positive balance #4894
    alexg
    Keymaster

    Hello,

    Yes, it will. The sum of user balances is calculated by summing all transactions from all users.

    with regards

    in reply to: ull Node Multi Coin Adapter extension #4893
    alexg
    Keymaster

    Hello,

    It looks like you are trying to create small plugins to add functionality to the multiadapter.

    Your code is hooking into the the wallets_multiadapter_coins filter. This requires some basic knowledge of PHP. Simply make sure that your functions are not the same. For example you could have these functions:

    function wallets_multiadapter_coins_dgb_filter( $coins ) {

    add_filter( 'wallets_multiadapter_coins', 'wallets_multiadapter_coins_dgb_filter' );

    function wallets_multiadapter_coins_pot_filter( $coins ) {

    add_filter( 'wallets_multiadapter_coins', 'wallets_multiadapter_coins_pot_filter' );

    You can name your functions anything you like as long as they are not the same.

    with regards

    in reply to: Screen freez #4892
    alexg
    Keymaster

    Hello,

    The delay is while the data is loaded via the JSON API (AJAX). It will depend on the user’s connection. There is not much you can do besides improving the general performance of your webserver.

    with regards

    in reply to: Payments #4891
    alexg
    Keymaster

    Thank you for the link!

    with regards

    in reply to: Shortcode #4890
    alexg
    Keymaster

    Hello,

    Unfortunately this is not possible with this extension. It is too tightly bound to articles. I will make a note to add this functionality in the future with a new extension.

    with regards

    in reply to: Visual Color Code #4889
    alexg
    Keymaster

    I have provided this functionality for the default view (table) and for the dropdown view. Are you referring to the simple-dropdown view?

    in reply to: UI #4888
    alexg
    Keymaster

    Hi,

    The reason I prefer the scroll bars to be always visible is for consistency. This way the area available for data is always the same.

    The graph is inline SVG and can be styled with normal CSS. Simply inspect the graph’s elements and you will see the CSS rules that apply. Rules are in wallets-exchange/assets/styles/wallets-exchange.css. If you need to override them, use a child theme.

    For example, to change the axis color to red, you would do:

    
    .dashed-slug-wallets-exchange .chart-container path {
        stroke: red;
    }

    At some point I will add a section to the customizer screens but for now you have to do it manually.

    with regards

    in reply to: Fiat Coin #4879
    alexg
    Keymaster

    With the latest version 0.2.0-beta of the Fiat coin adapter, the fiat amounts are now shown with two decimals.

    Thank you

    in reply to: Custom Fiat Currencies #4878
    alexg
    Keymaster

    With the latest version 0.2.0-beta of the Fiat coin adapter, this is now possible. Please see https://www.dashed-slug.net/forums/topic/customized-rewards/#post-4875

    in reply to: Settings #4877
    alexg
    Keymaster

    With the latest version 0.2.0-beta of the Fiat coin adapter, move fee settings are now added. Additionally, you can now add new coins. Please see https://www.dashed-slug.net/forums/topic/customized-rewards/#post-4875

    with regards

    in reply to: Transaction id #4876
    alexg
    Keymaster

    Hello San,

    With the latest version 0.2.0-beta of the Fiat coin adapter, the transaction ID field is now editable when inserting a new deposit. If the field is not set, a unique ID is assigned.

    with regards

    in reply to: Customized Rewards #4875
    alexg
    Keymaster

    Hello,

    With the latest version 0.2.0-beta of the Fiat coin adapter, it is now possible to add some custom currencies. See the bottom of the fiat settings page in your admin screens for how to add such currencies. These can be traded on the Exchange and sent to other users but cannot be withdrawn.

    With regards

Viewing 15 posts - 1,426 through 1,440 (of 2,199 total)