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!

megeanwasson

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 49 total)
  • Author
    Posts
  • in reply to: ? – Exchange Chart Timeframe #5114
    megeanwasson
    Participant

    Awesome news 🙂

    Thanks I will try your suggestion so long.

    Kind Regards
    Megan

    in reply to: Suggestion: Airdrop to specific user role #5057
    megeanwasson
    Participant

    Awesome 🙂
    Thank You Alex 🙂

    in reply to: Suggestion: Sexier Alert Boxes Please :) #4825
    megeanwasson
    Participant

    Thank you Alex, that would be an awesome cosmetic update 🙂
    Not urgent though 🙂

    in reply to: Latest Price Info using a public API call? #4749
    megeanwasson
    Participant

    Awesome, Thank you Alex, I missed that somehow in the docs 🙂

    in reply to: latest price info? #4731
    megeanwasson
    Participant

    Work In Progress, just taken your idea and suggestion by Alex and wrapped into a plugin.
    Save into file called showcoinlastprice.php put into a folder called showcoinlastprice and zip it, then install just like you do any other plugin.
    Use shortcode where ever you want last price for your coin to be shown.

    <?php
    /*
    Plugin Name:  Show Coin Last Price
    Plugin URI:   https://www.africawebsolutions.org
    Description:  Show Primary Coin Last Price
    Version:      Ver 0.001
    Author:       Megan Wasson
    Author URI:   https://www.africawebsolutions.org
    License:      GPL2
    License URI:  https://www.gnu.org/licenses/gpl-2.0.html
    Text Domain:  showcoinlastprice
    
    showcoinlastprice is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 2 of the License, or
    any later version.
     
    showcoinlastprice is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    GNU General Public License for more details.
     
    You should have received a copy of the GNU General Public License
    along with showcoinlastprice. If not, see https://www.gnu.org/licenses/gpl-2.0.html.
    */
    // Use ShortCode [showCOINBTCPrice] where ever you want your coins last price to show.
    
    function showCOINBTCPrice_shortcode($atts = [], $coinlastprice = null)
    {
         $market_summary = apply_filters(
         'wallets_api_market_summary',
         null,
         array(
             'base_symbol' => 'BTC',  //  < -----  change to your Base Coin Symbol info here
             'quote_symbol' => 'COIN',  //  < -----  change to your Coin Symbol info here
         )
     );
    
    $coinlastprice = $market_summary->last_price;
        // always return
        return $coinlastprice;
    }
    add_shortcode('showCOINBTCPrice', 'showCOINBTCPrice_shortcode');
    in reply to: latest price info? #4727
    megeanwasson
    Participant

    Nice bit of code 🙂
    Have adapted it into a shortcode on my site and works great to display anywhere on the site where the price is needed. 🙂

    in reply to: Give users crypto directly without deposit? #4439
    megeanwasson
    Participant

    Hi Felty,
    That is already possible, use the send crypto shortcode on a page tthere you can then send to any user and add a note/reason.
    See the shortcodes: transfer funds to other users – [wallets_move]
    Regards
    Megan

    in reply to: Troubles connecting multi coin adapter to server #4125
    megeanwasson
    Participant

    Hey dollenick, if you are using cpanel hosting then maybe it is modsecurity that is causing the issue, so if that is the hosting platform they usually have a setting you can use to disable it.
    If you not on cpanel and on some other platform then ask the host if they have modsec running and to disable it for you to test if that was the problem 🙂
    This is only a suggestion to look at if you on cpanel.
    Regards
    Megan

    in reply to: Site Membership Expired? #4013
    megeanwasson
    Participant

    Hi Alex,
    Please ignore or delete the post.
    I think I was blind this morning.
    Membership renewed already 🙂
    Regards
    Megan

    in reply to: Suggestion: Airdrop to specific user role #3960
    megeanwasson
    Participant

    You are a super start 🙂

    in reply to: Market history date display format #3716
    megeanwasson
    Participant

    Glad to help 🙂
    Keep up the great work 🙂

    in reply to: 24hr price/volume change #3693
    megeanwasson
    Participant

    And if it can be available to api calls, would be nice to pull the last price into the coins exchange rate instead of getting the coins exchange rate from an external exchange?

    in reply to: Circle below chart #3686
    megeanwasson
    Participant

    Hi Alex
    I have simply disable canvas in the css.
    It seems to be coming from the templates main css

    If anyone else finds this circle then add to your custom css:
    canvas {display:none}

    That did the trick for me 🙂

    If it causes any issues I will reopen this thread

    Kind Regards
    Megan

    in reply to: Circle below chart #3685
    megeanwasson
    Participant

    tested in Chrome, circle does not show.
    Tested in Firefox with default 2017 theme then circle does not show.
    I am suspecting it may be jscomposer trying to render a button inside the chart widget which has a form element?

    in reply to: Circle below chart #3682
    megeanwasson
    Participant

    Hi Alex,
    I can gladly give you an admin account.

    What email address can I use for your account?
    And what country are you accessing from so that I can open firewall if needed?

    It looks like it is inside the form element of the graph?

    Windows 10
    Firefox Latest version

    Kind Regards
    Megan

    Attachments:
    You must be logged in to view attached files.
Viewing 15 posts - 31 through 45 (of 49 total)