Plugin Directory

Changeset 2763763


Ignore:
Timestamp:
07/30/2022 08:33:22 AM (4 years ago)
Author:
J4cob
Message:

v2.0.1

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

Legend:

Unmodified
Added
Removed
  • wp-bottom-menu/trunk/inc/customizer/customizer.php

    r2763355 r2763763  
    1 
    21<?php
    32
  • wp-bottom-menu/trunk/readme.txt

    r2763355 r2763763  
    55Requires at least: 5.0
    66Tested up to: 6.0.1
    7 Stable tag: 2.0
     7Stable tag: 2.0.1
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    6868== Changelog ==
    6969
     70== 2.0.1 ==
     71* Fix - headers already sent issue https://wordpress.org/support/topic/error-1671/
     72* Fix - FontAwesome v4.x icons missing
     73
    7074== 2.0 ==
    7175* New - Condition Manager - Now there are settings where you can show WP Bottom Menu on any page or user role you want. Check it 'WP Bottom Menu > Conditions'.
  • wp-bottom-menu/trunk/wp-bottom-menu.php

    r2763355 r2763763  
    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.0
     5 * Version: 2.0.1
    66 * Author: J4
    77 * Author URI: https://hub.liquid-themes.com/
     
    2424if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    2525
    26 define( 'WP_BOTTOM_MENU_VERSION', '2.0' );
     26define( 'WP_BOTTOM_MENU_VERSION', '2.0.1' );
    2727define( 'WP_BOTTOM_MENU_DIR_URL', plugin_dir_url( __FILE__ ) );
    2828define( 'WP_BOTTOM_MENU_DIR_PATH', plugin_dir_path( __FILE__ ) );
     
    192192           
    193193            if ( get_option( 'wpbottommenu_iconset', 'fontawesome' ) == 'fontawesome' ){
    194                 wp_enqueue_style( 'font-awesome', WP_BOTTOM_MENU_DIR_URL . 'inc/customizer-repeater/css/font-awesome.min.css', array(), CUSTOMIZER_REPEATER_VERSION );
     194                wp_enqueue_style( 'font-awesome', WP_BOTTOM_MENU_DIR_URL . 'inc/customizer/customizer-repeater/css/font-awesome.min.css', array(), CUSTOMIZER_REPEATER_VERSION );
    195195            }
    196196            if ( get_option( 'wpbottommenu_iconset', 'fontawesome' ) == 'fontawesome2' ){
     
    310310        </form>
    311311        </div>
    312     <?php endif;       
     312    <?php endif;
    313313       
    314314    }
Note: See TracChangeset for help on using the changeset viewer.