Plugin Directory

Changeset 3413640


Ignore:
Timestamp:
12/07/2025 05:33:34 PM (3 months ago)
Author:
devfelixmoira
Message:

Added new version

Location:
popup-more/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • popup-more/trunk/assets/view/metaboxes/floatingButton.php

    r3044604 r3413640  
    9898        </div>
    9999    </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
    100137    <div class="row ypm-margin-bottom-15">
    101138        <div class="col-md-6">
  • popup-more/trunk/classes/frontend/popups/Popup.php

    r3395509 r3413640  
    608608                <span class="ypm-'.esc_attr($floatingStyle).'-floating-button-text" style="'.wp_kses($textStyles, $allowed_html).'">'.esc_attr($popupOptions['ypm-popup-floating-text']).'</span>
    609609            </div>';
    610            
    611         if (!empty($popupOptions['ypm-popup-floating-enable-hover'])) {
     610
     611        if (!empty($popupOptions['ypm-popup-floating-hover'])) {
    612612            $floatingButton .= '<style>
    613613            .ypm-'.esc_attr($floatingStyle).'-'.esc_attr($position).':hover {
    614614                background: '.esc_attr($popupOptions['ypm-popup-floating-hover-bg-color']).' !important;
    615615                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;
    616617            }           
    617618            </style>';
  • popup-more/trunk/config/config.php

    r3402041 r3413640  
    7575        require_once(dirname(__FILE__).'/config-pkg.php');
    7676
    77         self::define('YPM_POPUP_VERSION', 2.59);
    78         self::define('YPM_POPUP_PRO_VERSION', 4.26);
     77        self::define('YPM_POPUP_VERSION', 2.60);
     78        self::define('YPM_POPUP_PRO_VERSION', 4.27);
    7979
    8080        self::define('YPM_POPUP_PRO_URL', 'https://popup-more.com/');
  • popup-more/trunk/popup-more.php

    r3402041 r3413640  
    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.9.1
     5 * Version: 2.6.0
    66 * Author: Felix Moira
    77 * Author URI:
  • popup-more/trunk/readme.txt

    r3405706 r3413640  
    146146
    147147== 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
    150151
    151152= 2.5.9 =
Note: See TracChangeset for help on using the changeset viewer.