Plugin Directory

Changeset 3071112


Ignore:
Timestamp:
04/15/2024 08:16:52 PM (2 years ago)
Author:
timersys
Message:

hotfix for 2.2

Location:
wp-popups-lite
Files:
1 deleted
6 edited
82 copied

Legend:

Unmodified
Added
Removed
  • wp-popups-lite/tags/2.2.0.1/README.txt

    r3069208 r3071112  
    55Requires at least: 3.6
    66Tested up to: 6.3
    7 Stable tag: 2.2
     7Stable tag: 2.2.0.1
    88Requires PHP: 5.7
    99Text Domain: wp-popups-lite
     
    123123
    124124== Changelog ==
     125= 2.2.0.1 =
     126* Hotfix for closing button with Gutemberg
     127* Hotfix for missing Gutemberg styles in the editor
     128
    125129= 2.2 =
    126 * Added Gutemberg blocks templates to fully customize your popups with WordPress content editor
     130* Added Gutenberg blocks templates to fully customize your popups with WordPress content editor
    127131
    128132= 2.1.5.6 =
  • wp-popups-lite/tags/2.2.0.1/src/assets/css/wppopups-base.css

    r2840041 r3071112  
    139139    text-decoration: none;
    140140    cursor: pointer;
     141    z-index: 9999;
    141142}
    142143html .spu-box a.spu-close {
  • wp-popups-lite/tags/2.2.0.1/src/includes/admin/builder/class-builder.php

    r3069162 r3071112  
    187187     */
    188188    public function enqueues() {
     189
     190        // Blocks Library
     191        wp_enqueue_style( 'wp-block-library' );
    189192
    190193        // Remove conflicting scripts.
  • wp-popups-lite/tags/2.2.0.1/src/includes/admin/settings-api.php

    r2279409 r3071112  
    155155    $default  = isset( $args['default'] ) ? esc_html( $args['default'] ) : '';
    156156    $placeholder  = isset( $args['placeholder'] ) ? esc_html( $args['placeholder'] ) : '';
     157    $is_pass  = isset( $args['is_pass'] ) ? 'password' : 'text';
    157158    $value    = wppopups_setting( $args['id'], $default );
    158159    $id       = wppopups_sanitize_key( $args['id'] );
    159160    $disabled = isset( $args['premium_field'] ) && $args['premium_field'] ? 'disabled' : '';
    160161
    161     $output = '<input type="text" id="wppopups-setting-' . $id . '" name="' . $id . '" placeholder="' . esc_attr( $placeholder ) . '" value="' . esc_attr( $value ) . '" ' . $disabled . '>';
     162    $output = '<input type="'.$is_pass.'" id="wppopups-setting-' . $id . '" name="' . $id . '" placeholder="' . esc_attr( $placeholder ) . '" value="' . esc_attr( $value ) . '" ' . $disabled . '>';
    162163
    163164    if ( ! empty( $args['desc'] ) ) {
  • wp-popups-lite/tags/2.2.0.1/wp-popups-lite.php

    r3069162 r3071112  
    146146         * @var string
    147147         */
    148         public $version = '2.2';
     148        public $version = '2.2.0.1';
    149149
    150150        /**
  • wp-popups-lite/trunk/README.txt

    r3069208 r3071112  
    55Requires at least: 3.6
    66Tested up to: 6.3
    7 Stable tag: 2.2
     7Stable tag: 2.2.0.1
    88Requires PHP: 5.7
    99Text Domain: wp-popups-lite
     
    123123
    124124== Changelog ==
     125= 2.2.0.1 =
     126* Hotfix for closing button with Gutemberg
     127* Hotfix for missing Gutemberg styles in the editor
     128
    125129= 2.2 =
    126 * Added Gutemberg blocks templates to fully customize your popups with WordPress content editor
     130* Added Gutenberg blocks templates to fully customize your popups with WordPress content editor
    127131
    128132= 2.1.5.6 =
  • wp-popups-lite/trunk/src/assets/css/wppopups-base.css

    r2840041 r3071112  
    139139    text-decoration: none;
    140140    cursor: pointer;
     141    z-index: 9999;
    141142}
    142143html .spu-box a.spu-close {
  • wp-popups-lite/trunk/src/includes/admin/builder/class-builder.php

    r3069162 r3071112  
    187187     */
    188188    public function enqueues() {
     189
     190        // Blocks Library
     191        wp_enqueue_style( 'wp-block-library' );
    189192
    190193        // Remove conflicting scripts.
  • wp-popups-lite/trunk/src/includes/admin/settings-api.php

    r2279409 r3071112  
    155155    $default  = isset( $args['default'] ) ? esc_html( $args['default'] ) : '';
    156156    $placeholder  = isset( $args['placeholder'] ) ? esc_html( $args['placeholder'] ) : '';
     157    $is_pass  = isset( $args['is_pass'] ) ? 'password' : 'text';
    157158    $value    = wppopups_setting( $args['id'], $default );
    158159    $id       = wppopups_sanitize_key( $args['id'] );
    159160    $disabled = isset( $args['premium_field'] ) && $args['premium_field'] ? 'disabled' : '';
    160161
    161     $output = '<input type="text" id="wppopups-setting-' . $id . '" name="' . $id . '" placeholder="' . esc_attr( $placeholder ) . '" value="' . esc_attr( $value ) . '" ' . $disabled . '>';
     162    $output = '<input type="'.$is_pass.'" id="wppopups-setting-' . $id . '" name="' . $id . '" placeholder="' . esc_attr( $placeholder ) . '" value="' . esc_attr( $value ) . '" ' . $disabled . '>';
    162163
    163164    if ( ! empty( $args['desc'] ) ) {
  • wp-popups-lite/trunk/wp-popups-lite.php

    r3069162 r3071112  
    146146         * @var string
    147147         */
    148         public $version = '2.2';
     148        public $version = '2.2.0.1';
    149149
    150150        /**
Note: See TracChangeset for help on using the changeset viewer.