Plugin Directory

Changeset 3456340


Ignore:
Timestamp:
02/08/2026 10:59:45 AM (4 weeks ago)
Author:
jackieriel
Message:

Added Elementor Widget integration for easy form embedding

Location:
formipay/trunk
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • formipay/trunk/formipay.php

    r3453311 r3456340  
    33 * Plugin Name: Formipay – Donations & Instant Payment Forms (Paystack, Flutterwave & More)
    44 * Description: Allows you to receive donations and payments on your website instantly via Paystack and Flutterwave using lightweight, secure, and conversion-focused forms
    5  * Version: 1.0.1   
     5 * Version: 1.0.2   
    66 * Author: Jackson Jonah
    77 * Author URI: https://jacksonjonah.com.ng/about-me/
     
    1818
    1919// Define Constants
    20 define( 'FORMIPAY_VERSION', '1.0.1' );
     20define( 'FORMIPAY_VERSION', '1.0.2' );
    2121define( 'FORMIPAY_PATH', plugin_dir_path( __FILE__ ) );
    2222define( 'FORMIPAY_URL', plugin_dir_url( __FILE__ ) );
     
    9595        FormiPay_Ajax_Handler::init();
    9696
     97        // Elementor Widget Registration
     98        add_action( 'elementor/widgets/register', array( $this, 'register_elementor_widgets' ) );
     99
    97100        // Settings Link
    98101        add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( 'FormiPay_Admin_Settings', 'add_plugin_action_links' ) );
     102    }
     103
     104    /**
     105     * Register Elementor Widgets
     106     */
     107    public function register_elementor_widgets( $widgets_manager ) {
     108        require_once FORMIPAY_PATH . 'includes/class-formipay-elementor-widget.php';
     109        $widgets_manager->register( new \FormiPay_Elementor_Widget() );
    99110    }
    100111}
  • formipay/trunk/readme.txt

    r3453311 r3456340  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7878*   Improved Paystack metadata synchronization for better transaction clarity.
    7979*   Improved checkbox data collection logic and overall form styling.
     80
     81= 1.0.2 =
     82*   Added Elementor Widget integration for easy form embedding.
     83*   General improvements and bug fixes.
Note: See TracChangeset for help on using the changeset viewer.