Version Description
- Compatible with wordpress version 4.9.8
Download this release
Release Info
Developer | wpshopmart |
Plugin | Tabs |
Version | 1.8.6 |
Comparing to | |
See all releases |
Code changes from version 1.8.5 to 1.8.6
- assets/css/settings.css +52 -0
- assets/images/tab-intro.jpg +0 -0
- ink/admin/fvp.php +134 -0
- ink/install/installation.php +92 -67
- readme.txt +5 -2
- tabs-responsive.php +11 -2
assets/css/settings.css
CHANGED
@@ -197,4 +197,56 @@ border-bottom: 5px solid #F1F1F1;
|
|
197 |
}
|
198 |
.wp-picker-container, .wp-picker-container:active{
|
199 |
display:block;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
}
|
197 |
}
|
198 |
.wp-picker-container, .wp-picker-container:active{
|
199 |
display:block;
|
200 |
+
}
|
201 |
+
|
202 |
+
/* free vs pro table */
|
203 |
+
|
204 |
+
#free_pro .free-pro-table {
|
205 |
+
border-spacing: 0;
|
206 |
+
width: 100%;
|
207 |
+
}
|
208 |
+
|
209 |
+
#free_pro .free-pro-table th {
|
210 |
+
padding-bottom: 20px;
|
211 |
+
font-size: 18px;
|
212 |
+
}
|
213 |
+
|
214 |
+
#free_pro .free-pro-table td {
|
215 |
+
border-top: 1px solid #ccc;
|
216 |
+
padding: 20px 0 25px;
|
217 |
+
}
|
218 |
+
|
219 |
+
#free_pro .free-pro-table h3{
|
220 |
+
margin: 0;
|
221 |
+
font-size: 20px;
|
222 |
+
}
|
223 |
+
|
224 |
+
#free_pro .free-pro-table td p {
|
225 |
+
margin: 0;
|
226 |
+
}
|
227 |
+
|
228 |
+
#free_pro .free-pro-table .only-lite,
|
229 |
+
#free_pro .free-pro-table .only-pro {
|
230 |
+
text-align: center;
|
231 |
+
width: 15%;
|
232 |
+
font-size: 20px;
|
233 |
+
}
|
234 |
+
|
235 |
+
#free_pro .free-pro-table .only-lite .dashicons-before:before {
|
236 |
+
color: #00A878;
|
237 |
+
}
|
238 |
+
|
239 |
+
#free_pro .free-pro-table .only-pro .dashicons-before:before {
|
240 |
+
color: #ff3439;
|
241 |
+
}
|
242 |
+
|
243 |
+
#free_pro .free-pro-table .only-lite .dashicons-before:before,
|
244 |
+
#free_pro .free-pro-table .only-pro .dashicons-before:before {
|
245 |
+
font-size: 35px;
|
246 |
+
height: 35px;
|
247 |
+
width: 35px;
|
248 |
+
}
|
249 |
+
|
250 |
+
#free_pro .ti-about-page-text-center {
|
251 |
+
text-align: center;
|
252 |
}
|
assets/images/tab-intro.jpg
ADDED
Binary file
|
ink/admin/fvp.php
ADDED
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="free-vs-pro-tab info-tab-content">
|
2 |
+
<a href="http://demo.wpshopmart.com/tabs-pro-plugin-demo-for-wordpress/" target="_blank" class="button button-primary button-hero">Service Showcase Pro Demo</a>
|
3 |
+
<a href="https://wpshopmart.com/plugins/tabs-pro-plugin/" target="_blank" class="button button-primary button-hero">Upgrade To Pro</a>
|
4 |
+
</div>
|
5 |
+
|
6 |
+
<div class="free-vs-pro-tab info-tab-content">
|
7 |
+
<div id="free_pro">
|
8 |
+
<table class="free-pro-table">
|
9 |
+
<thead>
|
10 |
+
<tr>
|
11 |
+
<th></th>
|
12 |
+
<th>Tabs Free</th>
|
13 |
+
<th>Tabs Pro</th>
|
14 |
+
</tr>
|
15 |
+
</thead>
|
16 |
+
<tbody>
|
17 |
+
<tr>
|
18 |
+
<td><h3><?php _e('Pricing', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
19 |
+
<td class="only-lite">free</td>
|
20 |
+
<td class="only-lite">$9</td>
|
21 |
+
</tr>
|
22 |
+
<tr>
|
23 |
+
<td><h3><?php _e('Responsive Layout', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
24 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
25 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
26 |
+
</tr>
|
27 |
+
<td><h3><?php _e('No. Of Design Templates', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
28 |
+
<td class="only-lite">1</td>
|
29 |
+
<td class="only-lite">20+</td>
|
30 |
+
</tr>
|
31 |
+
<td><h3><?php _e('Coulmn Layout', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
32 |
+
<td class="only-lite">3</td>
|
33 |
+
<td class="only-lite">9</td>
|
34 |
+
</tr>
|
35 |
+
|
36 |
+
<tr>
|
37 |
+
<td><h3><?php _e('Unlimited Shortcode', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
38 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
39 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
40 |
+
</tr>
|
41 |
+
<tr>
|
42 |
+
<td><h3><?php _e('Drag n Drop Builder', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
43 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
44 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
45 |
+
</tr>
|
46 |
+
<td><h3><?php _e('Widget Option', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
47 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
48 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
49 |
+
</tr>
|
50 |
+
<tr>
|
51 |
+
<td><h3><?php _e('Individual Color Scheme', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
52 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
53 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
54 |
+
</tr>
|
55 |
+
<tr>
|
56 |
+
<td><h3><?php _e('Animation', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
57 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
58 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
59 |
+
</tr>
|
60 |
+
<tr>
|
61 |
+
<td><h3><?php _e('Advanced Bsckend Editor', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
62 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
63 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
64 |
+
</tr>
|
65 |
+
|
66 |
+
|
67 |
+
<tr>
|
68 |
+
<td><h3><?php _e('Google Fonts', wpshopmart_tabs_r_text_domain); ?></h3></td>
|
69 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
70 |
+
<td class="only-lite">500+</td>
|
71 |
+
</tr>
|
72 |
+
<tr>
|
73 |
+
<td><h3><?php _e('Custom Image Icons', wpshopmart_tabs_r_text_domain);?></h3></td>
|
74 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
75 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
76 |
+
</tr>
|
77 |
+
|
78 |
+
|
79 |
+
<tr>
|
80 |
+
<td><h3><?php _e('On Hover Tab', wpshopmart_tabs_r_text_domain);?></h3></td>
|
81 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
82 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
83 |
+
</tr>
|
84 |
+
<tr>
|
85 |
+
<td><h3><?php _e('Tabs Scroll Effect', wpshopmart_tabs_r_text_domain);?></h3></td>
|
86 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
87 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
88 |
+
</tr>
|
89 |
+
<tr>
|
90 |
+
<td><h3><?php _e('Tabs Custom Width', wpshopmart_tabs_r_text_domain);?></h3></td>
|
91 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
92 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
93 |
+
</tr>
|
94 |
+
<tr>
|
95 |
+
<td><h3><?php _e('Tabs Custom Height', wpshopmart_tabs_r_text_domain);?></h3></td>
|
96 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
97 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
98 |
+
</tr>
|
99 |
+
|
100 |
+
<tr>
|
101 |
+
<td><h3><?php _e('Dot Navigation', wpshopmart_tabs_r_text_domain);?></h3></td>
|
102 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
103 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
104 |
+
</tr>
|
105 |
+
<tr>
|
106 |
+
<td><h3><?php _e('Button Navigation', wpshopmart_tabs_r_text_domain);?></h3></td>
|
107 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
108 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
109 |
+
</tr>
|
110 |
+
<tr>
|
111 |
+
<td><h3><?php _e('Border Customization', wpshopmart_tabs_r_text_domain);?></h3></td>
|
112 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
113 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
114 |
+
</tr>
|
115 |
+
<tr>
|
116 |
+
<td><h3><?php _e('Section Background', wpshopmart_tabs_r_text_domain);?></h3></td>
|
117 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
118 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
119 |
+
</tr>
|
120 |
+
|
121 |
+
<tr>
|
122 |
+
<td><h3><?php _e('Premium Priority Support', wpshopmart_tabs_r_text_domain);?></h3></td>
|
123 |
+
<td class="only-pro"><span class="dashicons-before dashicons-no-alt"></span></td>
|
124 |
+
<td class="only-lite"><span class="dashicons-before dashicons-yes"></span></td>
|
125 |
+
</tr>
|
126 |
+
|
127 |
+
<tr class="ti-about-page-text-center">
|
128 |
+
<td><a href="http://demo.wpshopmart.com/tabs-pro-plugin-demo-for-wordpress/" target="_blank" class="button button-primary button-hero">Service Showcase Pro Demo</a></td>
|
129 |
+
<td colspan="2"><a href="https://wpshopmart.com/plugins/tabs-pro-plugin/" target="_blank" class="button button-primary button-hero">Upgrade To Pro</a></td>
|
130 |
+
</tr>
|
131 |
+
</tbody>
|
132 |
+
</table>
|
133 |
+
</div>
|
134 |
+
</div>
|
ink/install/installation.php
CHANGED
@@ -188,22 +188,30 @@ function wpsm_tabs_respnsive_header_info() {
|
|
188 |
if(get_post_type()=="tabs_responsive") {
|
189 |
?>
|
190 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
.wpsm_ac_h_i{
|
192 |
-
|
|
|
|
|
193 |
-webkit-box-shadow: 0px 13px 21px -10px rgba(128,128,128,1);
|
194 |
-
-moz-box-shadow: 0px 13px 21px -10px rgba(128,128,128,1);
|
195 |
-
box-shadow: 0px 13px 21px -10px rgba(128,128,128,1);
|
196 |
-
|
197 |
margin-left: -20px;
|
198 |
-
font-family: Myriad Pro ;
|
199 |
cursor: pointer;
|
|
|
|
|
200 |
text-align: center;
|
201 |
}
|
202 |
.wpsm_ac_h_i .wpsm_ac_h_b{
|
203 |
color: white;
|
204 |
font-size: 30px;
|
205 |
font-weight: bolder;
|
206 |
-
padding: 0 0
|
207 |
}
|
208 |
.wpsm_ac_h_i .wpsm_ac_h_b .dashicons{
|
209 |
font-size: 40px;
|
@@ -217,9 +225,8 @@ box-shadow: 0px 13px 21px -10px rgba(128,128,128,1);
|
|
217 |
font-size: 18px;
|
218 |
padding: 0 0 15px 15px;
|
219 |
}
|
220 |
-
|
221 |
.wpsm_ac_h_i a{
|
222 |
-
|
223 |
}
|
224 |
@media screen and ( max-width: 600px ) {
|
225 |
.wpsm_ac_h_i{ padding-top: 60px; margin-bottom: -50px; }
|
@@ -227,77 +234,96 @@ box-shadow: 0px 13px 21px -10px rgba(128,128,128,1);
|
|
227 |
}
|
228 |
.texture-layer {
|
229 |
background: rgba(0,0,0,0);
|
230 |
-
|
231 |
-
|
232 |
}
|
233 |
.wpsm_ac_h_i ul{
|
234 |
-
padding:0px
|
235 |
}
|
236 |
.wpsm_ac_h_i li {
|
237 |
text-align:left;
|
238 |
color:#fff;
|
239 |
-
font-size:
|
240 |
-
line-height:
|
241 |
font-weight: 600;
|
242 |
|
243 |
}
|
244 |
.wpsm_ac_h_i li i{
|
245 |
-
|
246 |
-
margin-bottom:10px;
|
|
|
247 |
}
|
248 |
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
background-color: #
|
268 |
-
border-color: #
|
269 |
-
}
|
|
|
|
|
|
|
|
|
|
|
270 |
|
271 |
</style>
|
|
|
|
|
272 |
<div class="wpsm_ac_h_i ">
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
<h1 style="color:#fff;font-size:30px;text-transform:uppercase">Unlock More Features In Pro version</h1>
|
278 |
</div>
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
<
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
<li> <i class="fa fa-check"></i>Customize Icon Position </li>
|
292 |
<li> <i class="fa fa-check"></i>Custom Image icon </li>
|
293 |
<li> <i class="fa fa-check"></i>Tabs on Hover </li>
|
294 |
<li> <i class="fa fa-check"></i>Widget Option </li>
|
295 |
<li> <i class="fa fa-check"></i>500+ Glyphicon Icons Support </li>
|
296 |
</ul>
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
<li> <i class="fa fa-check"></i>500+ Dashicons Icon Support </li>
|
301 |
<li> <i class="fa fa-check"></i>1000+ Font Awesome Icon Support </li>
|
302 |
<li> <i class="fa fa-check"></i>Tabs Custom Width </li>
|
303 |
<li> <i class="fa fa-check"></i>Unlimited Shortcode </li>
|
@@ -305,22 +331,21 @@ margin-bottom:10px;
|
|
305 |
<li> <i class="fa fa-check"></i>Drag And Drop Builder </li>
|
306 |
|
307 |
</ul>
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
<li> <i class="fa fa-check"></i>Tabs Custom Height </li>
|
312 |
<li> <i class="fa fa-check"></i>Border Color Customization </li>
|
313 |
<li> <i class="fa fa-check"></i>Unlimited Color Scheme </li>
|
314 |
<li> <i class="fa fa-check"></i>High Priority Support </li>
|
315 |
<li> <i class="fa fa-check"></i>All Browser Compatible </li>
|
316 |
</ul>
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
|
323 |
-
|
324 |
<?php
|
325 |
}
|
326 |
}
|
188 |
if(get_post_type()=="tabs_responsive") {
|
189 |
?>
|
190 |
<style>
|
191 |
+
@media screen and (max-width: 760px){
|
192 |
+
.wpsm_ac_h_i{
|
193 |
+
display:none;
|
194 |
+
|
195 |
+
}
|
196 |
+
}
|
197 |
.wpsm_ac_h_i{
|
198 |
+
background-color: #4625a7;
|
199 |
+
background: -webkit-linear-gradient(60deg, #4625a7, #915aff);
|
200 |
+
background: linear-gradient(60deg, #4625a7, #915aff);
|
201 |
-webkit-box-shadow: 0px 13px 21px -10px rgba(128,128,128,1);
|
202 |
+
-moz-box-shadow: 0px 13px 21px -10px rgba(128,128,128,1);
|
203 |
+
box-shadow: 0px 13px 21px -10px rgba(128,128,128,1);
|
|
|
204 |
margin-left: -20px;
|
|
|
205 |
cursor: pointer;
|
206 |
+
padding-top:20px;
|
207 |
+
overflow: HIDDEN;
|
208 |
text-align: center;
|
209 |
}
|
210 |
.wpsm_ac_h_i .wpsm_ac_h_b{
|
211 |
color: white;
|
212 |
font-size: 30px;
|
213 |
font-weight: bolder;
|
214 |
+
padding: 0 0 0px 0;
|
215 |
}
|
216 |
.wpsm_ac_h_i .wpsm_ac_h_b .dashicons{
|
217 |
font-size: 40px;
|
225 |
font-size: 18px;
|
226 |
padding: 0 0 15px 15px;
|
227 |
}
|
|
|
228 |
.wpsm_ac_h_i a{
|
229 |
+
text-decoration: none;
|
230 |
}
|
231 |
@media screen and ( max-width: 600px ) {
|
232 |
.wpsm_ac_h_i{ padding-top: 60px; margin-bottom: -50px; }
|
234 |
}
|
235 |
.texture-layer {
|
236 |
background: rgba(0,0,0,0);
|
237 |
+
padding-top: 0px;
|
238 |
+
padding: 0px 0 23px 0;
|
239 |
}
|
240 |
.wpsm_ac_h_i ul{
|
241 |
+
padding:0px 0px 0px 0px;
|
242 |
}
|
243 |
.wpsm_ac_h_i li {
|
244 |
text-align:left;
|
245 |
color:#fff;
|
246 |
+
font-size: 16px;
|
247 |
+
line-height: 26px;
|
248 |
font-weight: 600;
|
249 |
|
250 |
}
|
251 |
.wpsm_ac_h_i li i{
|
252 |
+
margin-right:6px ;
|
253 |
+
margin-bottom:10px;
|
254 |
+
font-size: 12px;
|
255 |
}
|
256 |
|
257 |
+
.wpsm_ac_h_i .btn-danger{
|
258 |
+
font-size: 29px;
|
259 |
+
background-color: #000000;
|
260 |
+
border-radius:1px;
|
261 |
+
margin-right:10px;
|
262 |
+
margin-top: 0px;
|
263 |
+
border-color:#000;
|
264 |
+
|
265 |
+
}
|
266 |
+
.wpsm_ac_h_i .btn-success{
|
267 |
+
font-size: 28px;
|
268 |
+
border-radius:1px;
|
269 |
+
background-color: #ffffff;
|
270 |
+
border-color: #ffffff;
|
271 |
+
color:#000;
|
272 |
+
}
|
273 |
+
.btn-danger {
|
274 |
+
color: #fff;
|
275 |
+
background-color: #e0bf1b !important;
|
276 |
+
border-color: #e0bf1b !important;
|
277 |
+
}
|
278 |
+
.pad-o{
|
279 |
+
padding:0px;
|
280 |
+
|
281 |
+
}
|
282 |
+
|
283 |
|
284 |
</style>
|
285 |
+
|
286 |
+
|
287 |
<div class="wpsm_ac_h_i ">
|
288 |
+
<div class="texture-layer">
|
289 |
+
<div class="col-md-3">
|
290 |
+
<img src="<?php echo wpshopmart_tabs_r_directory_url.'assets/images/tab-intro.jpg'; ?>" class="img-responsive"/>
|
291 |
+
|
|
|
292 |
</div>
|
293 |
+
|
294 |
+
|
295 |
+
|
296 |
+
<div class="col-md-9">
|
297 |
+
<div class="wpsm_ac_h_b col-md-6" style="text-align:left">
|
298 |
+
<a class="btn btn-danger btn-lg " href="https://wpshopmart.com/plugins/tabs-pro-plugin/" target="_blank">Get Pro Version</a><a class="btn btn-success btn-lg " href="http://demo.wpshopmart.com/tabs-pro-plugin-demo-for-wordpress/" target="_blank">View Demo</a>
|
299 |
+
</div>
|
300 |
+
<div class="col-md-6" style="text-align:left">
|
301 |
+
<h1 style="color:#fff;font-size:34px;font-weight:800">Testimonial Pro Features</h1>
|
302 |
+
</div>
|
303 |
+
|
304 |
+
<div class="col-md-12" style="padding-bottom:20px;">
|
305 |
+
<a href="https://wpshopmart.com/plugins/tabs-pro-plugin/" target="_blank">
|
306 |
+
<div class="col-md-3 pad-o">
|
307 |
+
<ul>
|
308 |
+
<li> <i class="fa fa-check"></i>20+ Design Templates </li>
|
309 |
+
<li> <i class="fa fa-check"></i>30+ Content Animations </li>
|
310 |
+
<li> <i class="fa fa-check"></i>Individual Color Scheme </li>
|
311 |
+
<li> <i class="fa fa-check"></i>4 Overlay Effect </li>
|
312 |
+
<li> <i class="fa fa-check"></i>500+ Google Fonts </li>
|
313 |
+
</ul>
|
314 |
+
</ul>
|
315 |
+
</div>
|
316 |
+
<div class="col-md-3 pad-o">
|
317 |
+
<ul>
|
318 |
<li> <i class="fa fa-check"></i>Customize Icon Position </li>
|
319 |
<li> <i class="fa fa-check"></i>Custom Image icon </li>
|
320 |
<li> <i class="fa fa-check"></i>Tabs on Hover </li>
|
321 |
<li> <i class="fa fa-check"></i>Widget Option </li>
|
322 |
<li> <i class="fa fa-check"></i>500+ Glyphicon Icons Support </li>
|
323 |
</ul>
|
324 |
+
</div>
|
325 |
+
<div class="col-md-3 pad-o">
|
326 |
+
<ul> <li> <i class="fa fa-check"></i>500+ Dashicons Icon Support </li>
|
|
|
327 |
<li> <i class="fa fa-check"></i>1000+ Font Awesome Icon Support </li>
|
328 |
<li> <i class="fa fa-check"></i>Tabs Custom Width </li>
|
329 |
<li> <i class="fa fa-check"></i>Unlimited Shortcode </li>
|
331 |
<li> <i class="fa fa-check"></i>Drag And Drop Builder </li>
|
332 |
|
333 |
</ul>
|
334 |
+
</div>
|
335 |
+
<div class="col-md-3 pad-o">
|
336 |
+
<ul> <li> <i class="fa fa-check"></i>Tabs Custom Height </li>
|
|
|
337 |
<li> <i class="fa fa-check"></i>Border Color Customization </li>
|
338 |
<li> <i class="fa fa-check"></i>Unlimited Color Scheme </li>
|
339 |
<li> <i class="fa fa-check"></i>High Priority Support </li>
|
340 |
<li> <i class="fa fa-check"></i>All Browser Compatible </li>
|
341 |
</ul>
|
342 |
+
</div>
|
343 |
+
</a>
|
344 |
+
</div>
|
345 |
+
</div>
|
346 |
+
</div>
|
347 |
|
348 |
+
</div>
|
349 |
<?php
|
350 |
}
|
351 |
}
|
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: 3.3
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -156,6 +156,9 @@ Please use WordPress support forum to ask any query regarding any issue.
|
|
156 |
|
157 |
== Changelog ==
|
158 |
|
|
|
|
|
|
|
159 |
= 1.8.5 =
|
160 |
* Compatible with wordpress version 4.9.6
|
161 |
|
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: 3.3
|
6 |
+
Tested up to: 4.9.8
|
7 |
+
Stable tag: 1.8.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
156 |
|
157 |
== Changelog ==
|
158 |
|
159 |
+
= 1.8.6 =
|
160 |
+
* Compatible with wordpress version 4.9.8
|
161 |
+
|
162 |
= 1.8.5 =
|
163 |
* Compatible with wordpress version 4.9.6
|
164 |
|
tabs-responsive.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Tabs Responsive
|
4 |
-
* Version: 1.8.
|
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
|
@@ -88,9 +88,11 @@ add_filter("plugin_action_links_$plugin", 'wpsm_tabs_r_settings_link' );
|
|
88 |
add_action('admin_menu' , 'wpsm_tabs_r_recom_menu');
|
89 |
function wpsm_tabs_r_recom_menu() {
|
90 |
$submenu = add_submenu_page('edit.php?post_type=tabs_responsive', __('More_Free_Plugins', wpshopmart_tabs_r_text_domain), __('More Free Plugins', wpshopmart_tabs_r_text_domain), 'administrator', 'wpsm_tabs_r_recom_page', 'wpsm_tabs_rrecom_page_funct');
|
|
|
91 |
|
92 |
//add hook to add styles and scripts for Tabs Plugin admin page
|
93 |
add_action( 'admin_print_styles-' . $submenu, 'wpsm_tabs_r_recom_js_css' );
|
|
|
94 |
}
|
95 |
function wpsm_tabs_r_recom_js_css(){
|
96 |
wp_enqueue_style('wpsm_tabs_r_bootstrap_css_recom', wpshopmart_tabs_r_directory_url.'assets/css/bootstrap.css');
|
@@ -99,5 +101,12 @@ function wpsm_tabs_r_recom_js_css(){
|
|
99 |
function wpsm_tabs_rrecom_page_funct(){
|
100 |
require_once('ink/admin/free.php');
|
101 |
}
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
?>
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Tabs Responsive
|
4 |
+
* Version: 1.8.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: https://www.wpshopmart.com
|
88 |
add_action('admin_menu' , 'wpsm_tabs_r_recom_menu');
|
89 |
function wpsm_tabs_r_recom_menu() {
|
90 |
$submenu = add_submenu_page('edit.php?post_type=tabs_responsive', __('More_Free_Plugins', wpshopmart_tabs_r_text_domain), __('More Free Plugins', wpshopmart_tabs_r_text_domain), 'administrator', 'wpsm_tabs_r_recom_page', 'wpsm_tabs_rrecom_page_funct');
|
91 |
+
$submenu2 = add_submenu_page('edit.php?post_type=tabs_responsive', __('Free Vs Pro', wpshopmart_tabs_r_text_domain), __('Free Vs Pro', wpshopmart_tabs_r_text_domain), 'administrator', 'wpsm_tabs_r_fvp_page', 'wpsm_tabs_r_fvp_page_funct');
|
92 |
|
93 |
//add hook to add styles and scripts for Tabs Plugin admin page
|
94 |
add_action( 'admin_print_styles-' . $submenu, 'wpsm_tabs_r_recom_js_css' );
|
95 |
+
add_action( 'admin_print_styles-' . $submenu2, 'wpsm_tabs_r_fvp_js_css' );
|
96 |
}
|
97 |
function wpsm_tabs_r_recom_js_css(){
|
98 |
wp_enqueue_style('wpsm_tabs_r_bootstrap_css_recom', wpshopmart_tabs_r_directory_url.'assets/css/bootstrap.css');
|
101 |
function wpsm_tabs_rrecom_page_funct(){
|
102 |
require_once('ink/admin/free.php');
|
103 |
}
|
104 |
+
|
105 |
+
function wpsm_tabs_r_fvp_js_css(){
|
106 |
+
wp_enqueue_style('wpsm_tabs_r_settings_fvp', wpshopmart_tabs_r_directory_url.'assets/css/settings.css');
|
107 |
+
|
108 |
+
}
|
109 |
+
function wpsm_tabs_r_fvp_page_funct(){
|
110 |
+
require_once('ink/admin/fvp.php');
|
111 |
+
}
|
112 |
?>
|