Plugin Directory

Changeset 3151021


Ignore:
Timestamp:
09/12/2024 05:44:29 PM (17 months ago)
Author:
onetarek
Message:

Adding Version 2.5.4

Location:
wp-ad-guru/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-ad-guru/trunk/modules/content_type_wysiwyg/form.php

    r2027811 r3151021  
    1313            'default' => '',
    1414            'size' => 'large',
    15             'settings' => array('editor_height' => '300px'),
     15            'settings' => array('editor_height' => 300), //Do not use 'px' like '300px', use only integer value.
    1616            'desc' => 'You can use <a href="https://codex.wordpress.org/Shortcode_API" target="_blank">Shortcodes</a> and <a href="https://codex.wordpress.org/Embeds" target="_blank">Embeds</a>',
    1717        )
  • wp-ad-guru/trunk/modules/modal_popup/modal_popup.php

    r2875044 r3151021  
    431431        $print_content_args = array(
    432432            'wrapper_attributes' => array(
    433                 'id' => 'adguru_modal_popup_content'.$ad->ID,
     433                'id' => 'adguru_modal_popup_content_'.$ad->ID,
    434434                'class' => 'mp-content mp-content-'.$ad->content_type,
    435435                'popup-id' => $ad->ID
     
    631631        #CONTENT
    632632        $rules['content']['overflow'] = ( isset($sizing['enable_scrollbar']) && $sizing['enable_scrollbar'] == 1 ) ? 'auto' : 'hidden';
     633        $rules['content']['height'] = '100%';
    633634        if( $container_max_height != 0 && $container_max_height_unit == 'px' )//for container_max_height_unit == '%' will do nothing here. We will assign the rule using JS.
    634635        {
     
    857858            $rules['container-wrap']['bottom'] = $container_bottom.'px';
    858859        }
    859         elseif( $location == 'botom_right' )
     860        elseif( $location == 'bottom_right' )
    860861        {
    861862            $container_right = ( isset( $position['right'] ) ) ? $position['right'] : 0;
  • wp-ad-guru/trunk/readme.txt

    r3091789 r3151021  
    88Tags: Ad Manager, Popup maker, Ad Inserter, Ad Rotator, Ad Slider
    99Requires at least: 3.6.0
    10 Tested up to: 6.5.3
    11 Stable tag: 2.5.3
     10Tested up to: 6.6.2
     11Stable tag: 2.5.4
    1212License: GPLv2+
    1313License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    202202
    203203== Changelog ==
     204= 2.5.4 - September 12, 2024 =
     205* Fix: WYSIWYG editor default height issue.
     206* Fix: Modal popup bottom right position issue.
     207* Fix: Modal popup content scrollbar issue.
     208
    204209= 2.5.3 - May 24, 2024 =
    205210* Fix: PHP deprecation notices.
     
    253258
    254259== Upgrade Notice ==
     260= 2.5.4 - September 12, 2024 =
     261* Fix: WYSIWYG editor default height issue.
     262* Fix: Modal popup bottom right position issue.
     263* Fix: Modal popup content scrollbar issue.
     264
    255265= 2.5.3 - May 24, 2024 =
    256266* Fix: PHP deprecation notices.
  • wp-ad-guru/trunk/wp_ad_guru.php

    r3091780 r3151021  
    66 * Author: oneTarek
    77 * Author URI: http://onetarek.com
    8  * Version: 2.5.3
     8 * Version: 2.5.4
    99 * License: GPLv2+
    1010 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    297297        global $wpdb;
    298298        global $adguru_options;
    299         define( 'ADGURU_VERSION', '2.5.3' );
     299        define( 'ADGURU_VERSION', '2.5.4' );
    300300        define( 'ADGURU_DOCUMENTAION_URL', 'http://wpadguru.com/documentation/' );
    301301        define( 'ADGURU_PLUGIN_FILE', __FILE__ );
Note: See TracChangeset for help on using the changeset viewer.