Changeset 3275044
- Timestamp:
- 04/16/2025 06:28:20 PM (11 months ago)
- Location:
- popup-more/trunk
- Files:
-
- 8 edited
-
assets/css/style.css (modified) (1 diff)
-
assets/javascript/ypmAdminJs.js (modified) (2 diffs)
-
assets/view/wheel/main.php (modified) (2 diffs)
-
classes/frontend/popups/WheelPopup.php (modified) (2 diffs)
-
config/config.php (modified) (1 diff)
-
config/data-config.php (modified) (1 diff)
-
popup-more.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
popup-more/trunk/assets/css/style.css
r3265986 r3275044 1312 1312 height: 38px; 1313 1313 } 1314 1315 .select2-dropdown { 1316 z-index: 999999 !important; 1317 } -
popup-more/trunk/assets/javascript/ypmAdminJs.js
r3264016 r3275044 155 155 } 156 156 YpmAdminJs.prototype.subscriptionColors = function() { 157 if (!jQuery(' #ypm-subscription-input-color').length) { 158 return; 159 } 157 160 jQuery('#ypm-subscription-labels-color, #ypm-subscription-input-color').minicolors(); 158 161 … … 762 765 var type = jQuery(this).data('type'); 763 766 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 } 765 771 var popupCreationLink = link+'&ypm_module_id='+parseInt(moduleId); 766 772 window.location.href = popupCreationLink; -
popup-more/trunk/assets/view/wheel/main.php
r3265986 r3275044 84 84 <div class="row form-group"> 85 85 <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"> 86 106 <label for="ypm-wheel-button-title" class="ypm-option-label"> 87 107 <?php esc_attr_e('Title', 'popup_master'); ?>: … … 110 130 <div class="col-md-5"> 111 131 <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> 112 167 </div> 113 168 </div> -
popup-more/trunk/classes/frontend/popups/WheelPopup.php
r3267601 r3275044 122 122 line-height: 1; 123 123 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; 125 126 cursor: pointer; 126 127 width: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-width')); ?>; … … 129 130 color: <?php esc_attr_e($this->getOptionValue('ypm-wheel-button-color')); ?> !important; 130 131 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; 131 137 } 132 138 </style> -
popup-more/trunk/config/config.php
r3265986 r3275044 75 75 require_once(dirname(__FILE__).'/config-pkg.php'); 76 76 77 self::define('YPM_POPUP_VERSION', 2.5 3);78 self::define('YPM_POPUP_PRO_VERSION', 4.2 2);77 self::define('YPM_POPUP_VERSION', 2.55); 78 self::define('YPM_POPUP_PRO_VERSION', 4.23); 79 79 80 80 self::define('YPM_POPUP_PRO_URL', 'https://popup-more.com/'); -
popup-more/trunk/config/data-config.php
r3265986 r3275044 643 643 $options[] = array('name' => 'ypm-wheel-button-color', 'type' => 'text', 'defaultValue' => '#ffffff'); 644 644 $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' => ''); 645 648 $options[] = array('name' => 'ypm-wheel-arrow-size', 'type' => 'text', 'defaultValue' => '1'); 646 649 -
popup-more/trunk/popup-more.php
r3267601 r3275044 3 3 * Plugin Name: Popup More 4 4 * Description: Popup More is the most complete pop up plugin in the WordPress popup plugins. 5 * Version: 2.5. 45 * Version: 2.5.5 6 6 * Author: Felix Moira 7 7 * Author URI: -
popup-more/trunk/readme.txt
r3264021 r3275044 2 2 Contributors: devfelixmoira 3 3 Tags: popup, popups 4 Requires at least: 4.35 Tested up to: 6. 7.26 Stable tag: 2.5.24 Requires at least: 3.8 5 Tested up to: 6.8 6 Stable tag: 2.5.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 146 146 147 147 == 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 148 166 = 2.5.2 = 149 167 * Added Wheel sound customization … … 160 178 161 179 = 2.5.0 = 162 Added wheel type180 * Added wheel type 163 181 164 182 = 2.4.9.1 =
Note: See TracChangeset
for help on using the changeset viewer.