Changeset 3413640
- Timestamp:
- 12/07/2025 05:33:34 PM (3 months ago)
- Location:
- popup-more/trunk
- Files:
-
- 5 edited
-
assets/view/metaboxes/floatingButton.php (modified) (1 diff)
-
classes/frontend/popups/Popup.php (modified) (1 diff)
-
config/config.php (modified) (1 diff)
-
popup-more.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
popup-more/trunk/assets/view/metaboxes/floatingButton.php
r3044604 r3413640 98 98 </div> 99 99 </div> 100 101 <div class="row ypm-margin-bottom-15"> 102 <div class="col-xs-6"> 103 <label class="control-label" for="ypm-popup-floating-hover"><?php esc_attr_e('On hover', 'popup_master');?>:</label> 104 <?php echo ypm_info(esc_attr__('Change Floating button colors after Hover', 'popup_master')); ?> 105 </div> 106 <div class="col-xs-4"> 107 <label class="ypm-switch"> 108 <input type="checkbox" id="ypm-popup-floating-hover" class="js-ypm-accordion" name="ypm-popup-floating-hover" <?php echo esc_attr($popupTypeObj->getOptionValue('ypm-popup-floating-hover')); ?>> 109 <span class="ypm-slider ypm-round"></span> 110 </label> 111 <br> 112 </div> 113 </div> 114 <div class="row ypm-margin-bottom-15 ypm-sub-option"> 115 <div class="row form-group"> 116 <div class="col-md-6"> 117 <label for="ypm-popup-floating-hover-bg-color" class=""><?php esc_attr_e('Background color', 'popup_master'); ?></label> 118 </div> 119 <div class="col-md-6 ypm-option-wrapper"> 120 <div class="minicolors minicolors-theme-default minicolors-position-bottom minicolors-position-left"> 121 <input type="text" id="ypm-popup-floating-hover-bg-color" placeholder="<?php esc_attr_e('Select color', 'popup_master')?>" name="ypm-popup-floating-hover-bg-color" class="minicolors-input form-control js-ypm-time-color" value="<?php echo esc_attr($popupTypeObj->getOptionValue("ypm-popup-floating-hover-bg-color")); ?>"> 122 </div> 123 </div> 124 </div> 125 <div class="row form-group"> 126 <div class="col-md-6"> 127 <label for="ypm-popup-floating-hover-text-color" class=""><?php esc_attr_e('Text color', 'popup_master'); ?></label> 128 </div> 129 <div class="col-md-6 ypm-option-wrapper"> 130 <div class="minicolors minicolors-theme-default minicolors-position-bottom minicolors-position-left"> 131 <input type="text" id="ypm-popup-floating-hover-text-color" placeholder="<?php esc_attr_e('Select color', 'popup_master')?>" name="ypm-popup-floating-hover-text-color" class="minicolors-input form-control js-ypm-time-color" value="<?php echo esc_attr($popupTypeObj->getOptionValue("ypm-popup-floating-hover-text-color")); ?>"> 132 </div> 133 </div> 134 </div> 135 </div> 136 100 137 <div class="row ypm-margin-bottom-15"> 101 138 <div class="col-md-6"> -
popup-more/trunk/classes/frontend/popups/Popup.php
r3395509 r3413640 608 608 <span class="ypm-'.esc_attr($floatingStyle).'-floating-button-text" style="'.wp_kses($textStyles, $allowed_html).'">'.esc_attr($popupOptions['ypm-popup-floating-text']).'</span> 609 609 </div>'; 610 611 if (!empty($popupOptions['ypm-popup-floating- enable-hover'])) {610 611 if (!empty($popupOptions['ypm-popup-floating-hover'])) { 612 612 $floatingButton .= '<style> 613 613 .ypm-'.esc_attr($floatingStyle).'-'.esc_attr($position).':hover { 614 614 background: '.esc_attr($popupOptions['ypm-popup-floating-hover-bg-color']).' !important; 615 615 color: '.esc_attr($popupOptions['ypm-popup-floating-hover-text-color']).' !important; 616 border: 1px solid '.esc_attr($popupOptions['ypm-popup-floating-hover-text-color']).' !important; 616 617 } 617 618 </style>'; -
popup-more/trunk/config/config.php
r3402041 r3413640 75 75 require_once(dirname(__FILE__).'/config-pkg.php'); 76 76 77 self::define('YPM_POPUP_VERSION', 2. 59);78 self::define('YPM_POPUP_PRO_VERSION', 4.2 6);77 self::define('YPM_POPUP_VERSION', 2.60); 78 self::define('YPM_POPUP_PRO_VERSION', 4.27); 79 79 80 80 self::define('YPM_POPUP_PRO_URL', 'https://popup-more.com/'); -
popup-more/trunk/popup-more.php
r3402041 r3413640 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.15 * Version: 2.6.0 6 6 * Author: Felix Moira 7 7 * Author URI: -
popup-more/trunk/readme.txt
r3405706 r3413640 146 146 147 147 == Changelog == 148 = 2.5.9.1 = 149 * Fixed change popup theme issue 148 = 2.6.0 = 149 * Added Floadting button hover Background color change 150 * Added Floadting button hover text color change 150 151 151 152 = 2.5.9 =
Note: See TracChangeset
for help on using the changeset viewer.