WP Mobile Menu - Version 2.8.1.8.1

Version Description

  • Fix! - Remove piece of premium option
Download this release

Release Info

Developer takanakui
Plugin Icon 128x128 WP Mobile Menu
Version 2.8.1.8.1
Comparing to
See all releases

Code changes from version 2.8.1.8 to 2.8.1.8.1

includes/class-wp-mobile-menu-options.php CHANGED
@@ -1181,65 +1181,6 @@ class WP_Mobile_Menu_Options
1181
  'font-family' => 'Dosis',
1182
  ),
1183
  ) );
1184
- $right_menu_tab->createOption( array(
1185
- 'name' => __( 'Tabs options', 'mobile-menu' ),
1186
- 'type' => 'heading',
1187
- ) );
1188
- // Right Panel tabbed menus.
1189
- $right_menu_tab->createOption( array(
1190
- 'name' => __( 'Tabbed menus on the Panel', 'mobile-menu' ),
1191
- 'id' => 'right_menu_tabbed_menus',
1192
- 'type' => 'enable',
1193
- 'default' => false,
1194
- 'desc' => __( 'Choose if you want to open the submenu by click in the Parent Menu item.', 'mobile-menu' ),
1195
- 'enabled' => __( 'Yes', 'mobile-menu' ),
1196
- 'disabled' => __( 'No', 'mobile-menu' ),
1197
- ) );
1198
- // Right Tab Title 1.
1199
- $right_menu_tab->createOption( array(
1200
- 'name' => __( 'Tab Title 1', 'mobile-menu' ),
1201
- 'id' => 'right_tab_title_1',
1202
- 'type' => 'text',
1203
- 'desc' => __( 'Enter the title of the Tab 1.', 'mobile-menu' ),
1204
- 'default' => '',
1205
- ) );
1206
- // Right Menu Tab 1.
1207
- $right_menu_tab->createOption( array(
1208
- 'name' => __( 'Menu Tab 1', 'mobile-menu' ),
1209
- 'id' => 'right_menu_tab_1',
1210
- 'type' => 'select',
1211
- 'desc' => __( 'Select the menu that will open in the left side.', 'mobile-menu' ),
1212
- 'options' => $menus_options,
1213
- 'default' => $titan->getOption( 'left_menu' ),
1214
- ) );
1215
- // Right Tab Title 2.
1216
- $right_menu_tab->createOption( array(
1217
- 'name' => __( 'Tab Title 2', 'mobile-menu' ),
1218
- 'id' => 'right_tab_title_2',
1219
- 'type' => 'text',
1220
- 'desc' => __( 'Enter the title of the Tab 2.', 'mobile-menu' ),
1221
- 'default' => '',
1222
- ) );
1223
- // Right Menu Tab 2.
1224
- $right_menu_tab->createOption( array(
1225
- 'name' => __( 'Menu Tab 2', 'mobile-menu' ),
1226
- 'id' => 'right_menu_tab_2',
1227
- 'type' => 'select',
1228
- 'desc' => __( 'Select the menu that will open in the left side.', 'mobile-menu' ),
1229
- 'options' => $menus_options,
1230
- 'default' => $titan->getOption( 'left_menu' ),
1231
- ) );
1232
- // Right Menu Tab Margin top.
1233
- $right_menu_tab->createOption( array(
1234
- 'name' => __( 'Tab Margin top', 'mobile-menu' ),
1235
- 'id' => 'right_menu_tab_margin_top',
1236
- 'type' => 'number',
1237
- 'desc' => __( 'Enter the Tab Margin top. This is will position the sliding menus when used.', 'mobile-menu' ),
1238
- 'default' => '0',
1239
- 'max' => '500',
1240
- 'min' => '0',
1241
- 'unit' => 'px',
1242
- ) );
1243
  // Header Left Menu Section.
1244
  $colors_tab->createOption( array(
1245
  'name' => __( 'General', 'mobile-menu' ),
1181
  'font-family' => 'Dosis',
1182
  ),
1183
  ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1184
  // Header Left Menu Section.
1185
  $colors_tab->createOption( array(
1186
  'name' => __( 'General', 'mobile-menu' ),
mobmenu.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Mobile Menu
5
  * Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
6
- * Version: 2.8.1.8
7
  * Plugin URI: https://www.wpmobilemenu.com/
8
  * Author: Rui Guerreiro
9
  * Author URI: https://www.jedipress.com/
@@ -16,7 +16,7 @@
16
  if ( !defined( 'ABSPATH' ) ) {
17
  die;
18
  }
19
- define( 'WP_MOBILE_MENU_VERSION', '2.8.1.8' );
20
  define( 'WP_MOBILE_MENU_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
21
  define( 'WP_MOBILE_MENU_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
22
  if ( !class_exists( 'WP_Mobile_Menu' ) ) {
3
  /**
4
  * Plugin Name: Mobile Menu
5
  * Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
6
+ * Version: 2.8.1.8.1
7
  * Plugin URI: https://www.wpmobilemenu.com/
8
  * Author: Rui Guerreiro
9
  * Author URI: https://www.jedipress.com/
16
  if ( !defined( 'ABSPATH' ) ) {
17
  die;
18
  }
19
+ define( 'WP_MOBILE_MENU_VERSION', '2.8.1.8.1' );
20
  define( 'WP_MOBILE_MENU_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
21
  define( 'WP_MOBILE_MENU_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
22
  if ( !class_exists( 'WP_Mobile_Menu' ) ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ link: http://profiles.wordpress.org/takanakui
4
  Tags: mobile, navigation, responsive, menu, responsive menu, mobile menu, tablet menu, hamburger menu, hamburger, wordpress responsive menu, wordpress mobile menu, canvas menu
5
  Requires at least: 4.4
6
  Tested up to: 5.6
7
- Stable tag: 2.8.1.8
8
  Requires PHP: 5.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -132,6 +132,9 @@ Not available at the moment
132
 
133
  == Changelog ==
134
 
 
 
 
135
  = 2.8.1.8 =
136
  * Fix! - 403 error when quick editing
137
  * Fix! - Visual tool fix
4
  Tags: mobile, navigation, responsive, menu, responsive menu, mobile menu, tablet menu, hamburger menu, hamburger, wordpress responsive menu, wordpress mobile menu, canvas menu
5
  Requires at least: 4.4
6
  Tested up to: 5.6
7
+ Stable tag: 2.8.1.8.1
8
  Requires PHP: 5.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
132
 
133
  == Changelog ==
134
 
135
+ = 2.8.1.8.1 =
136
+ * Fix! - Remove piece of premium option
137
+
138
  = 2.8.1.8 =
139
  * Fix! - 403 error when quick editing
140
  * Fix! - Visual tool fix