Forum Replies Created
-
AuthorPosts
-
megeanwassonParticipant
Awesome news 🙂
Thanks I will try your suggestion so long.
Kind Regards
MeganmegeanwassonParticipantAwesome 🙂
Thank You Alex 🙂megeanwassonParticipantThank you Alex, that would be an awesome cosmetic update 🙂
Not urgent though 🙂megeanwassonParticipantAwesome, Thank you Alex, I missed that somehow in the docs 🙂
megeanwassonParticipantWork 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');
megeanwassonParticipantNice 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. 🙂megeanwassonParticipantHi 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
MeganmegeanwassonParticipantHey 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
MeganmegeanwassonParticipantHi Alex,
Please ignore or delete the post.
I think I was blind this morning.
Membership renewed already 🙂
Regards
MeganmegeanwassonParticipantYou are a super start 🙂
megeanwassonParticipantGlad to help 🙂
Keep up the great work 🙂megeanwassonParticipantAnd 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?
megeanwassonParticipantHi Alex
I have simply disable canvas in the css.
It seems to be coming from the templates main cssIf 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
MeganmegeanwassonParticipanttested 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?megeanwassonParticipantHi 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 versionKind Regards
MeganAttachments:
You must be logged in to view attached files. -
AuthorPosts