Plugin Directory

Changeset 3382431


Ignore:
Timestamp:
10/22/2025 09:08:16 AM (8 weeks ago)
Author:
wpdevteam
Message:

Update to version 1.4.5 from GitHub

Location:
better-payment
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • better-payment/tags/1.4.5/better-payment.php

    r3369620 r3382431  
    66 * Plugin URI: https://wpdeveloper.com/
    77 * Author: WPDeveloper
    8  * Version: 1.4.4
     8 * Version: 1.4.5
    99 * Requires at least: 6.0
    1010 * Requires PHP: 7.4
     
    3535     * @since 0.0.1
    3636     */
    37     const version = '1.4.4';
     37    const version = '1.4.5';
    3838
    3939    /**
  • better-payment/tags/1.4.5/includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php

    r3306242 r3382431  
    502502                    'better_payment_amount_list_style' => 'yes',
    503503                ],
     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',
    504522            ]
    505523        );
  • better-payment/tags/1.4.5/includes/Assets.php

    r3319850 r3382431  
    204204            ]
    205205        ));
     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        }
    206213    }
    207214}
  • better-payment/tags/1.4.5/languages/better-payment.pot

    r3369620 r3382431  
    22862286msgstr ""
    22872287
     2288#: ../includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php:510
     2289msgid "Success/Error Messages"
     2290msgstr ""
     2291
     2292#: ../includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php:520
     2293msgid "For proper message display on payment redirection, disable Element Caching in <strong>Advanced Tab → Cache Settings</strong>."
     2294msgstr ""
     2295
    22882296#: ../includes/Admin/Elementor/Form_Actions/Paypal_Integration.php:68
    22892297msgid "Currency is not supported by PayPal!"
  • better-payment/tags/1.4.5/readme.txt

    r3369620 r3382431  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.4.4
     8Stable tag: 1.4.5
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    162162
    163163== 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
    164169
    165170= 1.4.4 - 29/09/2025 =
  • better-payment/trunk/better-payment.php

    r3369620 r3382431  
    66 * Plugin URI: https://wpdeveloper.com/
    77 * Author: WPDeveloper
    8  * Version: 1.4.4
     8 * Version: 1.4.5
    99 * Requires at least: 6.0
    1010 * Requires PHP: 7.4
     
    3535     * @since 0.0.1
    3636     */
    37     const version = '1.4.4';
     37    const version = '1.4.5';
    3838
    3939    /**
  • better-payment/trunk/includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php

    r3306242 r3382431  
    502502                    'better_payment_amount_list_style' => 'yes',
    503503                ],
     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',
    504522            ]
    505523        );
  • better-payment/trunk/includes/Assets.php

    r3319850 r3382431  
    204204            ]
    205205        ));
     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        }
    206213    }
    207214}
  • better-payment/trunk/languages/better-payment.pot

    r3369620 r3382431  
    22862286msgstr ""
    22872287
     2288#: ../includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php:510
     2289msgid "Success/Error Messages"
     2290msgstr ""
     2291
     2292#: ../includes/Admin/Elementor/Form_Actions/Payment_Amount_Integration.php:520
     2293msgid "For proper message display on payment redirection, disable Element Caching in <strong>Advanced Tab → Cache Settings</strong>."
     2294msgstr ""
     2295
    22882296#: ../includes/Admin/Elementor/Form_Actions/Paypal_Integration.php:68
    22892297msgid "Currency is not supported by PayPal!"
  • better-payment/trunk/readme.txt

    r3369620 r3382431  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.4.4
     8Stable tag: 1.4.5
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    162162
    163163== 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
    164169
    165170= 1.4.4 - 29/09/2025 =
Note: See TracChangeset for help on using the changeset viewer.