Plugin Directory

Changeset 3287994


Ignore:
Timestamp:
05/05/2025 06:17:37 PM (11 months ago)
Author:
J4cob
Message:

v2.2.4

Location:
wp-bottom-menu/trunk
Files:
2 edited

Legend:

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

    r3283599 r3287994  
    44Tags: bottom menu,mobile menu
    55Requires at least: 5.0
    6 Tested up to: 6.8
    7 Stable tag: 2.2.3
     6Tested up to: 6.8.1
     7Stable tag: 2.2.4
    88Requires PHP: 5.6
    99License: GPLv2 or later
  • wp-bottom-menu/trunk/wp-bottom-menu.php

    r3023196 r3287994  
    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.3
     5 * Version: 2.2.4
    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.3' );
     26define( 'WP_BOTTOM_MENU_VERSION', '2.2.4' );
    2727define( 'WP_BOTTOM_MENU_DIR_URL', plugin_dir_url( __FILE__ ) );
    2828define( 'WP_BOTTOM_MENU_DIR_PATH', plugin_dir_path( __FILE__ ) );
     
    114114                'options-general.php', 'WP Bottom Menu', 'WP Bottom Menu', 'manage_options', 'wp-bottom-menu',
    115115                function(){
    116                     wp_redirect( admin_url( 'customize.php?autofocus[panel]=wpbottommenu_panel' ) );
     116                    echo '<script>window.location.href = "' . admin_url( 'customize.php?autofocus[panel]=wpbottommenu_panel' ) . '";</script>';
    117117                }
    118118            );
     
    162162                foreach ( $customizer_repeater_wpbm_decoded as $repeater_item ) {
    163163                    pll_register_string( 'Menu Item', $repeater_item->title, 'WP Bottom Menu' );
     164                    pll_register_string( 'Menu Link', $repeater_item->link, 'WP Bottom Menu' );
    164165                }
    165166            }
     
    276277                        break;
    277278                        default:
    278                             $wpbm_item_url = esc_url( $repeater_item->link );
     279                            $wpbm_item_url = esc_url( $this->translated_menu_title($repeater_item->link) );
    279280                    }
    280281
Note: See TracChangeset for help on using the changeset viewer.