Plugin Directory

Changeset 2827503


Ignore:
Timestamp:
12/02/2022 07:34:39 AM (3 years ago)
Author:
J4cob
Message:

v2.1.3

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

Legend:

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

    r2826972 r2827503  
    44Tags: bottom menu,mobile menu
    55Requires at least: 5.0
    6 Tested up to: 6.1
    7 Stable tag: 2.1.2
     6Tested up to: 6.1.1
     7Stable tag: 2.1.3
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    9292== Changelog ==
    9393
     94= 2.1.3 =
     95* Fix - Dynamic Account Name not visible on frontend.
     96
    9497= 2.1.2 =
    9598* New - Dynamic Account Name - Added a setting where you can show the account name. Check it 'WP Bottom Menu > Customize > Show Account Name'
  • wp-bottom-menu/trunk/wp-bottom-menu.php

    r2826972 r2827503  
    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.1.2
     5 * Version: 2.1.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.1.2' );
     26define( 'WP_BOTTOM_MENU_VERSION', '2.1.3' );
    2727define( 'WP_BOTTOM_MENU_DIR_URL', plugin_dir_url( __FILE__ ) );
    2828define( 'WP_BOTTOM_MENU_DIR_PATH', plugin_dir_path( __FILE__ ) );
     
    311311                        <?php if( get_option( 'wpbottommenu_show_cart_total', false ) && $repeater_item->choice == "wpbm-woo-cart" && class_exists( 'WooCommerce' ) ): ?>
    312312                            <span class="wp-bottom-menu-cart-total"><?php WC()->cart->get_cart_total(); ?></span>
    313                         <?php elseif( get_option( 'wpbottommenu_show_account_name', false ) === true && $repeater_item->choice == "wpbm-woo-account" && class_exists( 'WooCommerce' ) ): ?>
     313                        <?php elseif( get_option( 'wpbottommenu_show_account_name' ) && $repeater_item->choice == "wpbm-woo-account" && class_exists( 'WooCommerce' ) ): ?>
    314314                            <?php echo wp_get_current_user()->first_name ? wp_get_current_user()->first_name : wp_get_current_user()->user_login; ?>
    315315                        <?php else: ?>
Note: See TracChangeset for help on using the changeset viewer.