Plugin Directory

Changeset 2690597


Ignore:
Timestamp:
03/08/2022 08:14:02 AM (4 years ago)
Author:
codeies
Message:

Freemium Added to maintain plugin better

Location:
elite-crypto-checkout/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • elite-crypto-checkout/trunk/elite-crypto-checkout.php

    r2688964 r2690597  
    1212 * Plugin URI:    https://codeies.com/product/elite-crypto-checkout/
    1313 * Description:   Woocommerce Crypto currency checkout
    14  * Version:       1.0
     14 * Version:       1.1
    1515 * Author:        Codeies
    1616 * Author URI:    https://codeies.com/muhammad-junaid
     
    3030
    3131// Plugin version
    32 define( 'WOOCRYPTOC_VERSION',       '1.0' );
     32define( 'WOOCRYPTOC_VERSION',       '1.1' );
    3333
    3434// Plugin Root File
     
    6060if ( ! in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) return;
    6161
     62if ( ! function_exists( 'ecc_fs' ) ) {
     63    // Create a helper function for easy SDK access.
     64    function ecc_fs() {
     65        global $ecc_fs;
     66
     67        if ( ! isset( $ecc_fs ) ) {
     68            // Include Freemius SDK.
     69            require_once dirname(__FILE__) . '/freemius/start.php';
     70
     71            $ecc_fs = fs_dynamic_init( array(
     72                'id'                  => '10006',
     73                'slug'                => 'elite-crypto-checkout',
     74                'type'                => 'plugin',
     75                'public_key'          => 'pk_9a53ef7a35fcdeceb5cef94df539c',
     76                'is_premium'          => false,
     77                'has_addons'          => false,
     78                'has_paid_plans'      => false,
     79                'menu'                => array(
     80                    'account'        => false,
     81                    'support'        => false,
     82                ),
     83            ) );
     84        }
     85
     86        return $ecc_fs;
     87    }
     88
     89    // Init Freemius.
     90    ecc_fs();
     91    // Signal that SDK was initiated.
     92    do_action( 'ecc_fs_loaded' );
     93}
     94
    6295function WOOCRYPTOC() {
    6396    return Woocrypto_Checkout::instance();
  • elite-crypto-checkout/trunk/readme.txt

    r2688984 r2690597  
    22Author URI: https://codeies.com/muhammad-junaid
    33Plugin URI: https://codeies.com/woocrypto-checkout
    4 Donate link: https://codeies.com/product/elite-crypto-checkout/
     4Donate link: #
    55Contributors: codeies
    66Tags: crypto, checkout, woocommerce, binance, binance-pay,BTC
     
    1515== Description ==
    1616
    17  [Binance Pay](https://accounts.binance.com/en/register?return_to=aHR0cHM6Ly9tZXJjaGFudC5iaW5hbmNlLmNvbS9lbi9vbmJvYXJkaW5nL21lcmNoYW50P2FwcGx5LW1lcmNoYW50LWRpcmVjdA==&ref=39895487 "Signup Binance Merchant Account"). is a contactless, borderless and secure cryptocurrency payment technology designed by Binance.  [Binance Pay Merchant](https://accounts.binance.com/en/register?return_to=aHR0cHM6Ly9tZXJjaGFudC5iaW5hbmNlLmNvbS9lbi9vbmJvYXJkaW5nL21lcmNoYW50P2FwcGx5LW1lcmNoYW50LWRpcmVjdA==&ref=39895487 "Signup Binance Merchant Account") allows you to pay and get paid in crypto from your friends and family worldwide. Let us understand how this new crypto payment technology closes up the circle for our different users within the Binance ecosystem. Live the crypto lifestyle you always desired.
     17Binance Pay is a contactless, borderless and secure cryptocurrency payment technology designed by Binance. Binance Pay allows you to pay and get paid in crypto from your friends and family worldwide. Let us understand how this new crypto payment technology closes up the circle for our different users within the Binance ecosystem. Live the crypto lifestyle you always desired.
    1818
    1919
    2020With the addition of BIDR, DAI, TKO and XVG, Binance Pay now supports more than 50 cryptocurrencies, including ADA, ATOM, AVA, BCH, BNB, BTC, BUSD, CTSI, DASH, DOGE, DOT, EGLD, EOS, ETC, ETH, FIL, FRONT, FTM, GRS, HBAR, IOTX, LINK, LTC, MANA, MATIC, NEO, OM, ONE, PAX, QTUM, STRAX, SXP, TRX, TUSD, UNI, USDC, USDT, VAI, VET, WRX, XLM, XMR, XRP, XTZ, XVS, ZEC, ZIL.
    2121
    22 == Demo Link==
    23 [https://codeies.com/product/elite-crypto-checkout/](https://codeies.com/product/elite-crypto-checkout/)
     22
    2423
    2524== Frequently Asked Questions ==
    2625
    27 = How to Apply for Binance Pay Merchant Account =
     26= How to Apply for [Binance Pay Merchant Account](https://accounts.binance.com/en/register?return_to=aHR0cHM6Ly9tZXJjaGFudC5iaW5hbmNlLmNvbS9lbi9vbmJvYXJkaW5nL21lcmNoYW50P2FwcGx5LW1lcmNoYW50LWRpcmVjdA==&ref=39895487 "Signup Binance Merchant Account") =
    2827
    29281.Go to our merchant landing page and click [Become a Merchant](https://accounts.binance.com/en/register?return_to=aHR0cHM6Ly9tZXJjaGFudC5iaW5hbmNlLmNvbS9lbi9vbmJvYXJkaW5nL21lcmNoYW50P2FwcGx5LW1lcmNoYW50LWRpcmVjdA==&ref=39895487 "Signup Binance Merchant Account").
Note: See TracChangeset for help on using the changeset viewer.