Plugin Directory

Changeset 3298439


Ignore:
Timestamp:
05/22/2025 04:55:15 AM (10 months ago)
Author:
beycanpress
Message:

Update to version 1.0.3 from GitHub

Location:
cryptopay-gateway-for-ninjaforms
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cryptopay-gateway-for-ninjaforms/tags/1.0.3/app/Loader.php

    r3298394 r3298439  
    1818        Helpers::registerIntegration('ninjaforms');
    1919
    20         Helpers::createTransactionPage(
    21             esc_html__('Ninja Forms Transactions', 'cryptopay-gateway-for-ninjaforms'),
    22             'ninjaforms',
    23             10,
    24             [],
    25             ['orderId']
    26         );
     20        add_action('init', function (): void {
     21            Helpers::createTransactionPage(
     22                esc_html__('Ninja Forms Transactions', 'cryptopay-gateway-for-ninjaforms'),
     23                'ninjaforms',
     24                9,
     25                [],
     26                ['orderId']
     27            );
     28        });
    2729
    2830        Hook::addAction('payment_finished_ninjaforms', [$this, 'paymentFinished']);
     
    7274    {
    7375        $field = new Field();
     76        /** @disregard */
    7477        $fields[$field->get_name()] = $field;
    7578
     
    9598    {
    9699        $gateway = new Gateway();
     100        /** @disregard */
    97101        $gateways[$gateway->get_slug()] = $gateway;
    98102
  • cryptopay-gateway-for-ninjaforms/tags/1.0.3/cryptopay-gateway-for-ninjaforms.php

    r3298394 r3298439  
    1212/**
    1313 * Plugin Name: CryptoPay Gateway for Ninja Forms
    14  * Version:     1.0.2
     14 * Version:     1.0.3
    1515 * Plugin URI:  https://beycanpress.com/cryptopay/
    1616 * Description: Adds Cryptocurrency payment gateway (CryptoPay) for Ninja Forms.
     
    3030
    3131define('NINJA_FORMS_CRYPTOPAY_FILE', __FILE__);
    32 define('NINJA_FORMS_CRYPTOPAY_VERSION', '1.0.2');
     32define('NINJA_FORMS_CRYPTOPAY_VERSION', '1.0.3');
    3333define('NINJA_FORMS_CRYPTOPAY_KEY', basename(__DIR__));
    3434define('NINJA_FORMS_CRYPTOPAY_URL', plugin_dir_url(__FILE__));
  • cryptopay-gateway-for-ninjaforms/tags/1.0.3/readme.txt

    r3298394 r3298439  
    55Tested up to: 6.8
    66Requires PHP: 8.1
    7 Stable Tag: 1.0.2
    8 Version: 1.0.2
     7Stable Tag: 1.0.3
     8Version: 1.0.3
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1616### Cryptocurrency Payment Gateway for Ninja Forms by CryptoPay
    1717
    18 As blockchain technology and cryptocurrency adoption continue to rise, more businesses, freelancers, and creators are looking for efficient ways to accept digital payments. With the CryptoPay plugin, you can effortlessly accept crypto payments through Ninja Forms on your WordPress site—no need for third-party processors or transaction fees.
     18As blockchain technology and cryptocurrency adoption continue to rise, more businesses, freelancers, and creators are looking for efficient ways to accept digital payments. With the CryptoPay plugin, you can effortlessly accept crypto payments through Ninja Forms on your WordPress site—no need for third-party processors or paying commissions.
    1919
    2020CryptoPay delivers a truly decentralized, non-custodial, and fee-free payment system, fully integrated with Ninja Forms. Whether you're selling digital products, offering services, or collecting donations, enabling crypto payments on your forms takes just a few simple steps.
     
    3939
    4040* First set calculation prices in your form elements.
    41 ![Screenshot-1](https://i.ibb.co/YN8xmsY/Screenshot-1.png)
    42 
    4341* Open calculation in Advanced and create a total calculation
    44 ![Screenshot-2](https://i.ibb.co/tQjb81g/Screenshot-2.png)
    45 ![Screenshot-3](https://i.ibb.co/c10Ddbs/Screenshot-3.png)
    46 ![Screenshot-4](https://i.ibb.co/WkmprTM/Screenshot-4.png)
    47 
    4842* Add CryptoPay or CryptoPay Lite to your form from the Field field
    49 ![Screenshot-5](https://i.ibb.co/CJzZKfz/Screenshot-5.png)
    50 
    5143* Enter the total value set in the calculation in the default value section of the field alerts
    52 ![Screenshot-6](https://i.ibb.co/Bq47ymD/Screenshot-6.png)
    53 ![Screenshot-7](https://i.ibb.co/KXmjLsw/Screenshot-7.png)
    54 
    5544* That's it, now you are ready to receive cryptocurrency payments from your form.
    5645
     
    7564== Changelog ==
    7665
     66= 1.0.3 =
     67* Fixed: _load_textdomain_just_in_time early call
     68
    7769= 1.0.1 =
    7870* Fixed: Text domain warning.
  • cryptopay-gateway-for-ninjaforms/trunk/app/Loader.php

    r3298394 r3298439  
    1818        Helpers::registerIntegration('ninjaforms');
    1919
    20         Helpers::createTransactionPage(
    21             esc_html__('Ninja Forms Transactions', 'cryptopay-gateway-for-ninjaforms'),
    22             'ninjaforms',
    23             10,
    24             [],
    25             ['orderId']
    26         );
     20        add_action('init', function (): void {
     21            Helpers::createTransactionPage(
     22                esc_html__('Ninja Forms Transactions', 'cryptopay-gateway-for-ninjaforms'),
     23                'ninjaforms',
     24                9,
     25                [],
     26                ['orderId']
     27            );
     28        });
    2729
    2830        Hook::addAction('payment_finished_ninjaforms', [$this, 'paymentFinished']);
     
    7274    {
    7375        $field = new Field();
     76        /** @disregard */
    7477        $fields[$field->get_name()] = $field;
    7578
     
    9598    {
    9699        $gateway = new Gateway();
     100        /** @disregard */
    97101        $gateways[$gateway->get_slug()] = $gateway;
    98102
  • cryptopay-gateway-for-ninjaforms/trunk/cryptopay-gateway-for-ninjaforms.php

    r3298394 r3298439  
    1212/**
    1313 * Plugin Name: CryptoPay Gateway for Ninja Forms
    14  * Version:     1.0.2
     14 * Version:     1.0.3
    1515 * Plugin URI:  https://beycanpress.com/cryptopay/
    1616 * Description: Adds Cryptocurrency payment gateway (CryptoPay) for Ninja Forms.
     
    3030
    3131define('NINJA_FORMS_CRYPTOPAY_FILE', __FILE__);
    32 define('NINJA_FORMS_CRYPTOPAY_VERSION', '1.0.2');
     32define('NINJA_FORMS_CRYPTOPAY_VERSION', '1.0.3');
    3333define('NINJA_FORMS_CRYPTOPAY_KEY', basename(__DIR__));
    3434define('NINJA_FORMS_CRYPTOPAY_URL', plugin_dir_url(__FILE__));
  • cryptopay-gateway-for-ninjaforms/trunk/readme.txt

    r3298394 r3298439  
    55Tested up to: 6.8
    66Requires PHP: 8.1
    7 Stable Tag: 1.0.2
    8 Version: 1.0.2
     7Stable Tag: 1.0.3
     8Version: 1.0.3
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    1616### Cryptocurrency Payment Gateway for Ninja Forms by CryptoPay
    1717
    18 As blockchain technology and cryptocurrency adoption continue to rise, more businesses, freelancers, and creators are looking for efficient ways to accept digital payments. With the CryptoPay plugin, you can effortlessly accept crypto payments through Ninja Forms on your WordPress site—no need for third-party processors or transaction fees.
     18As blockchain technology and cryptocurrency adoption continue to rise, more businesses, freelancers, and creators are looking for efficient ways to accept digital payments. With the CryptoPay plugin, you can effortlessly accept crypto payments through Ninja Forms on your WordPress site—no need for third-party processors or paying commissions.
    1919
    2020CryptoPay delivers a truly decentralized, non-custodial, and fee-free payment system, fully integrated with Ninja Forms. Whether you're selling digital products, offering services, or collecting donations, enabling crypto payments on your forms takes just a few simple steps.
     
    3939
    4040* First set calculation prices in your form elements.
    41 ![Screenshot-1](https://i.ibb.co/YN8xmsY/Screenshot-1.png)
    42 
    4341* Open calculation in Advanced and create a total calculation
    44 ![Screenshot-2](https://i.ibb.co/tQjb81g/Screenshot-2.png)
    45 ![Screenshot-3](https://i.ibb.co/c10Ddbs/Screenshot-3.png)
    46 ![Screenshot-4](https://i.ibb.co/WkmprTM/Screenshot-4.png)
    47 
    4842* Add CryptoPay or CryptoPay Lite to your form from the Field field
    49 ![Screenshot-5](https://i.ibb.co/CJzZKfz/Screenshot-5.png)
    50 
    5143* Enter the total value set in the calculation in the default value section of the field alerts
    52 ![Screenshot-6](https://i.ibb.co/Bq47ymD/Screenshot-6.png)
    53 ![Screenshot-7](https://i.ibb.co/KXmjLsw/Screenshot-7.png)
    54 
    5544* That's it, now you are ready to receive cryptocurrency payments from your form.
    5645
     
    7564== Changelog ==
    7665
     66= 1.0.3 =
     67* Fixed: _load_textdomain_just_in_time early call
     68
    7769= 1.0.1 =
    7870* Fixed: Text domain warning.
Note: See TracChangeset for help on using the changeset viewer.