Plugin Directory

Changeset 2440064


Ignore:
Timestamp:
12/15/2020 05:59:47 PM (5 years ago)
Author:
codelessthemes
Message:

fixed: var-dump issue on nav menu

Location:
cowidgets-elementor-addons/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cowidgets-elementor-addons/trunk/cowidgets.php

    r2433404 r2440064  
    88 * Text Domain: cowidgets
    99 * Domain Path: /languages
    10  * Version: 1.0.5
     10 * Version: 1.0.6
    1111 *
    1212 * @package         cowidgets
    1313 */
    1414
    15 define( 'COWIDGETS_VER', '1.0.5' );
     15define( 'COWIDGETS_VER', '1.0.6' );
    1616define( 'COWIDGETS_DIR', plugin_dir_path( __FILE__ ) );
    1717define( 'COWIDGETS_URL', plugins_url( '/', __FILE__ ) );
  • cowidgets-elementor-addons/trunk/inc/widgets-manager/widgets/header/class-navigation-menu.php

    r2433404 r2440064  
    18251825            <div class="ce-nav-menu__toggle elementor-clickable ce-flyout-trigger" tabindex="0">
    18261826                    <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' ){ ?> 
    18281828                            <?php if ( $this->is_elementor_updated() ) { ?>
    18291829                                <i class="<?php echo esc_attr( $settings['dropdown_icon']['value'] ); ?>" aria-hidden="true" tabindex="0"></i>
     
    18461846                            <nav <?php echo wp_kses_post( $this->get_render_attribute_string( 'ce-nav-menu' ) ); ?>><?php echo $menu_html; ?></nav>
    18471847                            <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' ){ ?> 
    18491849                                    <?php if ( $this->is_elementor_updated() ) { ?>
    18501850                                        <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  
    55Requires PHP: 5.6
    66Tested up to: 5.5.1
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8787== Changelog ==
    8888
     89= 1.0.6 =
     90* Fixed: Nav Menu var-dump issue
     91
    8992= 1.0.5 =
    9093* Fixed: Nav Menu Menu trigger buttons, svg upload fixed
Note: See TracChangeset for help on using the changeset viewer.