Changeset 3287994
- Timestamp:
- 05/05/2025 06:17:37 PM (11 months ago)
- Location:
- wp-bottom-menu/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wp-bottom-menu.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-bottom-menu/trunk/readme.txt
r3283599 r3287994 4 4 Tags: bottom menu,mobile menu 5 5 Requires at least: 5.0 6 Tested up to: 6.8 7 Stable tag: 2.2. 36 Tested up to: 6.8.1 7 Stable tag: 2.2.4 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later -
wp-bottom-menu/trunk/wp-bottom-menu.php
r3023196 r3287994 3 3 * Plugin Name: WP Bottom Menu 4 4 * Description: WP Bottom Menu allows you to add a woocommerce supported bottom menu to your site. 5 * Version: 2.2. 35 * Version: 2.2.4 6 6 * Author: J4 & LiquidThemes 7 7 * Author URI: https://hub.liquid-themes.com/ … … 24 24 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 25 25 26 define( 'WP_BOTTOM_MENU_VERSION', '2.2. 3' );26 define( 'WP_BOTTOM_MENU_VERSION', '2.2.4' ); 27 27 define( 'WP_BOTTOM_MENU_DIR_URL', plugin_dir_url( __FILE__ ) ); 28 28 define( 'WP_BOTTOM_MENU_DIR_PATH', plugin_dir_path( __FILE__ ) ); … … 114 114 'options-general.php', 'WP Bottom Menu', 'WP Bottom Menu', 'manage_options', 'wp-bottom-menu', 115 115 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>'; 117 117 } 118 118 ); … … 162 162 foreach ( $customizer_repeater_wpbm_decoded as $repeater_item ) { 163 163 pll_register_string( 'Menu Item', $repeater_item->title, 'WP Bottom Menu' ); 164 pll_register_string( 'Menu Link', $repeater_item->link, 'WP Bottom Menu' ); 164 165 } 165 166 } … … 276 277 break; 277 278 default: 278 $wpbm_item_url = esc_url( $ repeater_item->link);279 $wpbm_item_url = esc_url( $this->translated_menu_title($repeater_item->link) ); 279 280 } 280 281
Note: See TracChangeset
for help on using the changeset viewer.