Version Description
- tabs data loss issue resolved
- tabs background css issue reserved
- Invalid argument supplied for foreach issue resolved
- Compatible with wordpress version 5.4.1
Download this release
Release Info
Developer | wpshopmart |
Plugin | Tabs |
Version | 2.0.3 |
Comparing to | |
See all releases |
Code changes from version 2.0.2 to 2.0.3
- ink/admin/add-tabs.php +1 -0
- ink/admin/data-post/tabs-save-data.php +1 -1
- readme.txt +8 -2
- tabs-responsive.php +1 -1
- template/style.php +1 -1
ink/admin/add-tabs.php
CHANGED
@@ -62,6 +62,7 @@
|
|
62 |
{
|
63 |
$tabs_title = $single_data['tabs_title'];
|
64 |
$tabs_desc = $single_data['tabs_desc'];
|
|
|
65 |
$tabs_title_icon = $single_data['tabs_title_icon'];
|
66 |
$enable_single_icon = $single_data['enable_single_icon'];
|
67 |
|
62 |
{
|
63 |
$tabs_title = $single_data['tabs_title'];
|
64 |
$tabs_desc = $single_data['tabs_desc'];
|
65 |
+
$tabs_desc = str_replace('\', '\\', $tabs_desc);
|
66 |
$tabs_title_icon = $single_data['tabs_title_icon'];
|
67 |
$enable_single_icon = $single_data['enable_single_icon'];
|
68 |
|
ink/admin/data-post/tabs-save-data.php
CHANGED
@@ -8,7 +8,7 @@ if(isset($PostID) && isset($_POST['tabs_r_save_data_action']) ) {
|
|
8 |
$tabs_title_icon = sanitize_text_field($_POST['tabs_title_icon'][$i]);
|
9 |
$enable_single_icon = sanitize_text_field($_POST['enable_single_icon'][$i]);
|
10 |
$tabs_desc = stripslashes($_POST['tabs_desc'][$i]);
|
11 |
-
|
12 |
$All_data[] = array(
|
13 |
'tabs_title' => $tabs_title,
|
14 |
'tabs_title_icon' => $tabs_title_icon,
|
8 |
$tabs_title_icon = sanitize_text_field($_POST['tabs_title_icon'][$i]);
|
9 |
$enable_single_icon = sanitize_text_field($_POST['enable_single_icon'][$i]);
|
10 |
$tabs_desc = stripslashes($_POST['tabs_desc'][$i]);
|
11 |
+
$tabs_desc = str_replace('\\', '\', $tabs_desc);
|
12 |
$All_data[] = array(
|
13 |
'tabs_title' => $tabs_title,
|
14 |
'tabs_title_icon' => $tabs_title_icon,
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: wpshopmart
|
|
3 |
Donate link: https://wpshopmart.com/plugins/tabs-pro-plugin/
|
4 |
Tags: tab, tabs, responsive tabs, animation, animated tab, css3 tabs, bootstrap tabs, tabs content, responsive, shortcode, widget, wordpress tabs, wp tabs, accordion, collapse, toggle, bootstrap tab, jquery, tab widget, tab shortcode, jquery tabs, sidebar, plugin, html, html5, html5 tabs
|
5 |
Requires at least: 4.8
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -160,6 +160,12 @@ Please use WordPress support forum to ask any query regarding any issue.
|
|
160 |
|
161 |
== Changelog ==
|
162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
= 2.0.2 =
|
164 |
* added help comment
|
165 |
* Compatible with wordpress version 5.3.2
|
3 |
Donate link: https://wpshopmart.com/plugins/tabs-pro-plugin/
|
4 |
Tags: tab, tabs, responsive tabs, animation, animated tab, css3 tabs, bootstrap tabs, tabs content, responsive, shortcode, widget, wordpress tabs, wp tabs, accordion, collapse, toggle, bootstrap tab, jquery, tab widget, tab shortcode, jquery tabs, sidebar, plugin, html, html5, html5 tabs
|
5 |
Requires at least: 4.8
|
6 |
+
Tested up to: 5.4.1
|
7 |
+
Stable tag: 2.0.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
160 |
|
161 |
== Changelog ==
|
162 |
|
163 |
+
= 2.0.3 =
|
164 |
+
* tabs data loss issue resolved
|
165 |
+
* tabs background css issue reserved
|
166 |
+
* Invalid argument supplied for foreach issue resolved
|
167 |
+
* Compatible with wordpress version 5.4.1
|
168 |
+
|
169 |
= 2.0.2 =
|
170 |
* added help comment
|
171 |
* Compatible with wordpress version 5.3.2
|
tabs-responsive.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Tabs Responsive
|
4 |
-
* Version: 2.0.
|
5 |
* Description: Tabs Responsive is the most easiest drag & drop Tabs builder for WordPress. You can add unlimited Tabs with unlimited color Scheme.
|
6 |
* Author: wpshopmart
|
7 |
* Author URI: https://www.wpshopmart.com
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Tabs Responsive
|
4 |
+
* Version: 2.0.3
|
5 |
* Description: Tabs Responsive is the most easiest drag & drop Tabs builder for WordPress. You can add unlimited Tabs with unlimited color Scheme.
|
6 |
* Author: wpshopmart
|
7 |
* Author URI: https://www.wpshopmart.com
|
template/style.php
CHANGED
@@ -81,7 +81,7 @@ margin-left:5px !important;
|
|
81 |
case "1":
|
82 |
?>
|
83 |
#tab_container_<?php echo $post_id; ?> .wpsm_nav-tabs a{
|
84 |
-
background-image:
|
85 |
background-position: 0 0;
|
86 |
background-repeat: repeat-x;
|
87 |
}
|
81 |
case "1":
|
82 |
?>
|
83 |
#tab_container_<?php echo $post_id; ?> .wpsm_nav-tabs a{
|
84 |
+
background-image: none;
|
85 |
background-position: 0 0;
|
86 |
background-repeat: repeat-x;
|
87 |
}
|