Changeset 2440064
- Timestamp:
- 12/15/2020 05:59:47 PM (5 years ago)
- Location:
- cowidgets-elementor-addons/trunk
- Files:
-
- 3 edited
-
cowidgets.php (modified) (1 diff)
-
inc/widgets-manager/widgets/header/class-navigation-menu.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cowidgets-elementor-addons/trunk/cowidgets.php
r2433404 r2440064 8 8 * Text Domain: cowidgets 9 9 * Domain Path: /languages 10 * Version: 1.0. 510 * Version: 1.0.6 11 11 * 12 12 * @package cowidgets 13 13 */ 14 14 15 define( 'COWIDGETS_VER', '1.0. 5' );15 define( 'COWIDGETS_VER', '1.0.6' ); 16 16 define( 'COWIDGETS_DIR', plugin_dir_path( __FILE__ ) ); 17 17 define( 'COWIDGETS_URL', plugins_url( '/', __FILE__ ) ); -
cowidgets-elementor-addons/trunk/inc/widgets-manager/widgets/header/class-navigation-menu.php
r2433404 r2440064 1825 1825 <div class="ce-nav-menu__toggle elementor-clickable ce-flyout-trigger" tabindex="0"> 1826 1826 <div class="ce-nav-menu-icon"> 1827 <?php var_dump( $settings['dropdown_icon']['library'] );if( $settings['dropdown_icon']['library'] != 'svg' ){ ?>1827 <?php if( $settings['dropdown_icon']['library'] != 'svg' ){ ?> 1828 1828 <?php if ( $this->is_elementor_updated() ) { ?> 1829 1829 <i class="<?php echo esc_attr( $settings['dropdown_icon']['value'] ); ?>" aria-hidden="true" tabindex="0"></i> … … 1846 1846 <nav <?php echo wp_kses_post( $this->get_render_attribute_string( 'ce-nav-menu' ) ); ?>><?php echo $menu_html; ?></nav> 1847 1847 <div class="elementor-clickable ce-flyout-close" tabindex="0"> 1848 <?php var_dump( $settings['dropdown_icon']['library'] );if( $settings['dropdown_icon']['library'] != 'svg' ){ ?>1848 <?php if( $settings['dropdown_icon']['library'] != 'svg' ){ ?> 1849 1849 <?php if ( $this->is_elementor_updated() ) { ?> 1850 1850 <i class="<?php echo esc_attr( $settings['dropdown_close_icon']['value'] ); ?>" aria-hidden="true" tabindex="0"></i> -
cowidgets-elementor-addons/trunk/readme.txt
r2433404 r2440064 5 5 Requires PHP: 5.6 6 6 Tested up to: 5.5.1 7 Stable tag: 1.0. 47 Stable tag: 1.0.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 = 1.0.6 = 90 * Fixed: Nav Menu var-dump issue 91 89 92 = 1.0.5 = 90 93 * Fixed: Nav Menu Menu trigger buttons, svg upload fixed
Note: See TracChangeset
for help on using the changeset viewer.