Changeset 3382431
- Timestamp:
- 10/22/2025 09:08:16 AM (8 weeks ago)
- Location:
- better-payment
- Files:
-
- 10 edited
- 1 copied
-
tags/1.4.5 (copied) (copied from better-payment/trunk)
-
tags/1.4.5/better-payment.php (modified) (2 diffs)
-
tags/1.4.5/includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php (modified) (1 diff)
-
tags/1.4.5/includes/Assets.php (modified) (1 diff)
-
tags/1.4.5/languages/better-payment.pot (modified) (1 diff)
-
tags/1.4.5/readme.txt (modified) (2 diffs)
-
trunk/better-payment.php (modified) (2 diffs)
-
trunk/includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php (modified) (1 diff)
-
trunk/includes/Assets.php (modified) (1 diff)
-
trunk/languages/better-payment.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
better-payment/tags/1.4.5/better-payment.php
r3369620 r3382431 6 6 * Plugin URI: https://wpdeveloper.com/ 7 7 * Author: WPDeveloper 8 * Version: 1.4. 48 * Version: 1.4.5 9 9 * Requires at least: 6.0 10 10 * Requires PHP: 7.4 … … 35 35 * @since 0.0.1 36 36 */ 37 const version = '1.4. 4';37 const version = '1.4.5'; 38 38 39 39 /** -
better-payment/tags/1.4.5/includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php
r3306242 r3382431 502 502 'better_payment_amount_list_style' => 'yes', 503 503 ], 504 ] 505 ); 506 507 $widget->add_control( 508 'better_payment_message_display_heading', 509 [ 510 'label' => __( 'Success/Error Messages', 'better-payment' ), 511 'type' => Controls_Manager::HEADING, 512 'separator' => 'before', 513 ] 514 ); 515 516 $widget->add_control( 517 'better_payment_message_display_notice', 518 [ 519 'type' => Controls_Manager::RAW_HTML, 520 'raw' => __( 'For proper message display on payment redirection, disable Element Caching in <strong>Advanced Tab → Cache Settings</strong>.', 'better-payment' ), 521 'content_classes' => 'elementor-panel-alert elementor-panel-alert-info', 504 522 ] 505 523 ); -
better-payment/tags/1.4.5/includes/Assets.php
r3319850 r3382431 204 204 ] 205 205 )); 206 207 if ( is_admin() && function_exists( 'get_current_screen' ) ) { 208 $hook = get_current_screen()->id; 209 if ( isset( $hook ) && $hook == 'elementor_page_elementor-element-manager' ) { 210 wp_enqueue_style( 'bp-icon-admin', BETTER_PAYMENT_ASSETS . '/icon/style.min.css', array(), BETTER_PAYMENT_VERSION ); 211 } 212 } 206 213 } 207 214 } -
better-payment/tags/1.4.5/languages/better-payment.pot
r3369620 r3382431 2286 2286 msgstr "" 2287 2287 2288 #: ../includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php:510 2289 msgid "Success/Error Messages" 2290 msgstr "" 2291 2292 #: ../includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php:520 2293 msgid "For proper message display on payment redirection, disable Element Caching in <strong>Advanced Tab → Cache Settings</strong>." 2294 msgstr "" 2295 2288 2296 #: ../includes/Admin/Elementor/Form_Actions/Paypal_Integration.php:68 2289 2297 msgid "Currency is not supported by PayPal!" -
better-payment/tags/1.4.5/readme.txt
r3369620 r3382431 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.4. 48 Stable tag: 1.4.5 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 162 162 163 163 == Changelog == 164 165 = 1.4.5 - 22/10/2025 = 166 - Fixed: Widget icon is not visible in Elementor > Element Manager page 167 - Added: Forms Integration | Info control instructing how to properly display success and error messages on payment redirection 168 - Few minor bug fixes & improvements 164 169 165 170 = 1.4.4 - 29/09/2025 = -
better-payment/trunk/better-payment.php
r3369620 r3382431 6 6 * Plugin URI: https://wpdeveloper.com/ 7 7 * Author: WPDeveloper 8 * Version: 1.4. 48 * Version: 1.4.5 9 9 * Requires at least: 6.0 10 10 * Requires PHP: 7.4 … … 35 35 * @since 0.0.1 36 36 */ 37 const version = '1.4. 4';37 const version = '1.4.5'; 38 38 39 39 /** -
better-payment/trunk/includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php
r3306242 r3382431 502 502 'better_payment_amount_list_style' => 'yes', 503 503 ], 504 ] 505 ); 506 507 $widget->add_control( 508 'better_payment_message_display_heading', 509 [ 510 'label' => __( 'Success/Error Messages', 'better-payment' ), 511 'type' => Controls_Manager::HEADING, 512 'separator' => 'before', 513 ] 514 ); 515 516 $widget->add_control( 517 'better_payment_message_display_notice', 518 [ 519 'type' => Controls_Manager::RAW_HTML, 520 'raw' => __( 'For proper message display on payment redirection, disable Element Caching in <strong>Advanced Tab → Cache Settings</strong>.', 'better-payment' ), 521 'content_classes' => 'elementor-panel-alert elementor-panel-alert-info', 504 522 ] 505 523 ); -
better-payment/trunk/includes/Assets.php
r3319850 r3382431 204 204 ] 205 205 )); 206 207 if ( is_admin() && function_exists( 'get_current_screen' ) ) { 208 $hook = get_current_screen()->id; 209 if ( isset( $hook ) && $hook == 'elementor_page_elementor-element-manager' ) { 210 wp_enqueue_style( 'bp-icon-admin', BETTER_PAYMENT_ASSETS . '/icon/style.min.css', array(), BETTER_PAYMENT_VERSION ); 211 } 212 } 206 213 } 207 214 } -
better-payment/trunk/languages/better-payment.pot
r3369620 r3382431 2286 2286 msgstr "" 2287 2287 2288 #: ../includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php:510 2289 msgid "Success/Error Messages" 2290 msgstr "" 2291 2292 #: ../includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php:520 2293 msgid "For proper message display on payment redirection, disable Element Caching in <strong>Advanced Tab → Cache Settings</strong>." 2294 msgstr "" 2295 2288 2296 #: ../includes/Admin/Elementor/Form_Actions/Paypal_Integration.php:68 2289 2297 msgid "Currency is not supported by PayPal!" -
better-payment/trunk/readme.txt
r3369620 r3382431 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.4. 48 Stable tag: 1.4.5 9 9 License: GPLv3 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 162 162 163 163 == Changelog == 164 165 = 1.4.5 - 22/10/2025 = 166 - Fixed: Widget icon is not visible in Elementor > Element Manager page 167 - Added: Forms Integration | Info control instructing how to properly display success and error messages on payment redirection 168 - Few minor bug fixes & improvements 164 169 165 170 = 1.4.4 - 29/09/2025 =
Note: See TracChangeset
for help on using the changeset viewer.