Plugin Directory

Changeset 3275044


Ignore:
Timestamp:
04/16/2025 06:28:20 PM (11 months ago)
Author:
devfelixmoira
Message:

Added new version

Location:
popup-more/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • popup-more/trunk/assets/css/style.css

    r3265986 r3275044  
    13121312    height: 38px;
    13131313}
     1314
     1315.select2-dropdown {
     1316    z-index: 999999 !important;
     1317}
  • popup-more/trunk/assets/javascript/ypmAdminJs.js

    r3264016 r3275044  
    155155}
    156156YpmAdminJs.prototype.subscriptionColors = function() {
     157    if (!jQuery(' #ypm-subscription-input-color').length) {
     158        return;
     159    }
    157160    jQuery('#ypm-subscription-labels-color, #ypm-subscription-input-color').minicolors();
    158161
     
    762765        var type = jQuery(this).data('type');
    763766        var link = jQuery(this).data('href');
    764 
     767        if (!moduleId) {
     768            alert('Please create a type, then you can create a popup.')
     769            return;
     770        }
    765771        var popupCreationLink = link+'&ypm_module_id='+parseInt(moduleId);
    766772        window.location.href = popupCreationLink;
  • popup-more/trunk/assets/view/wheel/main.php

    r3265986 r3275044  
    8484        <div class="row form-group">
    8585            <div class="col-md-5">
     86                <label for="ypm-wheel-button-padding" class="ypm-option-label">
     87                    <?php esc_attr_e('Padding', 'popup_master'); ?>:
     88                </label>
     89            </div>
     90            <div class="col-md-5">
     91                <input type="text" name="ypm-wheel-button-padding" placeholder="Ex 18px" id="ypm-wheel-button-paddin" class="form-control" value="<?php echo esc_attr($popupTypeObj->getOptionValue('ypm-wheel-button-padding')); ?>">
     92            </div>
     93        </div>
     94        <div class="row form-group">
     95            <div class="col-md-5">
     96                <label for="ypm-wheel-button-border-radius" class="ypm-option-label">
     97                    <?php esc_attr_e('Border Radius', 'popup_master'); ?>:
     98                </label>
     99            </div>
     100            <div class="col-md-5">
     101                <input type="text" name="ypm-wheel-button-border-radius" placeholder="Ex 10px" id="ypm-wheel-button-border-radius" class="form-control" value="<?php echo esc_attr($popupTypeObj->getOptionValue('ypm-wheel-button-border-radius')); ?>">
     102            </div>
     103        </div>
     104        <div class="row form-group">
     105            <div class="col-md-5">
    86106                <label for="ypm-wheel-button-title" class="ypm-option-label">
    87107                    <?php esc_attr_e('Title', 'popup_master'); ?>:
     
    110130            <div class="col-md-5">
    111131                <input type="color" name="ypm-wheel-button-bg-color" id="ypm-wheel-button-bg-color" value="<?php esc_attr_e($popupTypeObj->getOptionValue('ypm-wheel-button-bg-color'))?>" class="ypm-type-color" />
     132            </div>
     133        </div>
     134        <div class="row form-group">
     135            <div class="col-md-5">
     136                <label for="ypm-wheel-btn-hover" class="ypm-option-label">
     137                    <?php esc_attr_e('Enable hover colors', 'popup_master'); ?>:
     138                </label>
     139            </div>
     140            <div class="col-md-5">
     141                <label class="ypm-switch">
     142                    <input type="checkbox" id="ypm-wheel-btn-hover" name="ypm-wheel-btn-hover" class="js-ypm-accordion" <?php echo esc_attr($popupTypeObj->getOptionValue('ypm-wheel-btn-hover')) ?>>
     143                    <span class="ypm-slider ypm-round"></span>
     144                </label>
     145            </div>
     146        </div>
     147        <div class="ypm-accordion-content ypm-hide-content">
     148            <div class="row form-group">
     149                <div class="col-md-5">
     150                    <label for="ypm-wheel-button-hover-color" class="ypm-option-label">
     151                        <?php esc_attr_e('Color', 'popup_master'); ?>:
     152                    </label>
     153                </div>
     154                <div class="col-md-5">
     155                    <input type="color" name="ypm-wheel-button-hover-color" value="<?php esc_attr_e($popupTypeObj->getOptionValue('ypm-wheel-button-hover-color'))?>" class="ypm-type-color" />
     156                </div>
     157            </div>
     158            <div class="row form-group">
     159                <div class="col-md-5">
     160                    <label for="ypm-wheel-button-hover-bg-color" class="ypm-option-label">
     161                        <?php esc_attr_e('Background Color', 'popup_master'); ?>:
     162                    </label>
     163                </div>
     164                <div class="col-md-5">
     165                    <input type="color" name="ypm-wheel-button-hover-bg-color" value="<?php esc_attr_e($popupTypeObj->getOptionValue('ypm-wheel-button-hover-bg-color'))?>" class="ypm-type-color" />
     166                </div>
    112167            </div>
    113168        </div>
  • popup-more/trunk/classes/frontend/popups/WheelPopup.php

    r3267601 r3275044  
    122122                    line-height: 1;
    123123                    text-decoration: none !important;
    124                     padding: 0 !important;
     124                    padding: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-padding')) ?>!important;
     125                    border-radius: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-border-radius')) ?>!important;
    125126                    cursor: pointer;
    126127                    width: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-width')); ?>;
     
    129130                    color: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-color')); ?> !important;
    130131                    background-color: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-bg-color')); ?> !important;
     132                }
     133                .ypm-wheel-container-<?php echo esc_attr($id); ?> .ypm-button-title:hover {
     134                    color: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-hover-color')); ?> !important;
     135                    background-color: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-hover-bg-color')); ?> !important;
     136                    border: 1px solid <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-hover-color')); ?> !important;
    131137                }
    132138            </style>
  • popup-more/trunk/config/config.php

    r3265986 r3275044  
    7575        require_once(dirname(__FILE__).'/config-pkg.php');
    7676
    77         self::define('YPM_POPUP_VERSION', 2.53);
    78         self::define('YPM_POPUP_PRO_VERSION', 4.22);
     77        self::define('YPM_POPUP_VERSION', 2.55);
     78        self::define('YPM_POPUP_PRO_VERSION', 4.23);
    7979
    8080        self::define('YPM_POPUP_PRO_URL', 'https://popup-more.com/');
  • popup-more/trunk/config/data-config.php

    r3265986 r3275044  
    643643        $options[] = array('name' => 'ypm-wheel-button-color', 'type' => 'text', 'defaultValue' => '#ffffff');
    644644        $options[] = array('name' => 'ypm-wheel-button-bg-color', 'type' => 'text', 'defaultValue' => '#cd2653');
     645        $options[] = array('name' => 'ypm-wheel-button-hover-color', 'type' => 'text', 'defaultValue' => '#cd2653');
     646        $options[] = array('name' => 'ypm-wheel-button-hover-bg-color', 'type' => 'text', 'defaultValue' => '#ffffff');
     647        $options[] = array('name' => 'ypm-wheel-btn-hover', 'type' => 'checkbox', 'defaultValue' => '');
    645648        $options[] = array('name' => 'ypm-wheel-arrow-size', 'type' => 'text', 'defaultValue' => '1');
    646649
  • popup-more/trunk/popup-more.php

    r3267601 r3275044  
    33 * Plugin Name: Popup More
    44 * Description: Popup More is the most complete pop up plugin in the WordPress popup plugins.
    5  * Version: 2.5.4
     5 * Version: 2.5.5
    66 * Author: Felix Moira
    77 * Author URI:
  • popup-more/trunk/readme.txt

    r3264021 r3275044  
    22Contributors: devfelixmoira
    33Tags: popup, popups
    4 Requires at least: 4.3
    5 Tested up to: 6.7.2
    6 Stable tag: 2.5.2
     4Requires at least: 3.8
     5Tested up to: 6.8
     6Stable tag:  2.5.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    146146
    147147== Changelog ==
     148= 2.5.5 =
     149* Fixed Popup Types Creation issue
     150* Fixed Dropdown Z index issue in the admin panel
     151* Added Wheel Spin Button hover colors
     152* Added Wheel Spin Button padding
     153* Added Wheel Spin Button border radius
     154
     155= 2.5.4 =
     156* Added fix Multiple Wheels render inssue
     157* Fixed Wheel pointer design
     158
     159= 2.5.3 =
     160* Added Wheel Segments add and delete
     161* Added Wheel spin Button color
     162* Added Wheel spin Button background color
     163* Added Wheel Arrow size
     164* Added Wheel Arrow color
     165
    148166= 2.5.2 =
    149167* Added Wheel sound customization
     
    160178
    161179= 2.5.0 =
    162 Added wheel type
     180* Added wheel type
    163181
    164182= 2.4.9.1 =
Note: See TracChangeset for help on using the changeset viewer.