Changeset 3151021
- Timestamp:
- 09/12/2024 05:44:29 PM (17 months ago)
- Location:
- wp-ad-guru/trunk
- Files:
-
- 4 edited
-
modules/content_type_wysiwyg/form.php (modified) (1 diff)
-
modules/modal_popup/modal_popup.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
wp_ad_guru.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-ad-guru/trunk/modules/content_type_wysiwyg/form.php
r2027811 r3151021 13 13 'default' => '', 14 14 'size' => 'large', 15 'settings' => array('editor_height' => '300px'),15 'settings' => array('editor_height' => 300), //Do not use 'px' like '300px', use only integer value. 16 16 '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>', 17 17 ) -
wp-ad-guru/trunk/modules/modal_popup/modal_popup.php
r2875044 r3151021 431 431 $print_content_args = array( 432 432 'wrapper_attributes' => array( 433 'id' => 'adguru_modal_popup_content '.$ad->ID,433 'id' => 'adguru_modal_popup_content_'.$ad->ID, 434 434 'class' => 'mp-content mp-content-'.$ad->content_type, 435 435 'popup-id' => $ad->ID … … 631 631 #CONTENT 632 632 $rules['content']['overflow'] = ( isset($sizing['enable_scrollbar']) && $sizing['enable_scrollbar'] == 1 ) ? 'auto' : 'hidden'; 633 $rules['content']['height'] = '100%'; 633 634 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. 634 635 { … … 857 858 $rules['container-wrap']['bottom'] = $container_bottom.'px'; 858 859 } 859 elseif( $location == 'bot om_right' )860 elseif( $location == 'bottom_right' ) 860 861 { 861 862 $container_right = ( isset( $position['right'] ) ) ? $position['right'] : 0; -
wp-ad-guru/trunk/readme.txt
r3091789 r3151021 8 8 Tags: Ad Manager, Popup maker, Ad Inserter, Ad Rotator, Ad Slider 9 9 Requires at least: 3.6.0 10 Tested up to: 6. 5.311 Stable tag: 2.5. 310 Tested up to: 6.6.2 11 Stable tag: 2.5.4 12 12 License: GPLv2+ 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 202 202 203 203 == 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 204 209 = 2.5.3 - May 24, 2024 = 205 210 * Fix: PHP deprecation notices. … … 253 258 254 259 == 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 255 265 = 2.5.3 - May 24, 2024 = 256 266 * Fix: PHP deprecation notices. -
wp-ad-guru/trunk/wp_ad_guru.php
r3091780 r3151021 6 6 * Author: oneTarek 7 7 * Author URI: http://onetarek.com 8 * Version: 2.5. 38 * Version: 2.5.4 9 9 * License: GPLv2+ 10 10 * License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 297 297 global $wpdb; 298 298 global $adguru_options; 299 define( 'ADGURU_VERSION', '2.5. 3' );299 define( 'ADGURU_VERSION', '2.5.4' ); 300 300 define( 'ADGURU_DOCUMENTAION_URL', 'http://wpadguru.com/documentation/' ); 301 301 define( 'ADGURU_PLUGIN_FILE', __FILE__ );
Note: See TracChangeset
for help on using the changeset viewer.