Version Description
- Add donation link
Download this release
Release Info
Developer | wpshopmart |
Plugin | Tabs |
Version | 1.6.6 |
Comparing to | |
See all releases |
Code changes from version 1.6.5 to 1.6.6
- assets/images/donate-1.jpg +0 -0
- assets/images/donate-b.png +0 -0
- assets/images/donate-button.png +0 -0
- ink/admin/menu.php +38 -7
- readme.txt +5 -2
- tabs-responsive.php +1 -1
assets/images/donate-1.jpg
ADDED
Binary file
|
assets/images/donate-b.png
ADDED
Binary file
|
assets/images/donate-button.png
ADDED
Binary file
|
ink/admin/menu.php
CHANGED
@@ -91,6 +91,7 @@ class wpsm_tabs_r {
|
|
91 |
public function wpsm_tabs_r_meta_boxes_group(){
|
92 |
add_meta_box('tabs_r_add', __('Add Tabs Panel', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_add_tabs_r_meta_box_function'), 'tabs_responsive', 'normal', 'low' );
|
93 |
add_meta_box ('tabs_r_shortcode', __('Tabs Shortcode', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_pic_tabs_r_shortcode'), 'tabs_responsive', 'normal', 'low');
|
|
|
94 |
add_meta_box('tabs_r_rateus', __('Rate Us If You Like This Plugin', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_tabs_r_rateus_meta_box_function'), 'tabs_responsive', 'side', 'low');
|
95 |
add_meta_box('tabs_r_setting', __('Tabs Settings', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_add_tabs_r_setting_meta_box_function'), 'tabs_responsive', 'side', 'low');
|
96 |
}
|
@@ -161,18 +162,49 @@ class wpsm_tabs_r {
|
|
161 |
<?php
|
162 |
}
|
163 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
public function wpsm_tabs_r_rateus_meta_box_function(){
|
165 |
?>
|
166 |
<style>
|
167 |
#tabs_r_rateus{
|
168 |
-
background
|
|
|
169 |
}
|
170 |
#tabs_r_rateus .hndle , #tabs_r_rateus .handlediv{
|
171 |
display:none;
|
172 |
}
|
173 |
#tabs_r_rateus h1{
|
174 |
color:#fff;
|
175 |
-
|
176 |
}
|
177 |
#tabs_r_rateus h3 {
|
178 |
color:#fff;
|
@@ -190,17 +222,16 @@ class wpsm_tabs_r {
|
|
190 |
width: 40px;
|
191 |
height: 40px;
|
192 |
font-size:20px;
|
193 |
-
color : #
|
194 |
}
|
195 |
.wpsm-rate-us span.dashicons-star-filled:before {
|
196 |
content: "\f155";
|
197 |
font-size: 40px;
|
198 |
}
|
199 |
</style>
|
200 |
-
<h1>Rate
|
201 |
-
<
|
202 |
-
<a href="https://wordpress.org/
|
203 |
-
<a class="wpsm-rate-us" style=" text-decoration: none; height: 40px; width: 40px;" href="https://wordpress.org/plugins/responsive-accordion-and-collapse/" target="_blank">
|
204 |
<span class="dashicons dashicons-star-filled"></span>
|
205 |
<span class="dashicons dashicons-star-filled"></span>
|
206 |
<span class="dashicons dashicons-star-filled"></span>
|
91 |
public function wpsm_tabs_r_meta_boxes_group(){
|
92 |
add_meta_box('tabs_r_add', __('Add Tabs Panel', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_add_tabs_r_meta_box_function'), 'tabs_responsive', 'normal', 'low' );
|
93 |
add_meta_box ('tabs_r_shortcode', __('Tabs Shortcode', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_pic_tabs_r_shortcode'), 'tabs_responsive', 'normal', 'low');
|
94 |
+
add_meta_box('tabs_r_donate', __('Donate Us', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_tabs_r_donate_meta_box_function'), 'tabs_responsive', 'side', 'low');
|
95 |
add_meta_box('tabs_r_rateus', __('Rate Us If You Like This Plugin', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_tabs_r_rateus_meta_box_function'), 'tabs_responsive', 'side', 'low');
|
96 |
add_meta_box('tabs_r_setting', __('Tabs Settings', wpshopmart_tabs_r_text_domain), array(&$this, 'wpsm_add_tabs_r_setting_meta_box_function'), 'tabs_responsive', 'side', 'low');
|
97 |
}
|
162 |
<?php
|
163 |
}
|
164 |
|
165 |
+
public function wpsm_tabs_r_donate_meta_box_function(){
|
166 |
+
?>
|
167 |
+
<style>
|
168 |
+
#tabs_r_donate{
|
169 |
+
background:transparent;
|
170 |
+
text-align:center;
|
171 |
+
box-shadow:none;
|
172 |
+
}
|
173 |
+
#tabs_r_donate .hndle , #tabs_r_donate .handlediv{
|
174 |
+
display:none;
|
175 |
+
}
|
176 |
+
|
177 |
+
a, a:focus{
|
178 |
+
box-shadow:none;
|
179 |
+
text-decoration:none;
|
180 |
+
}
|
181 |
+
#tabs_r_donate h3 {
|
182 |
+
margin-bottom:0;
|
183 |
+
margin-top:3px;
|
184 |
+
padding:0px;
|
185 |
+
}
|
186 |
+
|
187 |
+
</style>
|
188 |
+
<a href="http://wpshopmart.com/members/signup/tabs-responsive-donation" target="_blank" >
|
189 |
+
<img src="<?php echo wpshopmart_tabs_r_directory_url.'assets/images/donate-1.jpg'; ?>" style="width:100%;height:auto"/>
|
190 |
+
<h3> We Need Your Support</h3>
|
191 |
+
<img src="<?php echo wpshopmart_tabs_r_directory_url.'assets/images/donate-button.png'; ?>" style="width:100%;height:auto"/>
|
192 |
+
</a>
|
193 |
+
<?php
|
194 |
+
}
|
195 |
public function wpsm_tabs_r_rateus_meta_box_function(){
|
196 |
?>
|
197 |
<style>
|
198 |
#tabs_r_rateus{
|
199 |
+
background:#31a3dd;
|
200 |
+
text-align:center;
|
201 |
}
|
202 |
#tabs_r_rateus .hndle , #tabs_r_rateus .handlediv{
|
203 |
display:none;
|
204 |
}
|
205 |
#tabs_r_rateus h1{
|
206 |
color:#fff;
|
207 |
+
margin-bottom:10px;
|
208 |
}
|
209 |
#tabs_r_rateus h3 {
|
210 |
color:#fff;
|
222 |
width: 40px;
|
223 |
height: 40px;
|
224 |
font-size:20px;
|
225 |
+
color : #fff !important;
|
226 |
}
|
227 |
.wpsm-rate-us span.dashicons-star-filled:before {
|
228 |
content: "\f155";
|
229 |
font-size: 40px;
|
230 |
}
|
231 |
</style>
|
232 |
+
<h1>Rate This plugin</h1>
|
233 |
+
<a href="https://wordpress.org/support/plugin/tabs-responsive/reviews/?filter=5" target="_blank" class="button button-primary button-hero ">RATE HERE</a>
|
234 |
+
<a class="wpsm-rate-us" style=" text-decoration: none; height: 40px; width: 40px;" href="https://wordpress.org/support/plugin/tabs-responsive/reviews/?filter=5" target="_blank">
|
|
|
235 |
<span class="dashicons dashicons-star-filled"></span>
|
236 |
<span class="dashicons dashicons-star-filled"></span>
|
237 |
<span class="dashicons dashicons-star-filled"></span>
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Tabs Responsive ===
|
2 |
Contributors: wpshopmart
|
3 |
-
Donate link: http://
|
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: 3.3
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 1.6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -109,6 +109,9 @@ Please use WordPress support forum to ask any query regarding any issue.
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
112 |
= 1.6.5 =
|
113 |
* Compatible with wordpress 4.7 version
|
114 |
|
1 |
=== Tabs Responsive ===
|
2 |
Contributors: wpshopmart
|
3 |
+
Donate link: http://wpshopmart.com/members/signup/tabs-responsive-donation
|
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: 3.3
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 1.6.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 1.6.6 =
|
113 |
+
* Add donation link
|
114 |
+
|
115 |
= 1.6.5 =
|
116 |
* Compatible with wordpress 4.7 version
|
117 |
|
tabs-responsive.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Tabs Responsive
|
4 |
-
* Version: 1.6.
|
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: http://www.wpshopmart.com
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Tabs Responsive
|
4 |
+
* Version: 1.6.6
|
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: http://www.wpshopmart.com
|