Plugin Directory

Changeset 3023196


Ignore:
Timestamp:
01/17/2024 10:35:27 PM (2 years ago)
Author:
J4cob
Message:

v2.2.3

Location:
wp-bottom-menu
Files:
53 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-bottom-menu/trunk/readme.txt

    r3023137 r3023196  
    55Requires at least: 5.0
    66Tested up to: 6.4.2
    7 Stable tag: 2.2.2
     7Stable tag: 2.2.3
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    104104== Changelog ==
    105105
     106= 2.2.3 =
     107* Fix - JavaScript OnClick Menu item is not working.
     108
    106109= 2.2.2 =
    107110* New - Polylang Support
  • wp-bottom-menu/trunk/wp-bottom-menu.php

    r3023137 r3023196  
    33 * Plugin Name: WP Bottom Menu
    44 * Description: WP Bottom Menu allows you to add a woocommerce supported bottom menu to your site.
    5  * Version: 2.2.2
     5 * Version: 2.2.3
    66 * Author: J4 & LiquidThemes
    77 * Author URI: https://hub.liquid-themes.com/
     
    2424if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    2525
    26 define( 'WP_BOTTOM_MENU_VERSION', '2.2.2' );
     26define( 'WP_BOTTOM_MENU_VERSION', '2.2.3' );
    2727define( 'WP_BOTTOM_MENU_DIR_URL', plugin_dir_url( __FILE__ ) );
    2828define( 'WP_BOTTOM_MENU_DIR_PATH', plugin_dir_path( __FILE__ ) );
     
    245245            <?php elseif ( $repeater_item->choice == "wpbm-onclick" ): ?>
    246246                <?php $tag = 'div'; ?>
    247                 <<?php echo $tag; ?> onclick="<?php echo esc_js( $repeater_item->text ); ?>" title="<?php echo esc_attr( $repeater_item->title ); ?>" class="wp-bottom-menu-item">
     247                <<?php echo $tag; ?> onclick="<?php echo $repeater_item->text; ?>" title="<?php echo esc_attr( $repeater_item->title ); ?>" class="wp-bottom-menu-item">
    248248            <?php else: ?>
    249249                <?php
Note: See TracChangeset for help on using the changeset viewer.