Changeset 3456340
- Timestamp:
- 02/08/2026 10:59:45 AM (4 weeks ago)
- Location:
- formipay/trunk
- Files:
-
- 2 added
- 2 edited
-
assets/css/formipay-admin.css (added)
-
formipay.php (modified) (3 diffs)
-
includes/class-formipay-elementor-widget.php (added)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
formipay/trunk/formipay.php
r3453311 r3456340 3 3 * Plugin Name: Formipay – Donations & Instant Payment Forms (Paystack, Flutterwave & More) 4 4 * 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. 15 * Version: 1.0.2 6 6 * Author: Jackson Jonah 7 7 * Author URI: https://jacksonjonah.com.ng/about-me/ … … 18 18 19 19 // Define Constants 20 define( 'FORMIPAY_VERSION', '1.0. 1' );20 define( 'FORMIPAY_VERSION', '1.0.2' ); 21 21 define( 'FORMIPAY_PATH', plugin_dir_path( __FILE__ ) ); 22 22 define( 'FORMIPAY_URL', plugin_dir_url( __FILE__ ) ); … … 95 95 FormiPay_Ajax_Handler::init(); 96 96 97 // Elementor Widget Registration 98 add_action( 'elementor/widgets/register', array( $this, 'register_elementor_widgets' ) ); 99 97 100 // Settings Link 98 101 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() ); 99 110 } 100 111 } -
formipay/trunk/readme.txt
r3453311 r3456340 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.2 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 78 78 * Improved Paystack metadata synchronization for better transaction clarity. 79 79 * 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.