Version Description
- itrans slider button fix
- maximum slides in a slider increased to 10
Download this release
Release Info
Developer | marsian |
Plugin | TemplatesNext ToolKit |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- css/tx-admin-style.css +26 -0
- css/tx-style.css +7 -20
- inc/tnext-meta.php +0 -54
- js/tx_main.js +1 -1
- readme.txt +5 -1
- shortcodes.php +1 -1
- tx-toolkit.php +1 -1
css/tx-admin-style.css
CHANGED
@@ -75,6 +75,10 @@ ul.tx-fa-icons > li.active {
|
|
75 |
text-align: right;
|
76 |
font-size: 12px;
|
77 |
color: #999;
|
|
|
|
|
|
|
|
|
78 |
}
|
79 |
|
80 |
.form-table select,
|
@@ -159,4 +163,26 @@ ul.tx-fa-icons > li.active {
|
|
159 |
border: 1px solid #373737;
|
160 |
background-color: #373737;
|
161 |
color: #FFFFFF;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
}
|
75 |
text-align: right;
|
76 |
font-size: 12px;
|
77 |
color: #999;
|
78 |
+
display: block;
|
79 |
+
position: absolute;
|
80 |
+
left: 14px;
|
81 |
+
bottom: 4px;
|
82 |
}
|
83 |
|
84 |
.form-table select,
|
163 |
border: 1px solid #373737;
|
164 |
background-color: #373737;
|
165 |
color: #FFFFFF;
|
166 |
+
}
|
167 |
+
|
168 |
+
.tx-outer-footer {}
|
169 |
+
|
170 |
+
.tx-outer-footer a,
|
171 |
+
.tx-outer-footer a:visited {
|
172 |
+
text-decoration: none;
|
173 |
+
transition: all .2s;
|
174 |
+
-o-transition: all .2s;
|
175 |
+
-ie-transition: all .2s;
|
176 |
+
-moz-transition: all .2s;
|
177 |
+
-webkit-transition: all .2s;
|
178 |
+
}
|
179 |
+
|
180 |
+
.tx-outer-footer a:hover {
|
181 |
+
text-decoration: underline;
|
182 |
+
}
|
183 |
+
|
184 |
+
.tx-bottom-promo {
|
185 |
+
position: absolute;
|
186 |
+
bottom: 0px;
|
187 |
+
left: 0px;
|
188 |
}
|
css/tx-style.css
CHANGED
@@ -995,8 +995,6 @@
|
|
995 |
* related Product
|
996 |
*/
|
997 |
|
998 |
-
.related.products .products .owl-controls .owl-buttons .owl-prev {}
|
999 |
-
|
1000 |
.related.products {
|
1001 |
position: relative;
|
1002 |
overflow: hidden;
|
@@ -1065,11 +1063,6 @@
|
|
1065 |
* Slider
|
1066 |
*/
|
1067 |
|
1068 |
-
.tx-slider .owl-controls .owl-buttons .owl-next span.genericon {}
|
1069 |
-
.tx-slider .owl-wrapper .owl-item.active .tx-slider-item .tx-slider-box .tx-slide-content .tx-slide-details {}
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
.tx-slider {
|
1074 |
position: relative;
|
1075 |
overflow: hidden;
|
@@ -1083,12 +1076,6 @@
|
|
1083 |
}
|
1084 |
|
1085 |
.tx-slider .owl-controls {
|
1086 |
-
position: absolute;
|
1087 |
-
left: 0px;
|
1088 |
-
top: 0px;
|
1089 |
-
height: 100%;
|
1090 |
-
width: 100%;
|
1091 |
-
z-index: 301;
|
1092 |
}
|
1093 |
|
1094 |
.tx-slider .owl-controls .owl-buttons {
|
@@ -1096,7 +1083,9 @@
|
|
1096 |
top: 45%;
|
1097 |
left: 0px;
|
1098 |
width: 100%;
|
1099 |
-
|
|
|
|
|
1100 |
}
|
1101 |
|
1102 |
|
@@ -1153,17 +1142,14 @@
|
|
1153 |
position: relative;
|
1154 |
}
|
1155 |
|
1156 |
-
.tx-slider .owl-wrapper .owl-item.active .tx-slider-item .tx-slider-box .tx-slide-content .tx-slide-details {}
|
1157 |
-
|
1158 |
.tx-slider .owl-wrapper .tx-slide-content {
|
1159 |
display: block;
|
1160 |
position: absolute;
|
1161 |
left: 0px;
|
1162 |
top: 0px;
|
1163 |
margin: 0px auto;
|
1164 |
-
height: 100%;
|
1165 |
width: 100%;
|
1166 |
-
z-index:
|
1167 |
text-align: left;
|
1168 |
}
|
1169 |
|
@@ -1171,10 +1157,11 @@
|
|
1171 |
display: block;
|
1172 |
position: relative;
|
1173 |
margin: 0px auto;
|
1174 |
-
height: 100%;
|
1175 |
width: 100%;
|
1176 |
max-width: 1200px;
|
1177 |
-
padding: 32px;
|
|
|
|
|
1178 |
}
|
1179 |
|
1180 |
.tx-slide-title {
|
995 |
* related Product
|
996 |
*/
|
997 |
|
|
|
|
|
998 |
.related.products {
|
999 |
position: relative;
|
1000 |
overflow: hidden;
|
1063 |
* Slider
|
1064 |
*/
|
1065 |
|
|
|
|
|
|
|
|
|
|
|
1066 |
.tx-slider {
|
1067 |
position: relative;
|
1068 |
overflow: hidden;
|
1076 |
}
|
1077 |
|
1078 |
.tx-slider .owl-controls {
|
|
|
|
|
|
|
|
|
|
|
|
|
1079 |
}
|
1080 |
|
1081 |
.tx-slider .owl-controls .owl-buttons {
|
1083 |
top: 45%;
|
1084 |
left: 0px;
|
1085 |
width: 100%;
|
1086 |
+
height: 1px;
|
1087 |
+
overflow: visible;
|
1088 |
+
z-index: 102;
|
1089 |
}
|
1090 |
|
1091 |
|
1142 |
position: relative;
|
1143 |
}
|
1144 |
|
|
|
|
|
1145 |
.tx-slider .owl-wrapper .tx-slide-content {
|
1146 |
display: block;
|
1147 |
position: absolute;
|
1148 |
left: 0px;
|
1149 |
top: 0px;
|
1150 |
margin: 0px auto;
|
|
|
1151 |
width: 100%;
|
1152 |
+
z-index: 304;
|
1153 |
text-align: left;
|
1154 |
}
|
1155 |
|
1157 |
display: block;
|
1158 |
position: relative;
|
1159 |
margin: 0px auto;
|
|
|
1160 |
width: 100%;
|
1161 |
max-width: 1200px;
|
1162 |
+
padding: 32px 36px;
|
1163 |
+
|
1164 |
+
z-index: 305;
|
1165 |
}
|
1166 |
|
1167 |
.tx-slide-title {
|
inc/tnext-meta.php
CHANGED
@@ -209,60 +209,6 @@ function tx_register_meta_boxes( $meta_boxes )
|
|
209 |
)
|
210 |
);
|
211 |
|
212 |
-
$meta_boxes[] = array(
|
213 |
-
// Meta box id, UNIQUE per meta box. Optional since 4.1.5
|
214 |
-
'id' => 'testimonialmeta',
|
215 |
-
|
216 |
-
// Meta box title - Will appear at the drag and drop handle bar. Required.
|
217 |
-
'title' => __( 'Testimonial Meta', 'ispirit' ),
|
218 |
-
|
219 |
-
// Post types, accept custom post types as well - DEFAULT is array('post'). Optional.
|
220 |
-
'pages' => array( 'testimonials' ),
|
221 |
-
|
222 |
-
// Where the meta box appear: normal (default), advanced, side. Optional.
|
223 |
-
'context' => 'normal',
|
224 |
-
|
225 |
-
// Order of meta box: high (default), low. Optional.
|
226 |
-
'priority' => 'high',
|
227 |
-
|
228 |
-
// Auto save: true, false (default). Optional.
|
229 |
-
'autosave' => true,
|
230 |
-
|
231 |
-
// List of meta fields
|
232 |
-
'fields' => array(
|
233 |
-
|
234 |
-
// name
|
235 |
-
array(
|
236 |
-
'name' => __( 'Testimonial Cite', 'nx-admin' ),
|
237 |
-
'id' => "{$prefix}testi_name",
|
238 |
-
'type' => 'text',
|
239 |
-
'std' => __( '', 'nx-admin' ),
|
240 |
-
'desc' => __('Enter the testimonial cite name.', 'nx-admin'),
|
241 |
-
),
|
242 |
-
|
243 |
-
// designation
|
244 |
-
array(
|
245 |
-
'name' => __( 'Testimonial Cite Designation/position', 'nx-admin' ),
|
246 |
-
'id' => "{$prefix}testi_desig",
|
247 |
-
'type' => 'text',
|
248 |
-
'std' => __( '', 'nx-admin' ),
|
249 |
-
'desc' => __('Enter the cite designation or position', 'nx-admin'),
|
250 |
-
),
|
251 |
-
// company name
|
252 |
-
array(
|
253 |
-
'name' => __( 'Company name', 'nx-admin' ),
|
254 |
-
'id' => "{$prefix}testi_company",
|
255 |
-
'type' => 'text',
|
256 |
-
'std' => __( '', 'nx-admin' ),
|
257 |
-
'desc' => __('Enter the cite company name', 'nx-admin'),
|
258 |
-
),
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
)
|
263 |
-
);
|
264 |
-
|
265 |
-
|
266 |
|
267 |
|
268 |
return $meta_boxes;
|
209 |
)
|
210 |
);
|
211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
|
213 |
|
214 |
return $meta_boxes;
|
js/tx_main.js
CHANGED
@@ -577,7 +577,7 @@ function tx_color_picker($ele){
|
|
577 |
}
|
578 |
|
579 |
function tx_footer_include(){
|
580 |
-
var tx_footer=jQuery('<div><span class="tx-outer-footer"><a href="http://www.templatesnext.org/icreate/?page_id=541">Demo and Documentation</a></span></div>').html();
|
581 |
//tx_footer=tx_footer.outerHTML;
|
582 |
return tx_footer;
|
583 |
}
|
577 |
}
|
578 |
|
579 |
function tx_footer_include(){
|
580 |
+
var tx_footer=jQuery('<div class="tx-bottom-promo"><span class="tx-outer-footer"><a href="http://www.templatesnext.org/icreate/?page_id=541" target="_blank">Demo and Documentation</a> | <a href="http://templatesnext.org/ispirit/landing/" target="_blank">i-spirit, more flexibilty, more power</a></span></div>').html();
|
581 |
//tx_footer=tx_footer.outerHTML;
|
582 |
return tx_footer;
|
583 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: marsian
|
|
4 |
Tags: shortcode, shortcodes, columns, column, section, sections, portfolio, testimonial, border, borders, button, buttons, masonry, posts, post_type, font awesome, icons, fontawesome
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -25,6 +25,10 @@ Install the plugin into the `/wp-content/plugins/` folder, and activate it.
|
|
25 |
|
26 |
== Changelog ==
|
27 |
|
|
|
|
|
|
|
|
|
28 |
= 1.1.2 =
|
29 |
* renamed file tnext-meta.php to tx-meta.php
|
30 |
|
4 |
Tags: shortcode, shortcodes, columns, column, section, sections, portfolio, testimonial, border, borders, button, buttons, masonry, posts, post_type, font awesome, icons, fontawesome
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 1.1.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
25 |
|
26 |
== Changelog ==
|
27 |
|
28 |
+
= 1.1.3 =
|
29 |
+
* itrans slider button fix
|
30 |
+
* maximum slides in a slider increased to 10
|
31 |
+
|
32 |
= 1.1.2 =
|
33 |
* renamed file tnext-meta.php to tx-meta.php
|
34 |
|
shortcodes.php
CHANGED
@@ -533,7 +533,7 @@ function tx_prodscroll_function($atts, $content = null) {
|
|
533 |
function tx_slider_function($atts, $content = null) {
|
534 |
|
535 |
$atts = shortcode_atts(array(
|
536 |
-
'items' =>
|
537 |
'category' => '',
|
538 |
'delay' => 8000,
|
539 |
'class' => '',
|
533 |
function tx_slider_function($atts, $content = null) {
|
534 |
|
535 |
$atts = shortcode_atts(array(
|
536 |
+
'items' => 10,
|
537 |
'category' => '',
|
538 |
'delay' => 8000,
|
539 |
'class' => '',
|
tx-toolkit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin Name: TemplatesNext ToolKit
|
5 |
Description: Custom Portfolio and Shortcode functionality for TemplatesNext Wordpress Themes
|
6 |
-
Version: 1.1.
|
7 |
Author: TemplatesNext
|
8 |
Author URI: http://templatesnext.org/
|
9 |
License: GPLv2 or later
|
3 |
/*
|
4 |
Plugin Name: TemplatesNext ToolKit
|
5 |
Description: Custom Portfolio and Shortcode functionality for TemplatesNext Wordpress Themes
|
6 |
+
Version: 1.1.3
|
7 |
Author: TemplatesNext
|
8 |
Author URI: http://templatesnext.org/
|
9 |
License: GPLv2 or later
|