Changeset 3402041
- Timestamp:
- 11/24/2025 06:12:21 PM (4 months ago)
- Location:
- popup-more/trunk
- Files:
-
- 7 edited
-
assets/css/style.css (modified) (1 diff)
-
assets/view/metaboxes/general/generalView/themes.php (modified) (1 diff)
-
classes/YpmFunctions.php (modified) (1 diff)
-
classes/frontend/IncludeManager.php (modified) (1 diff)
-
config/config.php (modified) (1 diff)
-
popup-more.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
popup-more/trunk/assets/css/style.css
r3275044 r3402041 561 561 display: none; 562 562 margin: 5px auto; 563 margin-top: 20px !important; 563 564 } 564 565 -
popup-more/trunk/assets/view/metaboxes/general/generalView/themes.php
r3045216 r3402041 48 48 <label class="control-label" for="textinput"><?php esc_attr_e('Popup theme', 'popup_master');?>:</label> 49 49 </div> 50 <div class="col-xs-4" >50 <div class="col-xs-4" style="display: flex;"> 51 51 <?php echo YpmFunctions::createRadioButtons($themData, $popupTypeObj->getOptionValue('ypm-popup-theme'), array('name' => 'ypm-popup-theme', 'class' => 'ypm-popup-theme'))?> 52 52 <div class="themes-preview theme-preview-1"></div> -
popup-more/trunk/classes/YpmFunctions.php
r3027679 r3402041 22 22 } 23 23 24 $radioButtons .= "<input type=\"radio\" value=\"$value\" $attrString $checked>"; 24 $radioButtons .= "<input type=\"radio\" id=\"$value\" value=\"$value\" $attrString $checked>"; 25 $radioButtons .= '<div class="radio-group ypm-popup-theme" '.$attrString.'> 26 <label for='.esc_attr($value).'><span></span></label> 27 </div>'; 25 28 } 26 29 return $radioButtons; -
popup-more/trunk/classes/frontend/IncludeManager.php
r3158254 r3402041 80 80 $popupContent = "<div style=\"display:none\" class='ypm-hide'><div id=\"ypm-popup-content-wrapper-$id\" >".$content."</div></div>"; 81 81 $popupContent = apply_filters('ypmRenderContentEnd', $popupContent, $allOptions); 82 82 83 83 echo wp_kses($popupContent, \YpmAdminHelper::getAllowedTags()); 84 84 }, 1); -
popup-more/trunk/config/config.php
r3370690 r3402041 75 75 require_once(dirname(__FILE__).'/config-pkg.php'); 76 76 77 self::define('YPM_POPUP_VERSION', 2.5 7);78 self::define('YPM_POPUP_PRO_VERSION', 4.2 4);77 self::define('YPM_POPUP_VERSION', 2.59); 78 self::define('YPM_POPUP_PRO_VERSION', 4.26); 79 79 80 80 self::define('YPM_POPUP_PRO_URL', 'https://popup-more.com/'); -
popup-more/trunk/popup-more.php
r3395509 r3402041 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.9 5 * Version: 2.5.9.1 6 6 * Author: Felix Moira 7 7 * Author URI: -
popup-more/trunk/readme.txt
r3395509 r3402041 3 3 Tags: popup, popups 4 4 Requires at least: 3.8 5 Tested up to: 6.8 5 Tested up to: 6.8.3 6 6 Stable tag: 2.5.2 7 7 License: GPLv2 or later … … 146 146 147 147 == Changelog == 148 = 2.5.9.1 = 149 * Fixed change popup theme issue 150 148 151 = 2.5.9 = 149 152 * Fixed floating button colors change issue
Note: See TracChangeset
for help on using the changeset viewer.