Version Description
- 15/03/2016 license warning issue fixed.
Download this release
Release Info
Developer | paratheme |
Plugin | Woocommerce Products Slider |
Version | 1.12.3 |
Comparing to | |
See all releases |
Code changes from version 1.12.1 to 1.12.3
- assets/admin/css/style.css +1 -1
- assets/admin/js/scripts.js +6 -5
- assets/front/css/images/featured.png +0 -0
- assets/front/css/images/sale-icon.png +0 -0
- assets/front/css/images/sale.png +0 -0
- assets/front/css/style.css +230 -6
- assets/front/js/scripts.js +44 -1
- assets/global/css/style.themes.css +1053 -0
- includes/class-functions.php +37 -64
- includes/class-settings.php +3 -4
- includes/class-shortcodes.php +120 -9
- includes/class-update.php +141 -0
- includes/{wcps-functions.php → functions.php} +16 -121
- includes/menu/settings.php +2 -2
- includes/{wcps-meta.php → meta.php} +317 -304
- languages/default.mo +0 -0
- languages/default.po +177 -309
- languages/wcps-bn_BD.mo +0 -0
- languages/wcps-bn_BD.po +179 -308
- languages/wcps-fi.mo +0 -0
- languages/wcps-fi.po +190 -313
- readme.txt +47 -25
- templates/custom-css.php +6 -4
- templates/layer-content.php +21 -0
- templates/layer-media.php +13 -0
- templates/query.php +26 -2
- templates/scripts.php +6 -6
- templates/variables.php +144 -47
- templates/wcps-cart.php +2 -2
- templates/wcps-category.php +2 -2
- templates/wcps-excerpt.php +2 -2
- templates/wcps-featured.php +3 -3
- templates/wcps-price.php +2 -2
- templates/wcps-rating.php +2 -2
- templates/wcps-ribbon.php +2 -2
- templates/wcps-sale.php +4 -4
- templates/wcps-thumb.php +5 -3
- templates/wcps-title.php +2 -2
- templates/wcps-zoom.php +15 -0
- themes/theme1/images/arrow-next.png +0 -0
- themes/theme1/images/arrow-prev.png +0 -0
- themes/theme1/images/tags.png +0 -0
- themes/theme1/index-old.php +0 -147
- themes/theme1/index.php +0 -95
- themes/theme1/style.css +0 -163
- themes/theme6/images/arrow-next.png +0 -0
- themes/theme6/images/arrow-prev.png +0 -0
- themes/theme6/images/tags.png +0 -0
- themes/theme6/index - Copy.php +0 -182
- themes/theme6/index.php +0 -127
- themes/theme6/style.css +0 -225
- woocommerce-products-slider.php +28 -16
assets/admin/css/style.css
CHANGED
@@ -108,12 +108,12 @@
|
|
108 |
|
109 |
|
110 |
#wcps_metabox .bg_image_src {
|
|
|
111 |
height: 50px;
|
112 |
width: 50px;
|
113 |
}
|
114 |
|
115 |
|
116 |
-
|
117 |
#wcps_metabox .expandable .header {
|
118 |
background: #a7e1ff none repeat scroll 0 0;
|
119 |
padding-left: 20px;
|
108 |
|
109 |
|
110 |
#wcps_metabox .bg_image_src {
|
111 |
+
cursor: pointer;
|
112 |
height: 50px;
|
113 |
width: 50px;
|
114 |
}
|
115 |
|
116 |
|
|
|
117 |
#wcps_metabox .expandable .header {
|
118 |
background: #a7e1ff none repeat scroll 0 0;
|
119 |
padding-left: 20px;
|
assets/admin/js/scripts.js
CHANGED
@@ -65,14 +65,14 @@ jQuery(document).ready(function($)
|
|
65 |
})
|
66 |
|
67 |
|
68 |
-
|
69 |
{
|
70 |
|
71 |
-
|
72 |
|
73 |
var taxonomy = jQuery(this).val();
|
74 |
|
75 |
-
|
76 |
|
77 |
jQuery.ajax(
|
78 |
{
|
@@ -81,8 +81,9 @@ jQuery(document).ready(function($)
|
|
81 |
data: {"action": "wcps_get_taxonomy_category","taxonomy":taxonomy},
|
82 |
success: function(data)
|
83 |
{
|
84 |
-
|
85 |
-
|
|
|
86 |
}
|
87 |
});
|
88 |
|
65 |
})
|
66 |
|
67 |
|
68 |
+
$(".wcps_taxonomy").click(function()
|
69 |
{
|
70 |
|
71 |
+
|
72 |
|
73 |
var taxonomy = jQuery(this).val();
|
74 |
|
75 |
+
$(".wcps_loading_taxonomy_category").css('display','block');
|
76 |
|
77 |
jQuery.ajax(
|
78 |
{
|
81 |
data: {"action": "wcps_get_taxonomy_category","taxonomy":taxonomy},
|
82 |
success: function(data)
|
83 |
{
|
84 |
+
|
85 |
+
$(".wcps_taxonomy_category").html(data);
|
86 |
+
$(".wcps_loading_taxonomy_category").fadeOut('slow');
|
87 |
}
|
88 |
});
|
89 |
|
assets/front/css/images/featured.png
CHANGED
Binary file
|
assets/front/css/images/sale-icon.png
DELETED
Binary file
|
assets/front/css/images/sale.png
CHANGED
Binary file
|
assets/front/css/style.css
CHANGED
@@ -93,7 +93,6 @@ background:url("ribbons/dis-100.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
|
|
93 |
|
94 |
|
95 |
|
96 |
-
|
97 |
/* Navigation CSS middle */
|
98 |
|
99 |
.wcps-container .owl-buttons.middle {
|
@@ -274,21 +273,31 @@ right: -50px;
|
|
274 |
|
275 |
|
276 |
|
277 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
|
279 |
.wcps-container div.wcps-featured {
|
280 |
-
background: url("images/featured.png") no-repeat scroll
|
|
|
|
|
281 |
color: rgb(255, 255, 255);
|
282 |
font-size: 12px;
|
283 |
-
height:
|
284 |
left: 10px;
|
285 |
padding: 0;
|
286 |
position: absolute;
|
287 |
top: 10px;
|
288 |
-
width:
|
289 |
}
|
290 |
|
291 |
-
|
292 |
.wcps-container div.wcps-sale {
|
293 |
background: url("images/sale.png") no-repeat scroll 0 center rgb(241, 241, 241);
|
294 |
box-shadow: 0 1px 6px -3px rgb(153, 153, 153);
|
@@ -346,4 +355,219 @@ right: -50px;
|
|
346 |
|
347 |
}
|
348 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
|
93 |
|
94 |
|
95 |
|
|
|
96 |
/* Navigation CSS middle */
|
97 |
|
98 |
.wcps-container .owl-buttons.middle {
|
273 |
|
274 |
|
275 |
|
276 |
+
.wcps-container div.wcps-items-sale {
|
277 |
+
background: #fff url("images/sale.png") no-repeat scroll 8px 8px;
|
278 |
+
border-radius: 50%;
|
279 |
+
box-shadow: 0 0 4px -2px #000;
|
280 |
+
height: 50px;
|
281 |
+
position: absolute;
|
282 |
+
right: 10px;
|
283 |
+
top: 10px;
|
284 |
+
width: 50px;
|
285 |
+
}
|
286 |
|
287 |
.wcps-container div.wcps-featured {
|
288 |
+
background: #fff url("images/featured.png") no-repeat scroll 4px 4px;
|
289 |
+
border-radius: 50%;
|
290 |
+
box-shadow: 0 0 2px 0 #999;
|
291 |
color: rgb(255, 255, 255);
|
292 |
font-size: 12px;
|
293 |
+
height: 40px;
|
294 |
left: 10px;
|
295 |
padding: 0;
|
296 |
position: absolute;
|
297 |
top: 10px;
|
298 |
+
width: 40px;
|
299 |
}
|
300 |
|
|
|
301 |
.wcps-container div.wcps-sale {
|
302 |
background: url("images/sale.png") no-repeat scroll 0 center rgb(241, 241, 241);
|
303 |
box-shadow: 0 1px 6px -3px rgb(153, 153, 153);
|
355 |
|
356 |
}
|
357 |
|
358 |
+
.wcps-container .wcps-zoom {
|
359 |
+
background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
|
360 |
+
height: 100%;
|
361 |
+
left: 0;
|
362 |
+
opacity: 0;
|
363 |
+
position: absolute;
|
364 |
+
text-align: center;
|
365 |
+
top: 0;
|
366 |
+
transition: all 0.3s ease 0s;
|
367 |
+
width: 100%;
|
368 |
+
}
|
369 |
+
|
370 |
+
.wcps-container .wcps-items:hover .wcps-zoom {
|
371 |
+
opacity: 1;
|
372 |
+
}
|
373 |
+
|
374 |
+
|
375 |
+
.wcps-container .wcps-zoom .fa {
|
376 |
+
background: #fff none repeat scroll 0 0;
|
377 |
+
border-radius: 50%;
|
378 |
+
box-shadow: 0 0 4px 0 #333;
|
379 |
+
color: #999;
|
380 |
+
cursor: pointer;
|
381 |
+
font-size: 35px;
|
382 |
+
margin-top: 30%;
|
383 |
+
padding: 10px;
|
384 |
+
}
|
385 |
+
|
386 |
+
.wcps-container .wcps-zoom-thumb {
|
387 |
+
background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
|
388 |
+
display: none;
|
389 |
+
height: 100%;
|
390 |
+
left: 0;
|
391 |
+
overflow-y: scroll;
|
392 |
+
position: fixed;
|
393 |
+
text-align: center;
|
394 |
+
top: 0;
|
395 |
+
width: 100%;
|
396 |
+
z-index: 2147483647;
|
397 |
+
}
|
398 |
+
|
399 |
+
|
400 |
+
.wcps-container .wcps-zoom-thumb img {
|
401 |
+
margin: 50px 0;
|
402 |
+
}
|
403 |
+
|
404 |
+
|
405 |
+
.wcps-container .wcps-zoom-thumb .wcps-zoom-colse {
|
406 |
+
background: #ff5028 none repeat scroll 0 0;
|
407 |
+
color: #fff;
|
408 |
+
cursor: pointer;
|
409 |
+
display: inline-block;
|
410 |
+
font-size: 16px;
|
411 |
+
height: 26px;
|
412 |
+
margin-top: 50px;
|
413 |
+
position: relative;
|
414 |
+
text-align: center;
|
415 |
+
vertical-align: top;
|
416 |
+
width: 28px;
|
417 |
+
}
|
418 |
+
|
419 |
+
|
420 |
+
.wcps-container .wcps-items {
|
421 |
+
background: rgb(255, 255, 255) none repeat scroll 0 0;
|
422 |
+
margin: 0 10px;
|
423 |
+
overflow: hidden;
|
424 |
+
padding: 0;
|
425 |
+
position: relative;
|
426 |
+
}
|
427 |
+
|
428 |
+
|
429 |
+
.wcps-container div.wcps-items div.wcps-items-thumb {
|
430 |
+
line-height: 0;
|
431 |
+
overflow: hidden;
|
432 |
+
position: relative;
|
433 |
+
text-align: center;
|
434 |
+
}
|
435 |
+
|
436 |
+
.wcps-container div.wcps-items div.wcps-items-thumb a {
|
437 |
+
color: rgb(255, 255, 255);
|
438 |
+
margin: 0;
|
439 |
+
padding: 0;
|
440 |
+
text-decoration: none;
|
441 |
+
width: 100%
|
442 |
+
}
|
443 |
+
|
444 |
+
.wcps-container div.wcps-items div.wcps-items-thumb img {
|
445 |
+
-moz-border-radius: 0;
|
446 |
+
-webkit-border-radius: 0;
|
447 |
+
border-radius: 0;
|
448 |
+
-moz-box-shadow: none;
|
449 |
+
-webkit-box-shadow: none;
|
450 |
+
box-shadow: none;
|
451 |
+
margin: 0;
|
452 |
+
padding: 0;
|
453 |
+
width: 100%
|
454 |
+
}
|
455 |
+
|
456 |
+
.wcps-container .wcps-terms {
|
457 |
+
display: none;
|
458 |
+
padding: 2px 10px 2px 25px;
|
459 |
+
text-align: center
|
460 |
+
}
|
461 |
+
|
462 |
+
.wcps-container .wcps-items-title {
|
463 |
+
padding: 10px 12px;
|
464 |
+
text-align: left;
|
465 |
+
}
|
466 |
+
|
467 |
+
.wcps-container .wcps-items-title a {
|
468 |
+
font-size: 16px;
|
469 |
+
font-weight: bold;
|
470 |
+
line-height: normal;
|
471 |
+
text-decoration: none;
|
472 |
+
}
|
473 |
+
|
474 |
+
.wcps-container .wcps-items-excerpt {
|
475 |
+
font-size: 14px;
|
476 |
+
padding: 10px 12px;
|
477 |
+
text-align: left;
|
478 |
+
}
|
479 |
+
.wcps-container .wcps-items-category {
|
480 |
+
padding: 5px 12px;
|
481 |
+
}
|
482 |
+
|
483 |
+
.wcps-container .wcps-items-category a {
|
484 |
+
text-decoration: none;
|
485 |
+
}
|
486 |
+
|
487 |
+
.wcps-container .wcps-items-rating {
|
488 |
+
padding: 5px 12px;
|
489 |
+
}
|
490 |
+
|
491 |
+
.wcps-container .wcps-items-rating .star-rating{
|
492 |
+
font-size:1.5em;
|
493 |
+
}
|
494 |
+
|
495 |
+
.wcps-container .wcps-items div.wcps-items-price {
|
496 |
+
padding: 5px 12px;
|
497 |
+
text-align: left;
|
498 |
+
}
|
499 |
+
|
500 |
+
.wcps-container .wcps-items-price ins {
|
501 |
+
background: none repeat scroll 0 0 rgba(0, 0, 0, 0)
|
502 |
+
}
|
503 |
+
|
504 |
+
.wcps-container .wcps-items-cart {
|
505 |
+
padding: 10px 12px;
|
506 |
+
text-align: left;
|
507 |
+
}
|
508 |
+
|
509 |
+
|
510 |
+
|
511 |
+
|
512 |
+
.wcps-container .wcps-items div.wcps-items-cart p {
|
513 |
+
border: medium none !important;
|
514 |
+
margin: 0 !important;
|
515 |
+
padding: 0 !important
|
516 |
+
}
|
517 |
+
|
518 |
+
.wcps-container .wcps-items div.wcps-items-cart.custom span.amount {
|
519 |
+
font-size: 15px;
|
520 |
+
line-height: 15px
|
521 |
+
}
|
522 |
+
|
523 |
+
.wcps-container .wcps-items div.wcps-items-cart .amount, .wcps-container div.wcps-items div.wcps-items-cart del, .wcps-container div.wcps-items .wcps-items-cart ins, .wcps-container div.wcps-items div.wcps-items-cart .woocommerce-price-suffix {
|
524 |
+
display: none
|
525 |
+
}
|
526 |
+
|
527 |
+
.wcps-container .wcps-items div.wcps-items-cart.custom a.add_to_cart_button {
|
528 |
+
background: none repeat scroll 0 0 rgb(13, 225, 133);
|
529 |
+
border: medium none;
|
530 |
+
-moz-border-radius: 0;
|
531 |
+
-webkit-border-radius: 0;
|
532 |
+
border-radius: 0;
|
533 |
+
-moz-box-shadow: none;
|
534 |
+
-webkit-box-shadow: none;
|
535 |
+
box-shadow: none;
|
536 |
+
font-size: 12px;
|
537 |
+
line-height: 12px;
|
538 |
+
margin: 0;
|
539 |
+
padding: 10px 15px;
|
540 |
+
text-shadow: none
|
541 |
+
}
|
542 |
+
|
543 |
+
.wcps-container .wcps-items div.wcps-items-cart.custom a.added_to_cart {
|
544 |
+
background: none repeat scroll 0 0 rgb(13, 225, 133);
|
545 |
+
border: medium none;
|
546 |
+
-moz-border-radius: 0;
|
547 |
+
-webkit-border-radius: 0;
|
548 |
+
border-radius: 0;
|
549 |
+
-moz-box-shadow: none;
|
550 |
+
-webkit-box-shadow: none;
|
551 |
+
box-shadow: none;
|
552 |
+
color: rgb(68, 68, 68);
|
553 |
+
font-size: 12px;
|
554 |
+
line-height: 12px;
|
555 |
+
margin-top: 15px;
|
556 |
+
padding: 10px 15px;
|
557 |
+
text-decoration: none;
|
558 |
+
text-shadow: none
|
559 |
+
}
|
560 |
+
|
561 |
+
.wcps-container .wcps-items div.wcps-items-cart a.added {
|
562 |
+
display: none
|
563 |
+
}
|
564 |
+
|
565 |
+
|
566 |
+
|
567 |
+
|
568 |
+
|
569 |
+
|
570 |
+
|
571 |
+
|
572 |
+
|
573 |
|
assets/front/js/scripts.js
CHANGED
@@ -1,10 +1,53 @@
|
|
1 |
|
2 |
jQuery(document).ready(function($)
|
3 |
{
|
4 |
-
|
5 |
$(".wcps-items .add_to_cart_button").wrap("<div class='cart-area' ></div>");
|
6 |
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
});
|
9 |
|
10 |
|
1 |
|
2 |
jQuery(document).ready(function($)
|
3 |
{
|
4 |
+
|
5 |
$(".wcps-items .add_to_cart_button").wrap("<div class='cart-area' ></div>");
|
6 |
|
7 |
|
8 |
+
|
9 |
+
$(document).on('click', '.wcps-zoom-colse', function()
|
10 |
+
{
|
11 |
+
|
12 |
+
$(this).parent().fadeOut();
|
13 |
+
|
14 |
+
})
|
15 |
+
|
16 |
+
|
17 |
+
$(document).on('click', '.wcps-zoom', function()
|
18 |
+
{
|
19 |
+
|
20 |
+
var slider_id = $(this).attr('slider-id');
|
21 |
+
var product_id = $(this).attr('product-id');
|
22 |
+
|
23 |
+
//alert(product_id);
|
24 |
+
|
25 |
+
jQuery.ajax(
|
26 |
+
{
|
27 |
+
type: 'POST',
|
28 |
+
context:this,
|
29 |
+
url: wcps_ajax.wcps_ajaxurl,
|
30 |
+
data: {"action": "wcps_get_item_thumb_url","product_id":product_id},
|
31 |
+
success: function(data)
|
32 |
+
{
|
33 |
+
//alert(data);
|
34 |
+
jQuery('.wcps-zoom-thumb-'+slider_id).fadeIn();
|
35 |
+
jQuery('.wcps-zoom-thumb-'+slider_id+' img').attr('src',data);
|
36 |
+
|
37 |
+
}
|
38 |
+
});
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
})
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
});
|
52 |
|
53 |
|
assets/global/css/style.themes.css
ADDED
@@ -0,0 +1,1053 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@charset "utf-8";
|
2 |
+
/* CSS Document */
|
3 |
+
|
4 |
+
/*################### flat ########################*/
|
5 |
+
.skin.flat {
|
6 |
+
vertical-align: top;
|
7 |
+
}
|
8 |
+
.skin.flat .layer-media{}
|
9 |
+
.skin.flat .layer-content {
|
10 |
+
padding: 5px 10px;
|
11 |
+
}
|
12 |
+
.skin.flat .layer-hover {
|
13 |
+
display: none;
|
14 |
+
}
|
15 |
+
|
16 |
+
|
17 |
+
/*################### flip-x ########################*/
|
18 |
+
|
19 |
+
|
20 |
+
.skin.flip-x {
|
21 |
+
|
22 |
+
overflow: hidden;
|
23 |
+
padding: 0;
|
24 |
+
perspective: 600px;
|
25 |
+
position: relative;
|
26 |
+
vertical-align: top;
|
27 |
+
width: 100%;
|
28 |
+
}
|
29 |
+
|
30 |
+
.skin.flip-x:hover .layer-media {
|
31 |
+
|
32 |
+
transform: rotateX(180deg);
|
33 |
+
z-index: 900;
|
34 |
+
}
|
35 |
+
|
36 |
+
|
37 |
+
.skin.flip-x .layer-media {
|
38 |
+
backface-visibility: hidden;
|
39 |
+
float: none;
|
40 |
+
height: inherit;
|
41 |
+
left: 0;
|
42 |
+
text-align: center;
|
43 |
+
top: 0;
|
44 |
+
transform: rotateX(0deg) rotateY(0deg);
|
45 |
+
transform-style: preserve-3d;
|
46 |
+
transition: all 0.4s ease-in-out 0s;
|
47 |
+
width: inherit;
|
48 |
+
z-index: 900;
|
49 |
+
}
|
50 |
+
|
51 |
+
.skin.flip-x:hover .layer-content {
|
52 |
+
|
53 |
+
transform: rotateX(0deg) rotateY(0deg);
|
54 |
+
z-index: 1000;
|
55 |
+
}
|
56 |
+
|
57 |
+
.skin.flip-x .layer-content {
|
58 |
+
backface-visibility: hidden;
|
59 |
+
float: none;
|
60 |
+
height: inherit;
|
61 |
+
left: 0;
|
62 |
+
padding: 0;
|
63 |
+
position: absolute;
|
64 |
+
top: 0;
|
65 |
+
transform: rotateX(-179deg);
|
66 |
+
transform-style: preserve-3d;
|
67 |
+
transition: all 0.4s ease-in-out 0s;
|
68 |
+
width: inherit;
|
69 |
+
z-index: 800;
|
70 |
+
}
|
71 |
+
|
72 |
+
.skin.flip-x .layer-hover {
|
73 |
+
display: none;
|
74 |
+
}
|
75 |
+
/*################### flip-y ########################*/
|
76 |
+
|
77 |
+
|
78 |
+
|
79 |
+
.skin.flip-y {
|
80 |
+
overflow: hidden;
|
81 |
+
padding: 0;
|
82 |
+
perspective: 600px;
|
83 |
+
position: relative;
|
84 |
+
vertical-align: top;
|
85 |
+
width: 100%;
|
86 |
+
}
|
87 |
+
|
88 |
+
.skin.flip-y:hover .layer-media {
|
89 |
+
transform: rotateY(180deg);
|
90 |
+
z-index: 900;
|
91 |
+
}
|
92 |
+
|
93 |
+
|
94 |
+
.skin.flip-y .layer-media {
|
95 |
+
backface-visibility: hidden;
|
96 |
+
float: none;
|
97 |
+
height: inherit;
|
98 |
+
left: 0;
|
99 |
+
text-align: center;
|
100 |
+
top: 0;
|
101 |
+
transform: rotateX(0deg) rotateY(0deg);
|
102 |
+
transform-style: preserve-3d;
|
103 |
+
transition: all 0.4s ease-in-out 0s;
|
104 |
+
width: inherit;
|
105 |
+
z-index: 900;
|
106 |
+
}
|
107 |
+
|
108 |
+
.skin.flip-y:hover .layer-content {
|
109 |
+
|
110 |
+
transform: rotateX(0deg) rotateY(0deg);
|
111 |
+
z-index: 1000;
|
112 |
+
}
|
113 |
+
|
114 |
+
.skin.flip-y .layer-content {
|
115 |
+
backface-visibility: hidden;
|
116 |
+
float: none;
|
117 |
+
height: inherit;
|
118 |
+
left: 0;
|
119 |
+
position: absolute;
|
120 |
+
top: 0;
|
121 |
+
transform: rotateY(-179deg);
|
122 |
+
transform-style: preserve-3d;
|
123 |
+
transition: all 0.4s ease-in-out 0s;
|
124 |
+
width: inherit;
|
125 |
+
z-index: 800;
|
126 |
+
}
|
127 |
+
|
128 |
+
.skin.flip-y .layer-hover {
|
129 |
+
display: none;
|
130 |
+
}
|
131 |
+
|
132 |
+
/*################### zoomin ########################*/
|
133 |
+
|
134 |
+
|
135 |
+
.skin.zoomin {
|
136 |
+
overflow: hidden;
|
137 |
+
position: relative;
|
138 |
+
vertical-align: top;
|
139 |
+
}
|
140 |
+
|
141 |
+
.skin.zoomin:hover .layer-media {
|
142 |
+
transform: scale(1.5);
|
143 |
+
opacity: 0;
|
144 |
+
}
|
145 |
+
|
146 |
+
.skin.zoomin .layer-media {
|
147 |
+
transition: all 1s ease 0s;
|
148 |
+
left: 0;
|
149 |
+
top: 0;
|
150 |
+
width: 100%;
|
151 |
+
}
|
152 |
+
.skin.zoomin:hover .layer-content{
|
153 |
+
opacity: 1;
|
154 |
+
}
|
155 |
+
.skin.zoomin .layer-content {
|
156 |
+
opacity: 0;
|
157 |
+
position: absolute;
|
158 |
+
top: 0;
|
159 |
+
width: 100%;
|
160 |
+
transition: all 1s ease 0s;
|
161 |
+
}
|
162 |
+
.skin.zoomin .layer-hover {
|
163 |
+
display: none;
|
164 |
+
}
|
165 |
+
|
166 |
+
/*################### zoomout ########################*/
|
167 |
+
.skin.zoomout {
|
168 |
+
overflow: hidden;
|
169 |
+
position: relative;
|
170 |
+
vertical-align: top;
|
171 |
+
}
|
172 |
+
.skin.zoomout:hover .layer-media {
|
173 |
+
transform: scale(0);
|
174 |
+
opacity: 0;
|
175 |
+
}
|
176 |
+
|
177 |
+
.skin.zoomout .layer-media {
|
178 |
+
transition: all 1s ease 0s;
|
179 |
+
left: 0;
|
180 |
+
top: 0;
|
181 |
+
width: 100%;
|
182 |
+
}
|
183 |
+
.skin.zoomout:hover .layer-content{
|
184 |
+
opacity: 1;
|
185 |
+
}
|
186 |
+
.skin.zoomout .layer-content {
|
187 |
+
left: 0;
|
188 |
+
opacity: 0;
|
189 |
+
position: absolute;
|
190 |
+
top: 0;
|
191 |
+
width: 100%;
|
192 |
+
transition: all 1s ease 0s;
|
193 |
+
}
|
194 |
+
.skin.zoomout .layer-hover {
|
195 |
+
display: none;
|
196 |
+
}
|
197 |
+
|
198 |
+
|
199 |
+
/*################### spinright ########################*/
|
200 |
+
|
201 |
+
|
202 |
+
.skin.spinright {
|
203 |
+
overflow: hidden;
|
204 |
+
position: relative;
|
205 |
+
vertical-align: top;
|
206 |
+
}
|
207 |
+
|
208 |
+
.skin.spinright:hover .layer-media {
|
209 |
+
transform: rotate(30deg);
|
210 |
+
opacity: 0;
|
211 |
+
}
|
212 |
+
|
213 |
+
.skin.spinright .layer-media {
|
214 |
+
transition: all 1s ease 0s;
|
215 |
+
left: 0;
|
216 |
+
top: 0;
|
217 |
+
width: 100%;
|
218 |
+
}
|
219 |
+
.skin.spinright:hover .layer-content{
|
220 |
+
opacity: 1;
|
221 |
+
}
|
222 |
+
.skin.spinright .layer-content {
|
223 |
+
left: 0;
|
224 |
+
opacity: 0;
|
225 |
+
position: absolute;
|
226 |
+
top: 0;
|
227 |
+
width: 100%;
|
228 |
+
transition: all 1s ease 0s;
|
229 |
+
}
|
230 |
+
.skin.spinright .layer-hover {
|
231 |
+
display: none;
|
232 |
+
}
|
233 |
+
|
234 |
+
|
235 |
+
|
236 |
+
|
237 |
+
|
238 |
+
|
239 |
+
/*################### spinrightzoom ########################*/
|
240 |
+
|
241 |
+
|
242 |
+
.skin.spinrightzoom {
|
243 |
+
overflow: hidden;
|
244 |
+
position: relative;
|
245 |
+
vertical-align: top;
|
246 |
+
}
|
247 |
+
|
248 |
+
.skin.spinrightzoom:hover .layer-media {
|
249 |
+
opacity: 0.6;
|
250 |
+
transform: rotate(20deg) scale(1.5);
|
251 |
+
}
|
252 |
+
|
253 |
+
.skin.spinrightzoom .layer-media {
|
254 |
+
transition: all 1s ease 0s;
|
255 |
+
left: 0;
|
256 |
+
top: 0;
|
257 |
+
width: 100%;
|
258 |
+
}
|
259 |
+
.skin.spinrightzoom:hover .layer-content{
|
260 |
+
opacity: 1;
|
261 |
+
}
|
262 |
+
.skin.spinrightzoom .layer-content {
|
263 |
+
left: 0;
|
264 |
+
opacity: 0;
|
265 |
+
position: absolute;
|
266 |
+
top: 0;
|
267 |
+
width: 100%;
|
268 |
+
transition: all 1s ease 0s;
|
269 |
+
}
|
270 |
+
.skin.spinrightzoom .layer-hover {
|
271 |
+
display: none;
|
272 |
+
}
|
273 |
+
|
274 |
+
|
275 |
+
|
276 |
+
|
277 |
+
|
278 |
+
|
279 |
+
/*################### spinleft ########################*/
|
280 |
+
|
281 |
+
.skin.spinleft {
|
282 |
+
overflow: hidden;
|
283 |
+
position: relative;
|
284 |
+
vertical-align: top;
|
285 |
+
}
|
286 |
+
|
287 |
+
.skin.spinleft:hover .layer-media {
|
288 |
+
transform: rotate(-30deg);
|
289 |
+
opacity: 0;
|
290 |
+
}
|
291 |
+
|
292 |
+
.skin.spinleft .layer-media {
|
293 |
+
transition: all 1s ease 0s;
|
294 |
+
left: 0;
|
295 |
+
top: 0;
|
296 |
+
width: 100%;
|
297 |
+
}
|
298 |
+
.skin.spinleft:hover .layer-content{
|
299 |
+
opacity: 1;
|
300 |
+
}
|
301 |
+
.skin.spinleft .layer-content {
|
302 |
+
left: 0;
|
303 |
+
opacity: 0;
|
304 |
+
position: absolute;
|
305 |
+
top: 0;
|
306 |
+
width: 100%;
|
307 |
+
transition: all 1s ease 0s;
|
308 |
+
}
|
309 |
+
.skin.spinleft .layer-hover {
|
310 |
+
display: none;
|
311 |
+
}
|
312 |
+
|
313 |
+
|
314 |
+
|
315 |
+
|
316 |
+
/*################### spinleftzoom ########################*/
|
317 |
+
|
318 |
+
.skin.spinleftzoom {
|
319 |
+
overflow: hidden;
|
320 |
+
position: relative;
|
321 |
+
vertical-align: top;
|
322 |
+
}
|
323 |
+
|
324 |
+
.skin.spinleftzoom:hover .layer-media {
|
325 |
+
opacity: 0.7;
|
326 |
+
transform: rotate(-30deg) scale(1.5);
|
327 |
+
}
|
328 |
+
|
329 |
+
.skin.spinleftzoom .layer-media {
|
330 |
+
transition: all 1s ease 0s;
|
331 |
+
left: 0;
|
332 |
+
top: 0;
|
333 |
+
width: 100%;
|
334 |
+
}
|
335 |
+
.skin.spinleftzoom:hover .layer-content{
|
336 |
+
opacity: 1;
|
337 |
+
}
|
338 |
+
.skin.spinleftzoom .layer-content {
|
339 |
+
left: 0;
|
340 |
+
opacity: 0;
|
341 |
+
position: absolute;
|
342 |
+
top: 0;
|
343 |
+
width: 100%;
|
344 |
+
transition: all 1s ease 0s;
|
345 |
+
}
|
346 |
+
.skin.spinleftzoom .layer-hover {
|
347 |
+
display: none;
|
348 |
+
}
|
349 |
+
|
350 |
+
|
351 |
+
|
352 |
+
|
353 |
+
|
354 |
+
|
355 |
+
|
356 |
+
|
357 |
+
/*################### spinrightfast ########################*/
|
358 |
+
|
359 |
+
|
360 |
+
.skin.spinrightfast {
|
361 |
+
overflow: hidden;
|
362 |
+
position: relative;
|
363 |
+
vertical-align: top;
|
364 |
+
}
|
365 |
+
|
366 |
+
.skin.spinrightfast:hover .layer-media {
|
367 |
+
transform: rotate(180deg);
|
368 |
+
opacity: 0;
|
369 |
+
}
|
370 |
+
|
371 |
+
.skin.spinrightfast .layer-media {
|
372 |
+
transition: all 1s ease 0s;
|
373 |
+
left: 0;
|
374 |
+
top: 0;
|
375 |
+
width: 100%;
|
376 |
+
}
|
377 |
+
.skin.spinrightfast:hover .layer-content{
|
378 |
+
opacity: 1;
|
379 |
+
}
|
380 |
+
.skin.spinrightfast .layer-content {
|
381 |
+
left: 0;
|
382 |
+
opacity: 0;
|
383 |
+
position: absolute;
|
384 |
+
top: 0;
|
385 |
+
width: 100%;
|
386 |
+
transition: all 1s ease 0s;
|
387 |
+
}
|
388 |
+
.skin.spinrightfast .layer-hover {
|
389 |
+
display: none;
|
390 |
+
}
|
391 |
+
|
392 |
+
/*################### spinleftfast ########################*/
|
393 |
+
|
394 |
+
.skin.spinleftfast {
|
395 |
+
overflow: hidden;
|
396 |
+
position: relative;
|
397 |
+
vertical-align: top;
|
398 |
+
}
|
399 |
+
|
400 |
+
.skin.spinleftfast:hover .layer-media {
|
401 |
+
transform: rotate(-180deg);
|
402 |
+
opacity: 0;
|
403 |
+
}
|
404 |
+
|
405 |
+
.skin.spinleftfast .layer-media {
|
406 |
+
transition: all 1s ease 0s;
|
407 |
+
left: 0;
|
408 |
+
top: 0;
|
409 |
+
width: 100%;
|
410 |
+
}
|
411 |
+
.skin.spinleftfast:hover .layer-content{
|
412 |
+
opacity: 1;
|
413 |
+
}
|
414 |
+
.skin.spinleftfast .layer-content {
|
415 |
+
left: 0;
|
416 |
+
opacity: 0;
|
417 |
+
position: absolute;
|
418 |
+
top: 0;
|
419 |
+
width: 100%;
|
420 |
+
transition: all 1s ease 0s;
|
421 |
+
}
|
422 |
+
.skin.spinleftfast .layer-hover {
|
423 |
+
display: none;
|
424 |
+
}
|
425 |
+
|
426 |
+
/*################### thumbgoleft ########################*/
|
427 |
+
|
428 |
+
.skin.thumbgoleft {
|
429 |
+
overflow: hidden;
|
430 |
+
position: relative;
|
431 |
+
vertical-align: top;
|
432 |
+
}
|
433 |
+
|
434 |
+
.skin.thumbgoleft:hover .layer-media {
|
435 |
+
opacity: 0;
|
436 |
+
transform: scale(0.5) translateX(-100%);
|
437 |
+
}
|
438 |
+
|
439 |
+
.skin.thumbgoleft .layer-media {
|
440 |
+
transition: all 1s ease 0s;
|
441 |
+
width: 100%;
|
442 |
+
}
|
443 |
+
.skin.thumbgoleft:hover .layer-content{
|
444 |
+
opacity: 1;
|
445 |
+
}
|
446 |
+
.skin.thumbgoleft .layer-content {
|
447 |
+
left: 0;
|
448 |
+
opacity: 0;
|
449 |
+
position: absolute;
|
450 |
+
top: 0;
|
451 |
+
transition: all 1s ease 0s;
|
452 |
+
}
|
453 |
+
.skin.thumbgoleft .layer-hover {
|
454 |
+
display: none;
|
455 |
+
}
|
456 |
+
|
457 |
+
|
458 |
+
/*################### thumbgoright ########################*/
|
459 |
+
|
460 |
+
.skin.thumbgoright {
|
461 |
+
overflow: hidden;
|
462 |
+
position: relative;
|
463 |
+
vertical-align: top;
|
464 |
+
}
|
465 |
+
|
466 |
+
.skin.thumbgoright:hover .layer-media {
|
467 |
+
opacity: 0;
|
468 |
+
transform: scale(0.5) translateX(100%);
|
469 |
+
}
|
470 |
+
|
471 |
+
.skin.thumbgoright .layer-media {
|
472 |
+
transition: all 1s ease 0s;
|
473 |
+
width: 100%;
|
474 |
+
}
|
475 |
+
.skin.thumbgoright:hover .layer-content{
|
476 |
+
opacity: 1;
|
477 |
+
}
|
478 |
+
.skin.thumbgoright .layer-content {
|
479 |
+
left: 0;
|
480 |
+
opacity: 0;
|
481 |
+
position: absolute;
|
482 |
+
top: 0;
|
483 |
+
transition: all 1s ease 0s;
|
484 |
+
}
|
485 |
+
.skin.thumbgoright .layer-hover {
|
486 |
+
display: none;
|
487 |
+
}
|
488 |
+
|
489 |
+
|
490 |
+
|
491 |
+
|
492 |
+
/*################### thumbgotop ########################*/
|
493 |
+
|
494 |
+
.skin.thumbgotop {
|
495 |
+
overflow: hidden;
|
496 |
+
position: relative;
|
497 |
+
vertical-align: top;
|
498 |
+
}
|
499 |
+
.skin.thumbgotop:hover .layer-media {
|
500 |
+
opacity: 0;
|
501 |
+
top: -100%;
|
502 |
+
transform: translateY(-100%) scale(0.6);
|
503 |
+
}
|
504 |
+
|
505 |
+
.skin.thumbgotop .layer-media {
|
506 |
+
transition: all 1s ease 0s;
|
507 |
+
width: 100%;
|
508 |
+
}
|
509 |
+
.skin.thumbgotop:hover .layer-content{
|
510 |
+
opacity: 1;
|
511 |
+
}
|
512 |
+
.skin.thumbgotop .layer-content {
|
513 |
+
left: 0;
|
514 |
+
opacity: 0;
|
515 |
+
position: absolute;
|
516 |
+
top: 0;
|
517 |
+
transition: all 1s ease 0s;
|
518 |
+
}
|
519 |
+
.skin.thumbgotop .layer-hover {
|
520 |
+
display: none;
|
521 |
+
}
|
522 |
+
|
523 |
+
|
524 |
+
|
525 |
+
|
526 |
+
/*################### thumbgobottom ########################*/
|
527 |
+
|
528 |
+
.skin.thumbgobottom {
|
529 |
+
overflow: hidden;
|
530 |
+
position: relative;
|
531 |
+
vertical-align: top;
|
532 |
+
}
|
533 |
+
.skin.thumbgobottom:hover .layer-media {
|
534 |
+
bottom: -100%;
|
535 |
+
opacity: 0;
|
536 |
+
transform: scale(0.5) translateY(100%);
|
537 |
+
}
|
538 |
+
.skin.thumbgobottom .layer-media {
|
539 |
+
transition: all 1s ease 0s;
|
540 |
+
width: 100%;
|
541 |
+
}
|
542 |
+
.skin.thumbgobottom:hover .layer-content{
|
543 |
+
opacity: 1;
|
544 |
+
}
|
545 |
+
.skin.thumbgobottom .layer-content {
|
546 |
+
left: 0;
|
547 |
+
opacity: 0;
|
548 |
+
position: absolute;
|
549 |
+
top: 0;
|
550 |
+
width: 100%;
|
551 |
+
transition: all 1s ease 0s;
|
552 |
+
}
|
553 |
+
.skin.thumbgobottom .layer-hover {
|
554 |
+
display: none;
|
555 |
+
}
|
556 |
+
|
557 |
+
|
558 |
+
|
559 |
+
|
560 |
+
|
561 |
+
|
562 |
+
|
563 |
+
|
564 |
+
|
565 |
+
/*################### thumbmiddle ########################*/
|
566 |
+
.skin.thumbmiddle {
|
567 |
+
overflow: hidden;
|
568 |
+
position: relative;
|
569 |
+
vertical-align: top;
|
570 |
+
}
|
571 |
+
|
572 |
+
.skin.thumbmiddle:hover .layer-media {
|
573 |
+
transform: scale(0.9);
|
574 |
+
opacity: 0.3;
|
575 |
+
z-index:9;
|
576 |
+
}
|
577 |
+
|
578 |
+
.skin.thumbmiddle .layer-media {
|
579 |
+
transition: all 0.4s ease 0s;
|
580 |
+
left: 0;
|
581 |
+
top: 0;
|
582 |
+
width: 100%;
|
583 |
+
}
|
584 |
+
.skin.thumbmiddle:hover .layer-content{
|
585 |
+
opacity: 1;
|
586 |
+
z-index:10;
|
587 |
+
transform: scale(0.9);
|
588 |
+
padding:5px;
|
589 |
+
}
|
590 |
+
.skin.thumbmiddle .layer-content {
|
591 |
+
left: 0;
|
592 |
+
opacity: 0;
|
593 |
+
position: absolute;
|
594 |
+
top: 0;
|
595 |
+
transition: all 1s ease 0s;
|
596 |
+
width: 100%;
|
597 |
+
}
|
598 |
+
.skin.thumbmiddle .layer-hover {
|
599 |
+
display: none;
|
600 |
+
}
|
601 |
+
|
602 |
+
|
603 |
+
|
604 |
+
|
605 |
+
|
606 |
+
/*################### thumbskew ########################*/
|
607 |
+
.skin.thumbskew {
|
608 |
+
overflow: hidden;
|
609 |
+
position: relative;
|
610 |
+
vertical-align: top;
|
611 |
+
}
|
612 |
+
|
613 |
+
.skin.thumbskew:hover .layer-media {
|
614 |
+
transform: scale(0.9) skew(5deg);
|
615 |
+
opacity: 0.3;
|
616 |
+
z-index:9;
|
617 |
+
}
|
618 |
+
|
619 |
+
.skin.thumbskew .layer-media {
|
620 |
+
transition: all 0.4s ease 0s;
|
621 |
+
left: 0;
|
622 |
+
top: 0;
|
623 |
+
width: 100%;
|
624 |
+
}
|
625 |
+
.skin.thumbskew:hover .layer-content{
|
626 |
+
opacity: 1;
|
627 |
+
z-index:10;
|
628 |
+
transform: scale(0.9) ;
|
629 |
+
padding:5px;
|
630 |
+
}
|
631 |
+
.skin.thumbskew .layer-content {
|
632 |
+
left: 0;
|
633 |
+
opacity: 0;
|
634 |
+
position: absolute;
|
635 |
+
top: 0;
|
636 |
+
transition: all 1s ease 0s;
|
637 |
+
width: 100%;
|
638 |
+
}
|
639 |
+
.skin.thumbskew .layer-hover {
|
640 |
+
display: none;
|
641 |
+
}
|
642 |
+
|
643 |
+
|
644 |
+
|
645 |
+
|
646 |
+
/*################### contentbottom ########################*/
|
647 |
+
.skin.contentbottom {
|
648 |
+
overflow: hidden;
|
649 |
+
position: relative;
|
650 |
+
vertical-align: top;
|
651 |
+
}
|
652 |
+
|
653 |
+
.skin.contentbottom:hover .layer-media {
|
654 |
+
|
655 |
+
z-index:9;
|
656 |
+
}
|
657 |
+
|
658 |
+
.skin.contentbottom .layer-media {
|
659 |
+
transition: all 0.4s ease 0s;
|
660 |
+
left: 0;
|
661 |
+
top: 0;
|
662 |
+
width: 100%;
|
663 |
+
}
|
664 |
+
.skin.contentbottom:hover .layer-content{
|
665 |
+
|
666 |
+
}
|
667 |
+
.skin.contentbottom .layer-content {
|
668 |
+
background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
|
669 |
+
bottom: 0;
|
670 |
+
color: rgb(255, 255, 255);
|
671 |
+
left: 0;
|
672 |
+
position: absolute;
|
673 |
+
transition: all 1s ease 0s;
|
674 |
+
width: 100%;
|
675 |
+
}
|
676 |
+
.skin.contentbottom .layer-hover {
|
677 |
+
display: none;
|
678 |
+
}
|
679 |
+
|
680 |
+
|
681 |
+
|
682 |
+
|
683 |
+
|
684 |
+
/*################### contentmiddle ########################*/
|
685 |
+
.skin.contentmiddle {
|
686 |
+
overflow: hidden;
|
687 |
+
position: relative;
|
688 |
+
vertical-align: top;
|
689 |
+
}
|
690 |
+
|
691 |
+
.skin.contentmiddle:hover .layer-media {
|
692 |
+
|
693 |
+
z-index:9;
|
694 |
+
}
|
695 |
+
|
696 |
+
.skin.contentmiddle .layer-media {
|
697 |
+
transition: all 0.4s ease 0s;
|
698 |
+
left: 0;
|
699 |
+
top: 0;
|
700 |
+
width: 100%;
|
701 |
+
}
|
702 |
+
.skin.contentmiddle:hover .layer-content{
|
703 |
+
|
704 |
+
}
|
705 |
+
.skin.contentmiddle .layer-content {
|
706 |
+
background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
|
707 |
+
bottom: 50%;
|
708 |
+
color: rgb(255, 255, 255);
|
709 |
+
left: 0;
|
710 |
+
position: absolute;
|
711 |
+
transform: translate(0px, 50%);
|
712 |
+
width: 100%;
|
713 |
+
}
|
714 |
+
.skin.contentmiddle .layer-hover {
|
715 |
+
display: none;
|
716 |
+
}
|
717 |
+
|
718 |
+
|
719 |
+
|
720 |
+
/*################### contentinbottom ########################*/
|
721 |
+
.skin.contentinbottom {
|
722 |
+
overflow: hidden;
|
723 |
+
position: relative;
|
724 |
+
vertical-align: top;
|
725 |
+
}
|
726 |
+
|
727 |
+
.skin.contentinbottom:hover .layer-media {
|
728 |
+
|
729 |
+
z-index:9;
|
730 |
+
}
|
731 |
+
|
732 |
+
.skin.contentinbottom .layer-media {
|
733 |
+
transition: all 0.4s ease 0s;
|
734 |
+
left: 0;
|
735 |
+
top: 0;
|
736 |
+
width: 100%;
|
737 |
+
}
|
738 |
+
.skin.contentinbottom:hover .layer-content {
|
739 |
+
bottom: 0;
|
740 |
+
}
|
741 |
+
.skin.contentinbottom .layer-content {
|
742 |
+
background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
|
743 |
+
bottom: -100%;
|
744 |
+
color: rgb(255, 255, 255);
|
745 |
+
left: 0;
|
746 |
+
position: absolute;
|
747 |
+
transition: all 0.5s ease 0s;
|
748 |
+
width: 100%;
|
749 |
+
}
|
750 |
+
.skin.contentinbottom .layer-hover {
|
751 |
+
display: none;
|
752 |
+
}
|
753 |
+
|
754 |
+
|
755 |
+
|
756 |
+
|
757 |
+
/*################### contentinleft ########################*/
|
758 |
+
.skin.contentinleft {
|
759 |
+
overflow: hidden;
|
760 |
+
position: relative;
|
761 |
+
vertical-align: top;
|
762 |
+
}
|
763 |
+
|
764 |
+
.skin.contentinleft:hover .layer-media {
|
765 |
+
|
766 |
+
z-index:9;
|
767 |
+
}
|
768 |
+
|
769 |
+
.skin.contentinleft .layer-media {
|
770 |
+
transition: all 0.4s ease 0s;
|
771 |
+
left: 0;
|
772 |
+
top: 0;
|
773 |
+
width: 100%;
|
774 |
+
}
|
775 |
+
.skin.contentinleft:hover .layer-content {
|
776 |
+
left: 0;
|
777 |
+
}
|
778 |
+
.skin.contentinleft .layer-content {
|
779 |
+
background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
|
780 |
+
color: rgb(255, 255, 255);
|
781 |
+
height: 100%;
|
782 |
+
left: -100%;
|
783 |
+
position: absolute;
|
784 |
+
top: 0;
|
785 |
+
transition: all 0.5s ease 0s;
|
786 |
+
width: 100%;
|
787 |
+
}
|
788 |
+
.skin.contentinleft .layer-hover {
|
789 |
+
display: none;
|
790 |
+
}
|
791 |
+
|
792 |
+
|
793 |
+
|
794 |
+
/*################### contentinright ########################*/
|
795 |
+
.skin.contentinright {
|
796 |
+
overflow: hidden;
|
797 |
+
position: relative;
|
798 |
+
vertical-align: top;
|
799 |
+
}
|
800 |
+
|
801 |
+
.skin.contentinright:hover .layer-media {
|
802 |
+
|
803 |
+
z-index:9;
|
804 |
+
}
|
805 |
+
|
806 |
+
.skin.contentinright .layer-media {
|
807 |
+
transition: all 0.4s ease 0s;
|
808 |
+
left: 0;
|
809 |
+
top: 0;
|
810 |
+
width: 100%;
|
811 |
+
}
|
812 |
+
.skin.contentinright:hover .layer-content {
|
813 |
+
left: 0;
|
814 |
+
}
|
815 |
+
.skin.contentinright .layer-content {
|
816 |
+
background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
|
817 |
+
color: rgb(255, 255, 255);
|
818 |
+
height: 100%;
|
819 |
+
left: 100%;
|
820 |
+
position: absolute;
|
821 |
+
top: 0;
|
822 |
+
transition: all 0.5s ease 0s;
|
823 |
+
width: 100%;
|
824 |
+
}
|
825 |
+
.skin.contentinright .layer-hover {
|
826 |
+
display: none;
|
827 |
+
}
|
828 |
+
|
829 |
+
|
830 |
+
|
831 |
+
|
832 |
+
/*################### thumbgoleftconetntinright ########################*/
|
833 |
+
.skin.thumbgoleftconetntinright {
|
834 |
+
overflow: hidden;
|
835 |
+
position: relative;
|
836 |
+
vertical-align: top;
|
837 |
+
}
|
838 |
+
|
839 |
+
.skin.thumbgoleftconetntinright:hover .layer-media {
|
840 |
+
transform: translateX(-100%);
|
841 |
+
}
|
842 |
+
|
843 |
+
.skin.thumbgoleftconetntinright .layer-media {
|
844 |
+
transition: all 0.4s ease 0s;
|
845 |
+
left: 0;
|
846 |
+
top: 0;
|
847 |
+
width: 100%;
|
848 |
+
}
|
849 |
+
.skin.thumbgoleftconetntinright:hover .layer-content {
|
850 |
+
left: 0;
|
851 |
+
}
|
852 |
+
.skin.thumbgoleftconetntinright .layer-content {
|
853 |
+
height: 100%;
|
854 |
+
left: 100%;
|
855 |
+
position: absolute;
|
856 |
+
top: 0;
|
857 |
+
transition: all 0.5s ease 0s;
|
858 |
+
width: 100%;
|
859 |
+
}
|
860 |
+
.skin.thumbgoleftconetntinright .layer-hover {
|
861 |
+
display: none;
|
862 |
+
}
|
863 |
+
|
864 |
+
|
865 |
+
|
866 |
+
|
867 |
+
/*################### thumbgobottomconetntinright ########################*/
|
868 |
+
.skin.thumbgobottomconetntinright {
|
869 |
+
overflow: hidden;
|
870 |
+
position: relative;
|
871 |
+
vertical-align: top;
|
872 |
+
}
|
873 |
+
|
874 |
+
.skin.thumbgobottomconetntinright:hover .layer-media {
|
875 |
+
transform: translateY(100%);
|
876 |
+
}
|
877 |
+
|
878 |
+
.skin.thumbgobottomconetntinright .layer-media {
|
879 |
+
transition: all 0.4s ease 0s;
|
880 |
+
left: 0;
|
881 |
+
top: 0;
|
882 |
+
width: 100%;
|
883 |
+
}
|
884 |
+
.skin.thumbgobottomconetntinright:hover .layer-content {
|
885 |
+
left: 0;
|
886 |
+
}
|
887 |
+
.skin.thumbgobottomconetntinright .layer-content {
|
888 |
+
height: 100%;
|
889 |
+
left: 100%;
|
890 |
+
position: absolute;
|
891 |
+
top: 0;
|
892 |
+
transition: all 0.5s ease 0s;
|
893 |
+
width: 100%;
|
894 |
+
}
|
895 |
+
.skin.thumbgobottomconetntinright .layer-hover {
|
896 |
+
display: none;
|
897 |
+
}
|
898 |
+
|
899 |
+
|
900 |
+
|
901 |
+
/*################### thumbgotopconetntinright ########################*/
|
902 |
+
.skin.thumbgotopconetntinright {
|
903 |
+
overflow: hidden;
|
904 |
+
position: relative;
|
905 |
+
vertical-align: top;
|
906 |
+
}
|
907 |
+
|
908 |
+
.skin.thumbgotopconetntinright:hover .layer-media {
|
909 |
+
transform: translateY(-100%);
|
910 |
+
}
|
911 |
+
|
912 |
+
.skin.thumbgotopconetntinright .layer-media {
|
913 |
+
transition: all 0.4s ease 0s;
|
914 |
+
left: 0;
|
915 |
+
top: 0;
|
916 |
+
width: 100%;
|
917 |
+
}
|
918 |
+
.skin.thumbgotopconetntinright:hover .layer-content {
|
919 |
+
left: 0;
|
920 |
+
}
|
921 |
+
.skin.thumbgotopconetntinright .layer-content {
|
922 |
+
height: 100%;
|
923 |
+
left: 100%;
|
924 |
+
position: absolute;
|
925 |
+
top: 0;
|
926 |
+
transition: all 0.5s ease 0s;
|
927 |
+
width: 100%;
|
928 |
+
}
|
929 |
+
.skin.thumbgotopconetntinright .layer-hover {
|
930 |
+
display: none;
|
931 |
+
}
|
932 |
+
|
933 |
+
|
934 |
+
|
935 |
+
/*################### thumbgorightconetntinright ########################*/
|
936 |
+
.skin.thumbgorightconetntinright {
|
937 |
+
overflow: hidden;
|
938 |
+
position: relative;
|
939 |
+
vertical-align: top;
|
940 |
+
}
|
941 |
+
|
942 |
+
.skin.thumbgorightconetntinright:hover .layer-media {
|
943 |
+
transform: translateX(100%);
|
944 |
+
}
|
945 |
+
|
946 |
+
.skin.thumbgorightconetntinright .layer-media {
|
947 |
+
transition: all 0.4s ease 0s;
|
948 |
+
left: 0;
|
949 |
+
top: 0;
|
950 |
+
width: 100%;
|
951 |
+
}
|
952 |
+
.skin.thumbgorightconetntinright:hover .layer-content {
|
953 |
+
left: 0;
|
954 |
+
}
|
955 |
+
.skin.thumbgorightconetntinright .layer-content {
|
956 |
+
height: 100%;
|
957 |
+
left: 100%;
|
958 |
+
position: absolute;
|
959 |
+
top: 0;
|
960 |
+
transition: all 0.5s ease 0s;
|
961 |
+
width: 100%;
|
962 |
+
}
|
963 |
+
.skin.thumbgorightconetntinright .layer-hover {
|
964 |
+
display: none;
|
965 |
+
}
|
966 |
+
|
967 |
+
|
968 |
+
|
969 |
+
/*################### halfthumbleft ########################*/
|
970 |
+
|
971 |
+
|
972 |
+
.skin.halfthumbleft {
|
973 |
+
overflow: hidden;
|
974 |
+
vertical-align: top;
|
975 |
+
}
|
976 |
+
.skin.halfthumbleft .layer-media {
|
977 |
+
display: inline-block;
|
978 |
+
float: left;
|
979 |
+
vertical-align: top;
|
980 |
+
width: 49%;
|
981 |
+
}
|
982 |
+
.skin.halfthumbleft .layer-content {
|
983 |
+
display: inline-block;
|
984 |
+
float: right;
|
985 |
+
width: 49%;
|
986 |
+
}
|
987 |
+
.skin.halfthumbleft .layer-hover {
|
988 |
+
display: none;
|
989 |
+
}
|
990 |
+
|
991 |
+
|
992 |
+
/*################### halfthumbright ########################*/
|
993 |
+
|
994 |
+
.skin.halfthumbright {
|
995 |
+
overflow: hidden;
|
996 |
+
vertical-align: top;
|
997 |
+
}
|
998 |
+
.skin.halfthumbright .layer-media {
|
999 |
+
display: inline-block;
|
1000 |
+
float: right;
|
1001 |
+
vertical-align: top;
|
1002 |
+
width: 49%;
|
1003 |
+
}
|
1004 |
+
.skin.halfthumbright .layer-content {
|
1005 |
+
display: inline-block;
|
1006 |
+
width: 49%;
|
1007 |
+
}
|
1008 |
+
.skin.halfthumbright .layer-hover {
|
1009 |
+
display: none;
|
1010 |
+
}
|
1011 |
+
|
1012 |
+
|
1013 |
+
/*################### thumbright ########################*/
|
1014 |
+
|
1015 |
+
|
1016 |
+
.skin.thumbright{}
|
1017 |
+
.skin.thumbright .layer-media{}
|
1018 |
+
.skin.thumbright .layer-content{}
|
1019 |
+
.skin.thumbright .layer-hover{}
|
1020 |
+
|
1021 |
+
/*################### thumbrounded ########################*/
|
1022 |
+
|
1023 |
+
|
1024 |
+
.skin.thumbrounded{}
|
1025 |
+
.skin.thumbrounded .layer-media {
|
1026 |
+
border-radius: 50%;
|
1027 |
+
overflow: hidden;
|
1028 |
+
}
|
1029 |
+
|
1030 |
+
.skin.thumbrounded .layer-media .thumb {
|
1031 |
+
height:240px;
|
1032 |
+
}
|
1033 |
+
|
1034 |
+
.skin.thumbrounded .layer-content{}
|
1035 |
+
.skin.thumbrounded .layer-hover {
|
1036 |
+
display: none;
|
1037 |
+
}
|
1038 |
+
|
1039 |
+
|
1040 |
+
|
1041 |
+
|
1042 |
+
|
1043 |
+
|
1044 |
+
|
1045 |
+
|
1046 |
+
|
1047 |
+
|
1048 |
+
|
1049 |
+
|
1050 |
+
|
1051 |
+
|
1052 |
+
|
1053 |
+
|
includes/class-functions.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -15,86 +15,59 @@ class class_wcps_functions {
|
|
15 |
}
|
16 |
|
17 |
|
18 |
-
public function wcps_themes($themes = array())
|
19 |
-
{
|
20 |
-
|
21 |
-
$themes = array(
|
22 |
-
'theme1'=>'Theme 1',
|
23 |
-
'theme2'=>'Theme 2',
|
24 |
-
'theme6'=>'Theme 6',
|
25 |
-
|
26 |
-
);
|
27 |
-
|
28 |
-
foreach(apply_filters( 'wcps_themes', $themes ) as $theme_key=> $theme_name)
|
29 |
-
{
|
30 |
-
$theme_list[$theme_key] = $theme_name;
|
31 |
-
}
|
32 |
-
|
33 |
-
|
34 |
-
return $theme_list;
|
35 |
-
|
36 |
-
}
|
37 |
|
|
|
38 |
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
'theme6'=>$main_dir.'theme6',
|
47 |
-
|
48 |
-
|
49 |
-
);
|
50 |
-
|
51 |
-
foreach(apply_filters( 'wcps_themes_dir', $themes_dir ) as $theme_key=> $theme_dir)
|
52 |
-
{
|
53 |
-
$theme_list_dir[$theme_key] = $theme_dir;
|
54 |
-
}
|
55 |
-
|
56 |
-
return $theme_list_dir;
|
57 |
-
|
58 |
-
}
|
59 |
|
|
|
|
|
|
|
|
|
|
|
60 |
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
'theme1'=>$main_url.'theme1',
|
67 |
-
'theme2'=>$main_url.'theme2',
|
68 |
-
'theme6'=>$main_url.'theme6',
|
69 |
-
|
70 |
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
72 |
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
}
|
78 |
-
|
79 |
-
return $theme_list_url;
|
80 |
-
|
81 |
-
}
|
82 |
|
|
|
83 |
|
|
|
84 |
|
|
|
85 |
|
86 |
public function wcps_grid_items($grid_items = array()){
|
87 |
|
88 |
$grid_items = array(
|
89 |
'thumb'=>__('Thumbnail','wcps'),
|
90 |
'title'=>__('Title','wcps'),
|
91 |
-
'excerpt'=>__('Excerpt','wcps'),
|
92 |
-
'category'=>__('Category','wcps'),
|
93 |
-
'price'=>__('Price','wcps'),
|
94 |
'rating'=>__('Rating','wcps'),
|
95 |
'cart'=>__('Cart','wcps'),
|
96 |
'sale'=>__('Sale','wcps'),
|
97 |
-
|
98 |
);
|
99 |
return $grid_items;
|
100 |
}
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
15 |
}
|
16 |
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
+
public function skins(){
|
20 |
|
21 |
+
$skins = array(
|
22 |
+
|
23 |
+
'flat'=> array(
|
24 |
+
'slug'=>'flat',
|
25 |
+
'name'=>'Flat',
|
26 |
+
'thumb_url'=>'',
|
27 |
+
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
+
'zoomin'=>array(
|
30 |
+
'slug'=>'zoomin',
|
31 |
+
'name'=>'ZoomIn',
|
32 |
+
'thumb_url'=>'',
|
33 |
+
),
|
34 |
|
35 |
+
'spinleft'=>array(
|
36 |
+
'slug'=>'spinleft',
|
37 |
+
'name'=>'SpinLeft',
|
38 |
+
'thumb_url'=>'',
|
39 |
+
),
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
'contentbottom'=>array(
|
42 |
+
'slug'=>'contentbottom',
|
43 |
+
'name'=>'ContentBottom',
|
44 |
+
'thumb_url'=>'',
|
45 |
+
),
|
46 |
+
|
47 |
|
48 |
+
|
49 |
+
);
|
50 |
+
|
51 |
+
$skins = apply_filters('post_grid_filter_skins', $skins);
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
+
return $skins;
|
54 |
|
55 |
+
}
|
56 |
|
57 |
+
|
58 |
|
59 |
public function wcps_grid_items($grid_items = array()){
|
60 |
|
61 |
$grid_items = array(
|
62 |
'thumb'=>__('Thumbnail','wcps'),
|
63 |
'title'=>__('Title','wcps'),
|
64 |
+
'excerpt'=>__('Excerpt','wcps'),
|
65 |
+
'category'=>__('Category','wcps'),
|
66 |
+
'price'=>__('Price','wcps'),
|
67 |
'rating'=>__('Rating','wcps'),
|
68 |
'cart'=>__('Cart','wcps'),
|
69 |
'sale'=>__('Sale','wcps'),
|
70 |
+
'featured'=>'Featured',
|
71 |
);
|
72 |
return $grid_items;
|
73 |
}
|
includes/class-settings.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -19,7 +19,7 @@ class class_wcps_settings{
|
|
19 |
public function admin_menu() {
|
20 |
|
21 |
add_submenu_page('edit.php?post_type=wcps', __('Settings','wcps'), __('Settings','wcps'), 'manage_options', 'wcps_menu_settings', array( $this, 'settings_page' ));
|
22 |
-
|
23 |
|
24 |
}
|
25 |
|
@@ -29,7 +29,6 @@ class class_wcps_settings{
|
|
29 |
|
30 |
}
|
31 |
|
32 |
-
|
33 |
|
34 |
}
|
35 |
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
19 |
public function admin_menu() {
|
20 |
|
21 |
add_submenu_page('edit.php?post_type=wcps', __('Settings','wcps'), __('Settings','wcps'), 'manage_options', 'wcps_menu_settings', array( $this, 'settings_page' ));
|
22 |
+
|
23 |
|
24 |
}
|
25 |
|
29 |
|
30 |
}
|
31 |
|
|
|
32 |
|
33 |
}
|
34 |
|
includes/class-shortcodes.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -33,19 +33,130 @@ class class_wcps_shortcodes{
|
|
33 |
|
34 |
include wcps_plugin_dir.'/templates/query.php';
|
35 |
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
|
40 |
-
|
41 |
|
42 |
$html.= '<div class="wcps-container wcps-container-'.$post_id.' '.$wcps_is_mobile.' " style="background-image:url('.$wcps_bg_img.')">';
|
43 |
include wcps_plugin_dir.'/templates/wcps-ribbon.php';
|
44 |
-
$html.= '<div id="wcps-'.$post_id.'" class="owl-carousel
|
45 |
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
-
$html.= '</div
|
49 |
|
50 |
include wcps_plugin_dir.'/templates/scripts.php';
|
51 |
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
33 |
|
34 |
include wcps_plugin_dir.'/templates/query.php';
|
35 |
|
36 |
+
//$class_wcps_functions = new class_wcps_functions();
|
37 |
+
///$wcps_themes_dir = $class_wcps_functions->wcps_themes_dir();
|
38 |
+
//$wcps_themes_url = $class_wcps_functions->wcps_themes_url();
|
39 |
|
40 |
+
//$html.= '<link type="text/css" media="all" rel="stylesheet" href="'.$wcps_themes_url[$wcps_themes].'/style.css" >';
|
41 |
|
42 |
$html.= '<div class="wcps-container wcps-container-'.$post_id.' '.$wcps_is_mobile.' " style="background-image:url('.$wcps_bg_img.')">';
|
43 |
include wcps_plugin_dir.'/templates/wcps-ribbon.php';
|
44 |
+
$html.= '<div id="wcps-'.$post_id.'" class="owl-carousel ">';
|
45 |
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
if ( $wp_query->have_posts() ) :
|
50 |
+
|
51 |
+
while ( $wp_query->have_posts() ) : $wp_query->the_post();
|
52 |
+
|
53 |
+
global $product;
|
54 |
+
|
55 |
+
$is_in_stock = $product->is_in_stock();
|
56 |
+
|
57 |
+
if ( $wcps_hide_out_of_stock=='yes' && empty($is_in_stock) ) { continue; }
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
$wcps_featured = get_post_meta( get_the_ID(), '_featured', true );
|
62 |
+
|
63 |
+
$wcps_thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $wcps_items_thumb_size );
|
64 |
+
$wcps_thumb_url = $wcps_thumb['0'];
|
65 |
+
|
66 |
+
if(empty($wcps_thumb_url)){
|
67 |
+
$wcps_thumb_url = $wcps_items_empty_thumb;
|
68 |
+
}
|
69 |
+
|
70 |
+
|
71 |
+
|
72 |
+
$currency = get_woocommerce_currency_symbol();
|
73 |
+
|
74 |
+
$sale_price = get_post_meta( get_the_ID(), '_sale_price', true);
|
75 |
+
|
76 |
+
if($wcps_total_items_price_format=='full'){
|
77 |
+
$price = $product->get_price_html();
|
78 |
+
}
|
79 |
+
elseif($wcps_total_items_price_format=='sale'){
|
80 |
+
|
81 |
+
$price= $currency.get_post_meta( get_the_ID(), '_sale_price', true);
|
82 |
+
}
|
83 |
+
elseif($wcps_total_items_price_format=='regular'){
|
84 |
+
$price = $currency.get_post_meta( get_the_ID(), '_regular_price', true);
|
85 |
+
}
|
86 |
+
else{
|
87 |
+
$price = $product->get_price_html();
|
88 |
+
}
|
89 |
+
|
90 |
+
|
91 |
+
if($wcps_items_thumb_link_to == 'product'){
|
92 |
+
$permalink = get_permalink();
|
93 |
+
}
|
94 |
+
else if($wcps_items_thumb_link_to == 'category'){
|
95 |
+
|
96 |
+
if(empty($cat_link[0])){
|
97 |
+
$permalink = get_permalink();
|
98 |
+
}
|
99 |
+
else{
|
100 |
+
$permalink = $cat_link[0];
|
101 |
+
}
|
102 |
+
}
|
103 |
+
else{
|
104 |
+
$permalink = get_permalink();
|
105 |
+
}
|
106 |
+
|
107 |
+
$html.= '<div class="wcps-items skin '.$wcps_themes.'" >';
|
108 |
+
include wcps_plugin_dir.'/templates/layer-media.php';
|
109 |
+
include wcps_plugin_dir.'/templates/layer-content.php';
|
110 |
+
|
111 |
+
$html_zoom = apply_filters( 'wcps_filter_zoom', '<i class="fa fa-search-plus"></i>' );
|
112 |
+
|
113 |
+
if($wcps_items_thumb_zoom=='yes'){
|
114 |
+
$html.= '<div class="wcps-zoom" slider-id="'.$post_id.'" product-id="'.get_the_ID().'">'.$html_zoom.'</div>';
|
115 |
+
}
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
$html.= '</div>'; // .wcps-items
|
120 |
+
|
121 |
+
|
122 |
+
/*
|
123 |
+
|
124 |
+
$html.= '<div class="wcps-items" >';
|
125 |
+
|
126 |
+
foreach($wcps_grid_items as $item_key=>$item){
|
127 |
+
|
128 |
+
if(empty($wcps_grid_items_hide[$item_key])){
|
129 |
+
include wcps_plugin_dir.'/templates/wcps-'.$item_key.'.php';
|
130 |
+
}
|
131 |
+
|
132 |
+
}
|
133 |
+
|
134 |
+
$html.= '</div>'; // .wcps-items
|
135 |
+
|
136 |
+
*/
|
137 |
+
|
138 |
+
|
139 |
+
endwhile;
|
140 |
+
wp_reset_query();
|
141 |
+
|
142 |
+
else :
|
143 |
+
$html.= __('No Product to Slide','wcps');
|
144 |
+
|
145 |
+
endif;
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
|
151 |
+
$html.= '</div>';
|
152 |
+
|
153 |
+
if($wcps_items_thumb_zoom=='yes'){
|
154 |
+
include wcps_plugin_dir.'/templates/wcps-zoom.php';
|
155 |
+
}
|
156 |
+
|
157 |
+
|
158 |
|
159 |
+
$html.= '</div>';
|
160 |
|
161 |
include wcps_plugin_dir.'/templates/scripts.php';
|
162 |
|
includes/class-update.php
ADDED
@@ -0,0 +1,141 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
+
*/
|
7 |
+
|
8 |
+
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
+
|
10 |
+
class class_wcps_udpate {
|
11 |
+
|
12 |
+
|
13 |
+
public function __construct(){
|
14 |
+
|
15 |
+
//add_action( 'admin_notices', array( $this, 'wcps_version_upgrade_notice' ) );
|
16 |
+
add_action( 'wcps_action_install', array( $this, 'wcps_update_2_1_13' ));
|
17 |
+
|
18 |
+
}
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
function wcps_version_upgrade_notice()
|
23 |
+
{
|
24 |
+
$wcps_upgrade = get_option('wcps_upgrade');
|
25 |
+
|
26 |
+
|
27 |
+
$html= '';
|
28 |
+
|
29 |
+
if($wcps_upgrade == 'done')
|
30 |
+
{
|
31 |
+
|
32 |
+
}
|
33 |
+
else{
|
34 |
+
$html.= '<div class="update-nag">';
|
35 |
+
$html.='Data update required for <b>Woocommerce Products Slider</b> latest version. <span id="wcps-upgrade">Click to update</span>';
|
36 |
+
$html.= '</div>';
|
37 |
+
}
|
38 |
+
|
39 |
+
|
40 |
+
echo $html;
|
41 |
+
}
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
public function wcps_update_2_1_13(){
|
47 |
+
|
48 |
+
|
49 |
+
$wp_query = new WP_Query(
|
50 |
+
array (
|
51 |
+
'post_type' => 'wcps',
|
52 |
+
'post_status' => 'publish',
|
53 |
+
'post_per_page' => -1,
|
54 |
+
|
55 |
+
) );
|
56 |
+
|
57 |
+
|
58 |
+
if ( $wp_query->have_posts() ) :
|
59 |
+
while ( $wp_query->have_posts() ) : $wp_query->the_post();
|
60 |
+
|
61 |
+
$wcps_themes = get_post_meta( get_the_ID(), 'wcps_themes', true );
|
62 |
+
|
63 |
+
if($wcps_themes == 'theme12'){
|
64 |
+
|
65 |
+
$wcps_themes = 'halfthumbright';
|
66 |
+
}
|
67 |
+
elseif($wcps_themes == 'theme11'){
|
68 |
+
|
69 |
+
$wcps_themes = 'halfthumbleft';
|
70 |
+
}
|
71 |
+
elseif($wcps_themes == 'theme10'){
|
72 |
+
|
73 |
+
$wcps_themes = 'contentbottom';
|
74 |
+
}
|
75 |
+
|
76 |
+
elseif($wcps_themes == 'theme9'){
|
77 |
+
|
78 |
+
$wcps_themes = 'contentinright';
|
79 |
+
}
|
80 |
+
|
81 |
+
elseif($wcps_themes == 'theme8'){
|
82 |
+
|
83 |
+
$wcps_themes = 'contentinleft';
|
84 |
+
}
|
85 |
+
|
86 |
+
elseif($wcps_themes == 'theme7'){
|
87 |
+
|
88 |
+
$wcps_themes = 'contentinbottom';
|
89 |
+
}
|
90 |
+
|
91 |
+
elseif($wcps_themes == 'theme6'){
|
92 |
+
|
93 |
+
$wcps_themes = 'zoomin';
|
94 |
+
}
|
95 |
+
elseif($wcps_themes == 'theme5'){
|
96 |
+
|
97 |
+
$wcps_themes = 'flat';
|
98 |
+
}
|
99 |
+
elseif($wcps_themes == 'theme4'){
|
100 |
+
|
101 |
+
$wcps_themes = 'flat';
|
102 |
+
}
|
103 |
+
|
104 |
+
elseif($wcps_themes == 'theme3'){
|
105 |
+
|
106 |
+
$wcps_themes = 'zoomin';
|
107 |
+
}
|
108 |
+
|
109 |
+
elseif($wcps_themes == 'theme2'){
|
110 |
+
|
111 |
+
$wcps_themes = 'flat';
|
112 |
+
}
|
113 |
+
elseif($wcps_themes == 'theme1'){
|
114 |
+
|
115 |
+
$wcps_themes = 'flat';
|
116 |
+
}
|
117 |
+
else{
|
118 |
+
$wcps_themes = $wcps_themes;
|
119 |
+
}
|
120 |
+
|
121 |
+
|
122 |
+
update_post_meta( get_the_ID(), 'wcps_themes', $wcps_themes );
|
123 |
+
|
124 |
+
|
125 |
+
endwhile;
|
126 |
+
wp_reset_query();
|
127 |
+
|
128 |
+
|
129 |
+
endif;
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
|
134 |
+
}
|
135 |
+
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
}
|
140 |
+
|
141 |
+
new class_wcps_udpate();
|
includes/{wcps-functions.php → functions.php}
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -125,136 +125,29 @@ add_action('wp_ajax_nopriv_wcps_grid_items_reset', 'wcps_grid_items_reset');
|
|
125 |
|
126 |
|
127 |
|
128 |
-
function
|
129 |
-
|
130 |
-
|
131 |
-
$wcps_product_ids = get_post_meta( $postid, 'wcps_product_ids', true );
|
132 |
-
$wcps_query_orderby = get_post_meta( $postid, 'wcps_query_orderby', true );
|
133 |
-
|
134 |
-
|
135 |
-
$return_string = '';
|
136 |
-
$return_string .= '<ul style="margin: 0;">';
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
$args_product = array(
|
141 |
-
'post_type' => 'product',
|
142 |
-
'posts_per_page' => -1,
|
143 |
-
);
|
144 |
-
|
145 |
-
$product_query = new WP_Query( $args_product );
|
146 |
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
$return_string .= "checked";
|
155 |
-
}
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
$return_string .= '/>';
|
161 |
-
|
162 |
-
$return_string .= get_the_title().'</label ></li>';
|
163 |
-
|
164 |
-
endwhile; endif; wp_reset_query();
|
165 |
-
|
166 |
-
|
167 |
-
$return_string .= '</ul>';
|
168 |
-
echo $return_string;
|
169 |
|
170 |
}
|
|
|
|
|
|
|
171 |
|
172 |
|
173 |
|
174 |
|
175 |
|
176 |
|
177 |
-
function wcps_get_taxonomy_category($postid)
|
178 |
-
{
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
$wcps_taxonomy = get_post_meta( $postid, 'wcps_taxonomy', true );
|
183 |
-
if(empty($wcps_taxonomy))
|
184 |
-
{
|
185 |
-
$wcps_taxonomy= "product_cat";
|
186 |
-
}
|
187 |
-
$wcps_taxonomy_category = get_post_meta( $postid, 'wcps_taxonomy_category', true );
|
188 |
-
|
189 |
-
|
190 |
-
if(empty($wcps_taxonomy_category))
|
191 |
-
{
|
192 |
-
$wcps_taxonomy_category =array('none'); // an empty array when no category element selected
|
193 |
-
|
194 |
-
|
195 |
-
}
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
if(!isset($_POST['taxonomy']))
|
200 |
-
{
|
201 |
-
$taxonomy =$wcps_taxonomy;
|
202 |
-
}
|
203 |
-
else
|
204 |
-
{
|
205 |
-
$taxonomy = $_POST['taxonomy'];
|
206 |
-
}
|
207 |
-
|
208 |
-
|
209 |
-
$args=array(
|
210 |
-
'orderby' => 'name',
|
211 |
-
'order' => 'ASC',
|
212 |
-
'taxonomy' => $taxonomy,
|
213 |
-
);
|
214 |
-
|
215 |
-
$categories = get_categories($args);
|
216 |
-
|
217 |
-
|
218 |
-
if(empty($categories))
|
219 |
-
{
|
220 |
-
echo "No Items Found!";
|
221 |
-
}
|
222 |
-
|
223 |
-
|
224 |
-
$return_string = '';
|
225 |
-
$return_string .= '<ul style="margin: 0;">';
|
226 |
-
|
227 |
-
foreach($categories as $category){
|
228 |
-
|
229 |
-
if(array_search($category->cat_ID, $wcps_taxonomy_category))
|
230 |
-
{
|
231 |
-
$return_string .= '<li class='.$category->cat_ID.'><label ><input class="wcps_taxonomy_category" checked type="checkbox" name="wcps_taxonomy_category['.$category->cat_ID.']" value ="'.$category->cat_ID.'" />'.$category->cat_name.'</label ></li>';
|
232 |
-
}
|
233 |
-
|
234 |
-
else
|
235 |
-
{
|
236 |
-
$return_string .= '<li class='.$category->cat_ID.'><label ><input class="wcps_taxonomy_category" type="checkbox" name="wcps_taxonomy_category['.$category->cat_ID.']" value ="'.$category->cat_ID.'" />'.$category->cat_name.'</label ></li>';
|
237 |
-
}
|
238 |
-
|
239 |
-
|
240 |
|
241 |
-
|
242 |
-
}
|
243 |
-
|
244 |
-
$return_string .= '</ul>';
|
245 |
-
|
246 |
-
echo $return_string;
|
247 |
-
|
248 |
-
if(isset($_POST['taxonomy']))
|
249 |
-
{
|
250 |
-
die();
|
251 |
-
}
|
252 |
-
|
253 |
-
|
254 |
-
}
|
255 |
|
256 |
-
add_action('wp_ajax_wcps_get_taxonomy_category', 'wcps_get_taxonomy_category');
|
257 |
-
add_action('wp_ajax_nopriv_wcps_get_taxonomy_category', 'wcps_get_taxonomy_category');
|
258 |
|
259 |
|
260 |
|
@@ -414,3 +307,5 @@ function wcps_dark_color($input_color)
|
|
414 |
|
415 |
|
416 |
|
|
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
125 |
|
126 |
|
127 |
|
128 |
+
function wcps_get_item_thumb_url(){
|
129 |
+
$product_id = (int)$_POST['product_id'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
|
131 |
+
$wcps_thumb = wp_get_attachment_image_src( get_post_thumbnail_id($product_id), 'full' );
|
132 |
+
$wcps_thumb_url = $wcps_thumb['0'];
|
133 |
+
|
134 |
+
|
135 |
+
echo $wcps_thumb_url;
|
136 |
+
|
137 |
+
die();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
}
|
140 |
+
|
141 |
+
add_action('wp_ajax_wcps_get_item_thumb_url', 'wcps_get_item_thumb_url');
|
142 |
+
add_action('wp_ajax_nopriv_wcps_get_item_thumb_url', 'wcps_get_item_thumb_url');
|
143 |
|
144 |
|
145 |
|
146 |
|
147 |
|
148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
|
|
|
|
|
151 |
|
152 |
|
153 |
|
307 |
|
308 |
|
309 |
|
310 |
+
|
311 |
+
|
includes/menu/settings.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
includes/{wcps-meta.php → meta.php}
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -71,29 +71,87 @@ function meta_boxes_wcps_input( $post ) {
|
|
71 |
|
72 |
$wcps_bg_img = get_post_meta( $post->ID, 'wcps_bg_img', true );
|
73 |
$wcps_container_padding = get_post_meta( $post->ID, 'wcps_container_padding', true );
|
74 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
$wcps_items_bg_color = get_post_meta( $post->ID, 'wcps_items_bg_color', true );
|
77 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
|
79 |
$wcps_themes = get_post_meta( $post->ID, 'wcps_themes', true );
|
80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
|
82 |
$wcps_total_items_price_format = get_post_meta( $post->ID, 'wcps_total_items_price_format', true );
|
83 |
|
84 |
$wcps_column_number = get_post_meta( $post->ID, 'wcps_column_number', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
$wcps_column_number_mobile = get_post_meta( $post->ID, 'wcps_column_number_mobile', true );
|
86 |
-
|
|
|
|
|
87 |
|
88 |
$wcps_auto_play = get_post_meta( $post->ID, 'wcps_auto_play', true );
|
89 |
-
|
|
|
|
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
$wcps_slider_navigation = get_post_meta( $post->ID, 'wcps_slider_navigation', true );
|
92 |
-
|
93 |
-
|
|
|
|
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
$wcps_slider_pagination = get_post_meta( $post->ID, 'wcps_slider_pagination', true );
|
96 |
$wcps_pagination_slide_speed = get_post_meta( $post->ID, 'wcps_pagination_slide_speed', true );
|
|
|
|
|
|
|
|
|
97 |
$wcps_slider_pagination_count = get_post_meta( $post->ID, 'wcps_slider_pagination_count', true );
|
98 |
|
99 |
$wcps_slider_pagination_bg = get_post_meta( $post->ID, 'wcps_slider_pagination_bg', true );
|
@@ -103,60 +161,101 @@ function meta_boxes_wcps_input( $post ) {
|
|
103 |
$wcps_slider_mouse_drag = get_post_meta( $post->ID, 'wcps_slider_mouse_drag', true );
|
104 |
|
105 |
$wcps_content_source = get_post_meta( $post->ID, 'wcps_content_source', true );
|
|
|
|
|
|
|
|
|
106 |
$wcps_content_year = get_post_meta( $post->ID, 'wcps_content_year', true );
|
107 |
$wcps_content_month = get_post_meta( $post->ID, 'wcps_content_month', true );
|
108 |
$wcps_content_month_year = get_post_meta( $post->ID, 'wcps_content_month_year', true );
|
109 |
|
|
|
|
|
110 |
$wcps_taxonomy = get_post_meta( $post->ID, 'wcps_taxonomy', true );
|
111 |
$wcps_taxonomy_category = get_post_meta( $post->ID, 'wcps_taxonomy_category', true );
|
112 |
|
113 |
$wcps_product_ids = get_post_meta( $post->ID, 'wcps_product_ids', true );
|
114 |
|
115 |
-
$wcps_cat_display = get_post_meta( $post->ID, 'wcps_cat_display', true );
|
116 |
$wcps_items_cat_font_size = get_post_meta( $post->ID, 'wcps_items_cat_font_size', true );
|
117 |
$wcps_items_cat_text_align = get_post_meta( $post->ID, 'wcps_items_cat_text_align', true );
|
118 |
|
119 |
-
$wcps_featured_display = get_post_meta( $post->ID, 'wcps_featured_display', true );
|
120 |
$wcps_featured_icon_url = get_post_meta( $post->ID, 'wcps_featured_icon_url', true );
|
121 |
|
122 |
-
$wcps_sale_display = get_post_meta( $post->ID, 'wcps_sale_display', true );
|
123 |
$wcps_sale_icon_url = get_post_meta( $post->ID, 'wcps_sale_icon_url', true );
|
124 |
-
|
125 |
-
|
126 |
-
$wcps_ratings_display = get_post_meta( $post->ID, 'wcps_ratings_display', true );
|
127 |
$wcps_ratings_text_align = get_post_meta( $post->ID, 'wcps_ratings_text_align', true );
|
128 |
$wcps_items_ratings_font_size = get_post_meta( $post->ID, 'wcps_items_ratings_font_size', true );
|
129 |
$wcps_items_ratings_color = get_post_meta( $post->ID, 'wcps_items_ratings_color', true );
|
130 |
|
131 |
$wcps_cart_style = get_post_meta( $post->ID, 'wcps_cart_style', true );
|
132 |
-
$wcps_cart_display = get_post_meta( $post->ID, 'wcps_cart_display', true );
|
133 |
$wcps_cart_bg = get_post_meta( $post->ID, 'wcps_cart_bg', true );
|
134 |
$wcps_cart_text_color = get_post_meta( $post->ID, 'wcps_cart_text_color', true );
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
$wcps_grid_items = get_post_meta( $post->ID, 'wcps_grid_items', true );
|
138 |
$wcps_grid_items_hide = get_post_meta( $post->ID, 'wcps_grid_items_hide', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
-
$wcps_items_title_display = get_post_meta( $post->ID, 'wcps_items_title_display', true );
|
141 |
-
$wcps_items_title_color = get_post_meta( $post->ID, 'wcps_items_title_color', true );
|
142 |
$wcps_items_title_font_size = get_post_meta( $post->ID, 'wcps_items_title_font_size', true );
|
143 |
$wcps_items_title_text_align = get_post_meta( $post->ID, 'wcps_items_title_text_align', true );
|
144 |
|
145 |
-
$wcps_items_excerpt_count = get_post_meta( $post->ID, 'wcps_items_excerpt_count', true );
|
|
|
|
|
|
|
|
|
146 |
$wcps_items_excerpt_read_more = get_post_meta( $post->ID, 'wcps_items_excerpt_read_more', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
$wcps_items_excerpt_text_align = get_post_meta( $post->ID, 'wcps_items_excerpt_text_align', true );
|
148 |
-
$wcps_items_excerpt_font_size = get_post_meta( $post->ID, 'wcps_items_excerpt_font_size', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
|
150 |
-
$wcps_items_price_display = get_post_meta( $post->ID, 'wcps_items_price_display', true );
|
151 |
-
$wcps_items_price_color = get_post_meta( $post->ID, 'wcps_items_price_color', true );
|
152 |
$wcps_items_price_font_size = get_post_meta( $post->ID, 'wcps_items_price_font_size', true );
|
153 |
$wcps_items_price_text_align = get_post_meta( $post->ID, 'wcps_items_price_text_align', true );
|
154 |
|
155 |
$wcps_items_thumb_link_to = get_post_meta( $post->ID, 'wcps_items_thumb_link_to', true );
|
156 |
$wcps_items_thumb_size = get_post_meta( $post->ID, 'wcps_items_thumb_size', true );
|
157 |
-
$wcps_items_thumb_max_hieght = get_post_meta( $post->ID, 'wcps_items_thumb_max_hieght', true );
|
|
|
158 |
|
159 |
$wcps_items_empty_thumb = get_post_meta( $post->ID, 'wcps_items_empty_thumb', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
$wcps_query_order = get_post_meta( $post->ID, 'wcps_query_order', true );
|
161 |
$wcps_query_orderby = get_post_meta( $post->ID, 'wcps_query_orderby', true );
|
162 |
$wcps_hide_out_of_stock = get_post_meta( $post->ID, 'wcps_hide_out_of_stock', true );
|
@@ -166,20 +265,9 @@ function meta_boxes_wcps_input( $post ) {
|
|
166 |
|
167 |
$wcps_items_custom_css = get_post_meta( $post->ID, 'wcps_items_custom_css', true );
|
168 |
|
169 |
-
|
170 |
-
|
171 |
|
172 |
-
|
173 |
|
174 |
-
if(empty($wcps_content_source))
|
175 |
-
{
|
176 |
-
$wcps_content_source = 'recent';
|
177 |
-
}
|
178 |
-
|
179 |
-
|
180 |
-
$class_wcps_functions = new class_wcps_functions();
|
181 |
-
|
182 |
-
$wcps_themes_list = $class_wcps_functions->wcps_themes();
|
183 |
|
184 |
|
185 |
$wcps_id = $post->ID;
|
@@ -187,22 +275,8 @@ function meta_boxes_wcps_input( $post ) {
|
|
187 |
|
188 |
|
189 |
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
<div class="para-settings">
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
<ul class="tab-nav">
|
205 |
-
|
206 |
<li nav="1" class="nav1 active"><i class="fa fa-code"></i> <?php _e('Shortcode','wcps');?></li>
|
207 |
<li nav="2" class="nav2"><i class="fa fa-cogs"></i> <?php _e('Options','wcps');?></li>
|
208 |
<li nav="3" class="nav3"><i class="fa fa-diamond"></i> <?php _e('Style','wcps');?></li>
|
@@ -233,20 +307,20 @@ function meta_boxes_wcps_input( $post ) {
|
|
233 |
<div class="option-box">
|
234 |
<p class="option-title"><?php _e('Slider Total Items','wcps');?></p>
|
235 |
<p class="option-info"><?php _e('ex: 10','wcps');?></p>
|
236 |
-
<input type="text" placeholder="10" name="wcps_total_items" value="<?php
|
237 |
</div>
|
238 |
|
239 |
<div class="option-box">
|
240 |
<p class="option-title"><?php _e('Slider Column Number','wcps');?></p>
|
241 |
|
242 |
<p class="option-info"><?php _e('In Destop: (min:1000px and max)','wcps');?></p>
|
243 |
-
<input type="text" placeholder="
|
244 |
|
245 |
<p class="option-info"><?php _e('In Tablet & Small Desktop: (900px max width)','wcps');?></p>
|
246 |
-
<input type="text" placeholder="2" name="wcps_column_number_tablet" value="<?php
|
247 |
|
248 |
<p class="option-info"><?php _e('In Mobile: (479px max width)','wcps');?></p>
|
249 |
-
<input type="text" placeholder="1" name="wcps_column_number_mobile" value="<?php
|
250 |
|
251 |
|
252 |
|
@@ -255,60 +329,42 @@ function meta_boxes_wcps_input( $post ) {
|
|
255 |
<div class="option-box">
|
256 |
<p class="option-title"><?php _e('Slider Auto Play','wcps');?></p>
|
257 |
<p class="option-info"></p>
|
258 |
-
|
259 |
-
|
260 |
-
<
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
?>
|
266 |
-
<label for="wcps_auto_play" ><?php _e('Inactive','wcps');?></label>
|
267 |
-
<?php
|
268 |
-
}
|
269 |
-
?>
|
270 |
</div>
|
271 |
<div class="option-box">
|
272 |
<p class="option-title"><?php _e('Slider Stop on Hover','wcps');?></p>
|
273 |
<p class="option-info"></p>
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
?>
|
282 |
-
<label for="wcps_stop_on_hover" ><?php _e('Inactive','wcps');?></label>
|
283 |
-
<?php
|
284 |
-
}
|
285 |
-
?>
|
286 |
</div>
|
287 |
<div class="option-box">
|
288 |
<p class="option-title"><?php _e('Slider Navigation','wcps');?></p>
|
289 |
<p class="option-info"><?php _e('Slider Navigation at Top','wcps');?></p>
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
{
|
297 |
-
?>
|
298 |
-
<label for="wcps_slider_navigation" ><?php _e('Inactive','wcps');?></label>
|
299 |
-
<?php
|
300 |
-
}
|
301 |
-
?>
|
302 |
-
|
303 |
-
|
304 |
|
305 |
<p class="option-info"><?php _e('Slider Navigation Position','wcps');?></p>
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
|
313 |
|
314 |
</div>
|
@@ -318,39 +374,28 @@ function meta_boxes_wcps_input( $post ) {
|
|
318 |
<div class="option-box">
|
319 |
<p class="option-title"><?php _e('Slider Pagination','wcps');?></p>
|
320 |
<p class="option-info"><?php _e('Slider Pagination at Bottom','wcps');?></p>
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
{
|
328 |
-
?>
|
329 |
-
<label for="wcps_slider_pagination" ><?php _e('Inactive','wcps');?></label>
|
330 |
-
<?php
|
331 |
-
}
|
332 |
-
?>
|
333 |
|
334 |
|
335 |
<p class="option-info"><?php _e('Pagination Background Color','wcps');?></p>
|
336 |
-
<input type="text" name="wcps_slider_pagination_bg" class="wcps_color" id="wcps_slider_pagination_bg" value="<?php
|
337 |
|
338 |
<p class="option-info"><?php _e('Pagination Text Color','wcps');?></p>
|
339 |
-
<input type="text" name="wcps_slider_pagination_text_color" class="wcps_color" id="wcps_slider_pagination_text_color" value="<?php
|
340 |
|
341 |
<p class="option-info"><?php _e('Pagination Number Counting','wcps');?></p>
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
?>
|
350 |
-
<label for="wcps_slider_pagination_count" ><?php _e('Inactive','wcps');?></label>
|
351 |
-
<?php
|
352 |
-
}
|
353 |
-
?>
|
354 |
|
355 |
|
356 |
</div>
|
@@ -361,45 +406,36 @@ function meta_boxes_wcps_input( $post ) {
|
|
361 |
<div class="option-box">
|
362 |
<p class="option-title"><?php _e('Slide Speed','wcps');?></p>
|
363 |
<p class="option-info"></p>
|
364 |
-
<input type="text" id="wcps_slide_speed" name="wcps_slide_speed" value="<?php
|
365 |
</div>
|
366 |
<div class="option-box">
|
367 |
<p class="option-title"><?php _e('Pagination Slide Speed','wcps');?></p>
|
368 |
<p class="option-info"></p>
|
369 |
-
<input type="text" id="wcps_pagination_slide_speed" name="wcps_pagination_slide_speed" value="<?php
|
370 |
</div>
|
371 |
|
372 |
<div class="option-box">
|
373 |
<p class="option-title"><?php _e('Slider Touch Drag Enabled','wcps');?></p>
|
374 |
<p class="option-info"></p>
|
375 |
-
|
376 |
-
|
377 |
-
<
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
<label for="wcps_slider_touch_drag" ><?php _e('Inactive','wcps');?></label>
|
384 |
-
<?php
|
385 |
-
}
|
386 |
-
?>
|
387 |
</div>
|
388 |
<div class="option-box">
|
389 |
<p class="option-title"><?php _e('Slider Mouse Drag Enabled','wcps');?></p>
|
390 |
<p class="option-info"></p>
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
?>
|
399 |
-
<label for="wcps_slider_mouse_drag" ><?php _e('Inactive','wcps');?></label>
|
400 |
-
<?php
|
401 |
-
}
|
402 |
-
?>
|
403 |
</div>
|
404 |
|
405 |
</li>
|
@@ -410,12 +446,14 @@ function meta_boxes_wcps_input( $post ) {
|
|
410 |
<select name="wcps_themes" >
|
411 |
<?php
|
412 |
|
413 |
-
|
414 |
-
|
415 |
-
echo '<option value="'.$theme_key.'"';
|
416 |
-
if($wcps_themes == $theme_key) echo "selected";
|
417 |
-
echo '>'.$theme_name.'</option>';
|
418 |
|
|
|
|
|
|
|
|
|
|
|
419 |
}
|
420 |
?>
|
421 |
</select>
|
@@ -473,7 +511,7 @@ function meta_boxes_wcps_input( $post ) {
|
|
473 |
|
474 |
?>
|
475 |
|
476 |
-
<input style="width:100%;" type="text" id="wcps_ribbon_custom" name="wcps_ribbon_custom" placeholder="Custom url for ribbons." id="wcps_ribbon_custom" value="<?php
|
477 |
|
478 |
<?php
|
479 |
|
@@ -482,10 +520,7 @@ function meta_boxes_wcps_input( $post ) {
|
|
482 |
echo '#wcps_metabox #wcps_ribbon_custom{display:block }';
|
483 |
echo '</style>';
|
484 |
}
|
485 |
-
|
486 |
|
487 |
-
|
488 |
-
|
489 |
?>
|
490 |
|
491 |
|
@@ -502,7 +537,7 @@ function meta_boxes_wcps_input( $post ) {
|
|
502 |
<div class="option-box">
|
503 |
<p class="option-title"><?php _e('Container options','wcps'); ?></p>
|
504 |
<p class="option-info"><?php _e('Padding: (ex: 10px)','wcps'); ?></p>
|
505 |
-
<input type="text" name="wcps_container_padding" value="<?php echo $wcps_container_padding; ?>" />
|
506 |
|
507 |
<p class="option-info"><?php _e('Background color:','wcps'); ?></p>
|
508 |
<input type="text" class="wcps_color" name="wcps_container_bg_color" value="<?php echo $wcps_container_bg_color; ?>" />
|
@@ -555,7 +590,7 @@ function meta_boxes_wcps_input( $post ) {
|
|
555 |
<div class="option-box">
|
556 |
<p class="option-title"><?php _e('Empty Thumbnail','wcps');?></p>
|
557 |
<p class="option-info"><?php _e('Custom thumbnail image url','wcps');?></p>
|
558 |
-
<input type="text" name="wcps_items_empty_thumb" id="wcps_items_empty_thumb" value="<?php
|
559 |
<input id="wcps_items_empty_thumb_upload" class="wcps_items_empty_thumb_upload button" type="button" value="Upload Image" />
|
560 |
<br /><br />
|
561 |
|
@@ -626,8 +661,9 @@ function meta_boxes_wcps_input( $post ) {
|
|
626 |
<p class="option-title"><?php _e('Query order','wcps'); ?></p>
|
627 |
<p class="option-info"></p>
|
628 |
<select name="wcps_query_order" >
|
629 |
-
<option value="ASC" <?php if($wcps_query_order=="ASC") echo "selected"; ?>><?php _e('Ascending ','wcps');?></option>
|
630 |
<option value="DESC" <?php if($wcps_query_order=="DESC") echo "selected"; ?>><?php _e('Descending','wcps');?></option>
|
|
|
|
|
631 |
|
632 |
</select>
|
633 |
</div>
|
@@ -672,44 +708,51 @@ function meta_boxes_wcps_input( $post ) {
|
|
672 |
<p class="option-title"><?php _e('Filter Slider Content.','wcps');?></p>
|
673 |
<p class="option-info"></p>
|
674 |
<ul class="content_source_area" >
|
675 |
-
<li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_recent" type="radio" value="recent" <?php if($wcps_content_source=="recent") echo "checked";?> /> <label for="wcps_content_source_recent"><?php _e('Display from Recent Published','wcps');?></label>
|
676 |
<div class="wcps_content_source_recent content-source-box"><?php _e('Slider items will query from recent published product.','wcps');?></div>
|
677 |
</li>
|
678 |
|
679 |
-
<li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_featured" type="radio" value="featured" <?php if($wcps_content_source=="featured") echo "checked";?> /> <label for="wcps_content_source_featured"><?php _e('Display from Featured Product','wcps');?></label>
|
680 |
<div class="wcps_content_source_featured content-source-box"><?php _e('Slider items will query from featured marked product.','wcps');?></div>
|
681 |
</li>
|
682 |
|
683 |
-
<li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_year" type="radio" value="year" <?php if($wcps_content_source=="year") echo "checked";?> /> <label for="wcps_content_source_year"><?php _e('Display from Only Year','wcps');?></label>
|
684 |
|
685 |
<div class="wcps_content_source_year content-source-box"><?php _e('Slider items will query from a year.','wcps');?>
|
686 |
-
<input type="text" size="7" class="wcps_content_year" name="wcps_content_year" value="<?php
|
687 |
</div>
|
688 |
</li>
|
689 |
|
690 |
-
<li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_month" type="radio" value="month" <?php if($wcps_content_source=="month") echo "checked";?> /> <label for="wcps_content_source_month"><?php _e('Display from Month','wcps');?></label>
|
691 |
<div class="wcps_content_source_month content-source-box"><?php _e('Slider items will query from Month of a year.','wcps');?> <br />
|
692 |
-
<input type="text" size="7" class="wcps_content_month_year" name="wcps_content_month_year" value="<?php
|
693 |
-
<input type="text" size="7" class="wcps_content_month" name="wcps_content_month" value="<?php
|
694 |
</div>
|
695 |
</li>
|
696 |
|
697 |
|
698 |
-
|
699 |
-
|
700 |
</ul>
|
701 |
</div>
|
702 |
|
703 |
<div class="option-box">
|
704 |
<p class="option-title"><?php _e('Items sort.','wcps'); ?></p>
|
705 |
-
<p class="option-info"
|
706 |
<div class="button wcps_grid_items_reset" wcps_id="<?php echo $wcps_id; ?>"><?php _e('Reset','wcps');?></div>
|
707 |
<br /><br />
|
708 |
|
709 |
<?php
|
710 |
$class_wcps_functions = new class_wcps_functions();
|
|
|
|
|
711 |
if(empty($wcps_grid_items)){
|
|
|
712 |
$wcps_grid_items = $class_wcps_functions->wcps_grid_items();
|
|
|
|
|
|
|
|
|
|
|
713 |
}
|
714 |
|
715 |
$wcps_grid_items = apply_filters('wcps_grid_items',$wcps_grid_items);
|
@@ -750,11 +793,11 @@ function meta_boxes_wcps_input( $post ) {
|
|
750 |
<p class="option-title"><?php _e('Slider Thumbnail Size','wcps');?></p>
|
751 |
<p class="option-info"></p>
|
752 |
<select name="wcps_items_thumb_size" >
|
753 |
-
|
754 |
-
<option value="thumbnail" <?php if($wcps_items_thumb_size=="thumbnail")echo "selected"; ?>><?php _e('Thumbnail','wcps');?></option>
|
755 |
-
<option value="medium" <?php if($wcps_items_thumb_size=="medium")echo "selected"; ?>><?php _e('Medium','wcps');?></option>
|
756 |
<option value="large" <?php if($wcps_items_thumb_size=="large")echo "selected"; ?>><?php _e('Large','wcps');?></option>
|
757 |
-
|
|
|
|
|
758 |
</select>
|
759 |
</div>
|
760 |
|
@@ -764,6 +807,7 @@ function meta_boxes_wcps_input( $post ) {
|
|
764 |
<p class="option-info"></p>
|
765 |
<select name="wcps_items_thumb_link_to" >
|
766 |
<option value="product" <?php if($wcps_items_thumb_link_to=="product")echo "selected"; ?>><?php _e('Product','wcps');?></option>
|
|
|
767 |
</select>
|
768 |
</div>
|
769 |
|
@@ -773,10 +817,18 @@ function meta_boxes_wcps_input( $post ) {
|
|
773 |
<div class="option-box">
|
774 |
<p class="option-title"><?php _e('Slider thumb max hieght(px)','wcps');?></p>
|
775 |
<p class="option-info"></p>
|
776 |
-
<input type="text" name="wcps_items_thumb_max_hieght" placeholder="14px" id="wcps_items_thumb_max_hieght" value="<?php
|
777 |
</div>
|
778 |
|
779 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
780 |
|
781 |
|
782 |
<?php
|
@@ -793,40 +845,27 @@ function meta_boxes_wcps_input( $post ) {
|
|
793 |
<option value="custom" <?php if($wcps_cart_style=="custom")echo "selected"; ?>><?php _e('Custom','wcps');?></option>
|
794 |
</select>
|
795 |
</div>
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
<div class="option-box">
|
800 |
-
<p class="option-title"><?php _e('Items Add to cart button Display','wcps');?></p>
|
801 |
-
<p class="option-info"><?php _e('You can hide items Add to cart button on slider.','wcps');?></p>
|
802 |
-
<select name="wcps_cart_display" >
|
803 |
-
<option value="yes" <?php if($wcps_cart_display=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
|
804 |
-
<option value="no" <?php if($wcps_cart_display=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
|
805 |
-
</select>
|
806 |
-
</div>
|
807 |
-
|
808 |
<div class="option-box">
|
809 |
<p class="option-title"><?php _e('Add to cart Background Color','wcps');?></p>
|
810 |
<p class="option-info"></p>
|
811 |
-
<input type="text" name="wcps_cart_bg" class="wcps_color" id="wcps_cart_bg" value="<?php
|
812 |
</div>
|
813 |
|
814 |
<div class="option-box">
|
815 |
<p class="option-title"><?php _e('Add to cart Text Color','wcps');?></p>
|
816 |
<p class="option-info"></p>
|
817 |
-
<input type="text" name="wcps_cart_text_color" class="wcps_color" id="wcps_cart_text_color" value="<?php
|
818 |
</div>
|
819 |
|
820 |
<div class="option-box">
|
821 |
-
<p class="option-title"><?php _e('Items
|
822 |
|
823 |
|
824 |
<select name="wcps_cart_text_align" >
|
825 |
<option value="left" <?php if($wcps_cart_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
826 |
-
<option value="center" <?php if($wcps_cart_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
827 |
<option value="right" <?php if($wcps_cart_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
828 |
-
|
829 |
-
|
830 |
</select>
|
831 |
|
832 |
</div>
|
@@ -839,19 +878,12 @@ function meta_boxes_wcps_input( $post ) {
|
|
839 |
elseif($item_key == 'sale'){
|
840 |
|
841 |
?>
|
842 |
-
|
843 |
-
<p class="option-title"><?php _e('Items Sale marker display','wcps');?></p>
|
844 |
-
<p class="option-info"><?php _e('You can hide items featured marker on slider.','wcps');?></p>
|
845 |
-
<select name="wcps_sale_display" >
|
846 |
-
<option value="yes" <?php if($wcps_sale_display=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
|
847 |
-
<option value="no" <?php if($wcps_sale_display=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
|
848 |
-
</select>
|
849 |
-
</div>
|
850 |
|
851 |
<div class="option-box">
|
852 |
-
<p class="option-title"><?php _e('Sale marker icon','wcps');?></p>
|
853 |
<p class="option-info"></p>
|
854 |
-
<input type="text" name="wcps_sale_icon_url" placeholder="" id="wcps_sale_icon_url" value="<?php
|
855 |
</div>
|
856 |
|
857 |
|
@@ -865,27 +897,17 @@ function meta_boxes_wcps_input( $post ) {
|
|
865 |
elseif($item_key == 'title'){
|
866 |
|
867 |
?>
|
868 |
-
|
869 |
-
<p class="option-title"><?php _e('Items Title Display','wcps');?></p>
|
870 |
-
<p class="option-info"><?php _e('You can hide items title on slider.','wcps');?></p>
|
871 |
-
|
872 |
-
<select name="wcps_items_title_display" >
|
873 |
-
<option value="yes" <?php if($wcps_items_title_display=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
|
874 |
-
<option value="no" <?php if($wcps_items_title_display=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
|
875 |
-
</select>
|
876 |
-
|
877 |
-
</div>
|
878 |
-
|
879 |
|
880 |
<div class="option-box">
|
881 |
<p class="option-title"><?php _e('Items Title Color','wcps');?></p>
|
882 |
<p class="option-info"></p>
|
883 |
-
<input type="text" name="wcps_items_title_color" class="wcps_color" id="wcps_items_title_color" value="<?php
|
884 |
</div>
|
885 |
<div class="option-box">
|
886 |
<p class="option-title"><?php _e('Items Title Font Size','wcps');?></p>
|
887 |
<p class="option-info"></p>
|
888 |
-
<input type="text" name="wcps_items_title_font_size" placeholder="14px" id="wcps_items_title_font_size" value="<?php
|
889 |
</div>
|
890 |
|
891 |
|
@@ -896,7 +918,6 @@ function meta_boxes_wcps_input( $post ) {
|
|
896 |
<select name="wcps_items_title_text_align" >
|
897 |
<option value="left" <?php if($wcps_items_title_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
898 |
<option value="right" <?php if($wcps_items_title_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
899 |
-
|
900 |
<option value="center" <?php if($wcps_items_title_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
901 |
</select>
|
902 |
|
@@ -908,19 +929,11 @@ function meta_boxes_wcps_input( $post ) {
|
|
908 |
|
909 |
elseif($item_key == 'featured'){
|
910 |
?>
|
|
|
911 |
<div class="option-box">
|
912 |
-
<p class="option-title"><?php _e('
|
913 |
-
<p class="option-info"><?php _e('You can hide items featured marker on slider.','wcps');?></p>
|
914 |
-
<select name="wcps_featured_display" >
|
915 |
-
<option value="yes" <?php if($wcps_featured_display=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
|
916 |
-
<option value="no" <?php if($wcps_featured_display=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
|
917 |
-
</select>
|
918 |
-
</div>
|
919 |
-
|
920 |
-
<div class="option-box">
|
921 |
-
<p class="option-title"><?php _e('Featured marker icon','wcps');?></p>
|
922 |
<p class="option-info"></p>
|
923 |
-
<input type="text" name="wcps_featured_icon_url" placeholder="" id="wcps_featured_icon_url" value="<?php
|
924 |
</div>
|
925 |
|
926 |
|
@@ -929,18 +942,6 @@ function meta_boxes_wcps_input( $post ) {
|
|
929 |
elseif($item_key == 'price'){
|
930 |
?>
|
931 |
|
932 |
-
|
933 |
-
<div class="option-box">
|
934 |
-
<p class="option-title"><?php _e('Items Price Display','wcps');?></p>
|
935 |
-
<p class="option-info"><?php _e('You can hide items price on slider.','wcps');?></p>
|
936 |
-
|
937 |
-
<select name="wcps_items_price_display" >
|
938 |
-
<option value="yes" <?php if($wcps_items_price_display=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
|
939 |
-
<option value="no" <?php if($wcps_items_price_display=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
|
940 |
-
</select>
|
941 |
-
|
942 |
-
</div>
|
943 |
-
|
944 |
<div class="option-box">
|
945 |
<p class="option-title"><?php _e('Price format on slider','wcps');?></p>
|
946 |
<p class="option-info"></p>
|
@@ -958,13 +959,13 @@ function meta_boxes_wcps_input( $post ) {
|
|
958 |
<div class="option-box">
|
959 |
<p class="option-title"><?php _e('Items Price Color','wcps');?></p>
|
960 |
<p class="option-info"></p>
|
961 |
-
<input type="text" name="wcps_items_price_color" class="wcps_color" id="wcps_items_price_color" value="<?php
|
962 |
</div>
|
963 |
|
964 |
<div class="option-box">
|
965 |
<p class="option-title"><?php _e('Items price Font Size','wcps');?></p>
|
966 |
<p class="option-info"></p>
|
967 |
-
<input type="text" name="wcps_items_price_font_size" placeholder="14px" id="wcps_items_price_font_size" value="<?php
|
968 |
</div>
|
969 |
|
970 |
|
@@ -975,10 +976,8 @@ function meta_boxes_wcps_input( $post ) {
|
|
975 |
|
976 |
<select name="wcps_items_price_text_align" >
|
977 |
<option value="left" <?php if($wcps_items_price_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
978 |
-
<option value="center" <?php if($wcps_items_price_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
979 |
<option value="right" <?php if($wcps_items_price_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
980 |
-
|
981 |
-
|
982 |
</select>
|
983 |
|
984 |
</div>
|
@@ -995,27 +994,15 @@ function meta_boxes_wcps_input( $post ) {
|
|
995 |
elseif($item_key == 'rating'){
|
996 |
|
997 |
?>
|
998 |
-
|
999 |
-
<p class="option-title"><?php _e('Star Rating Display','wcps');?></p>
|
1000 |
-
<p class="option-info"><?php _e('You can hide star ratings on slider.','wcps');?></p>
|
1001 |
-
<select name="wcps_ratings_display" >
|
1002 |
-
<option value="yes" <?php if($wcps_ratings_display=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
|
1003 |
-
<option value="no" <?php if($wcps_ratings_display=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
|
1004 |
-
</select>
|
1005 |
-
</div>
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
<div class="option-box">
|
1010 |
<p class="option-title"><?php _e('Items Rating Text Align','wcps');?></p>
|
1011 |
|
1012 |
|
1013 |
<select name="wcps_ratings_text_align" >
|
1014 |
<option value="left" <?php if($wcps_ratings_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
1015 |
-
<option value="center" <?php if($wcps_ratings_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
1016 |
<option value="right" <?php if($wcps_ratings_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
1017 |
-
|
1018 |
-
|
1019 |
</select>
|
1020 |
|
1021 |
</div>
|
@@ -1024,14 +1011,14 @@ function meta_boxes_wcps_input( $post ) {
|
|
1024 |
<div class="option-box">
|
1025 |
<p class="option-title"><?php _e('Items ratings Font Size','wcps');?></p>
|
1026 |
<p class="option-info"></p>
|
1027 |
-
<input type="text" name="wcps_items_ratings_font_size" placeholder="14px" id="wcps_items_ratings_font_size" value="<?php
|
1028 |
</div>
|
1029 |
|
1030 |
|
1031 |
<div class="option-box">
|
1032 |
<p class="option-title"><?php _e('Items Ratings Color','wcps');?></p>
|
1033 |
<p class="option-info"></p>
|
1034 |
-
<input type="text" name="wcps_items_ratings_color" class="wcps_color" id="wcps_items_ratings_color" value="<?php
|
1035 |
</div>
|
1036 |
|
1037 |
|
@@ -1048,19 +1035,19 @@ function meta_boxes_wcps_input( $post ) {
|
|
1048 |
<div class="option-box">
|
1049 |
<p class="option-title"><?php _e('Excerpt word count','wcps');?></p>
|
1050 |
<p class="option-info"></p>
|
1051 |
-
<input type="text" name="wcps_items_excerpt_count" placeholder="30" id="wcps_items_excerpt_count" value="<?php
|
1052 |
</div>
|
1053 |
|
1054 |
<div class="option-box">
|
1055 |
<p class="option-title"><?php _e('Excerpt read more text','wcps');?></p>
|
1056 |
<p class="option-info"></p>
|
1057 |
-
<input type="text" name="wcps_items_excerpt_read_more" placeholder="View product." id="wcps_items_excerpt_read_more" value="<?php
|
1058 |
</div>
|
1059 |
|
1060 |
<div class="option-box">
|
1061 |
<p class="option-title"><?php _e('Items Excerpt Font Size','wcps');?></p>
|
1062 |
<p class="option-info"></p>
|
1063 |
-
<input type="text" name="wcps_items_excerpt_font_size" placeholder="14px" id="wcps_items_excerpt_font_size" value="<?php
|
1064 |
</div>
|
1065 |
|
1066 |
|
@@ -1070,14 +1057,21 @@ function meta_boxes_wcps_input( $post ) {
|
|
1070 |
|
1071 |
<select name="wcps_items_excerpt_text_align" >
|
1072 |
<option value="left" <?php if($wcps_items_excerpt_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
1073 |
-
<option value="center" <?php if($wcps_items_excerpt_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
1074 |
<option value="right" <?php if($wcps_items_excerpt_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
1075 |
|
1076 |
-
|
1077 |
</select>
|
1078 |
|
1079 |
</div>
|
1080 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1081 |
|
1082 |
<?php
|
1083 |
|
@@ -1090,19 +1084,12 @@ function meta_boxes_wcps_input( $post ) {
|
|
1090 |
|
1091 |
elseif($item_key=='category'){
|
1092 |
?>
|
1093 |
-
|
1094 |
-
<p class="option-title"><?php _e('Items category display','wcps');?></p>
|
1095 |
-
<p class="option-info"><?php _e('You can hide items category on slider.','wcps');?></p>
|
1096 |
-
<select name="wcps_cat_display" >
|
1097 |
-
<option value="yes" <?php if($wcps_cat_display=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
|
1098 |
-
<option value="no" <?php if($wcps_cat_display=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
|
1099 |
-
</select>
|
1100 |
-
</div>
|
1101 |
|
1102 |
<div class="option-box">
|
1103 |
<p class="option-title"><?php _e('Items Category Font Size','wcps');?></p>
|
1104 |
<p class="option-info"></p>
|
1105 |
-
<input type="text" name="wcps_items_cat_font_size" placeholder="14px" id="wcps_items_cat_font_size" value="<?php
|
1106 |
</div>
|
1107 |
|
1108 |
|
@@ -1112,15 +1099,27 @@ function meta_boxes_wcps_input( $post ) {
|
|
1112 |
|
1113 |
<select name="wcps_items_cat_text_align" >
|
1114 |
<option value="left" <?php if($wcps_items_cat_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
1115 |
-
<option value="center" <?php if($wcps_items_cat_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
1116 |
<option value="right" <?php if($wcps_items_cat_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
1117 |
-
|
1118 |
-
|
1119 |
</select>
|
1120 |
|
1121 |
</div>
|
1122 |
|
1123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1124 |
<?php
|
1125 |
|
1126 |
|
@@ -1193,7 +1192,10 @@ function meta_boxes_wcps_input( $post ) {
|
|
1193 |
|
1194 |
</div>
|
1195 |
|
1196 |
-
|
|
|
|
|
|
|
1197 |
|
1198 |
<?php
|
1199 |
|
@@ -1240,6 +1242,8 @@ function meta_boxes_wcps_save( $post_id ) {
|
|
1240 |
$wcps_items_padding = sanitize_text_field( $_POST['wcps_items_padding'] );
|
1241 |
|
1242 |
$wcps_themes = sanitize_text_field( $_POST['wcps_themes'] );
|
|
|
|
|
1243 |
$wcps_total_items = sanitize_text_field( $_POST['wcps_total_items'] );
|
1244 |
|
1245 |
$wcps_total_items_price_format = sanitize_text_field( $_POST['wcps_total_items_price_format'] );
|
@@ -1337,7 +1341,7 @@ function meta_boxes_wcps_save( $post_id ) {
|
|
1337 |
$wcps_content_month = sanitize_text_field( $_POST['wcps_content_month'] );
|
1338 |
$wcps_content_month_year = sanitize_text_field( $_POST['wcps_content_month_year'] );
|
1339 |
|
1340 |
-
|
1341 |
|
1342 |
|
1343 |
|
@@ -1367,40 +1371,42 @@ function meta_boxes_wcps_save( $post_id ) {
|
|
1367 |
}
|
1368 |
else
|
1369 |
{
|
1370 |
-
$wcps_product_ids =
|
1371 |
}
|
1372 |
|
1373 |
|
1374 |
|
1375 |
|
1376 |
|
1377 |
-
|
1378 |
$wcps_items_cat_font_size = sanitize_text_field( $_POST['wcps_items_cat_font_size'] );
|
1379 |
$wcps_items_cat_text_align = sanitize_text_field( $_POST['wcps_items_cat_text_align'] );
|
|
|
1380 |
|
1381 |
-
|
1382 |
$wcps_featured_icon_url = sanitize_text_field( $_POST['wcps_featured_icon_url'] );
|
1383 |
|
1384 |
-
|
1385 |
$wcps_sale_icon_url = sanitize_text_field( $_POST['wcps_sale_icon_url'] );
|
1386 |
|
1387 |
|
1388 |
|
1389 |
-
|
1390 |
$wcps_ratings_text_align = sanitize_text_field( $_POST['wcps_ratings_text_align'] );
|
1391 |
$wcps_items_ratings_font_size = sanitize_text_field( $_POST['wcps_items_ratings_font_size'] );
|
1392 |
$wcps_items_ratings_color = sanitize_text_field( $_POST['wcps_items_ratings_color'] );
|
1393 |
|
1394 |
$wcps_cart_style = sanitize_text_field( $_POST['wcps_cart_style'] );
|
1395 |
-
|
1396 |
$wcps_cart_bg = sanitize_text_field( $_POST['wcps_cart_bg'] );
|
1397 |
$wcps_cart_text_color = sanitize_text_field( $_POST['wcps_cart_text_color'] );
|
1398 |
-
$wcps_cart_text_align = sanitize_text_field( $_POST['wcps_cart_text_align'] );
|
|
|
1399 |
|
1400 |
$wcps_grid_items = stripslashes_deep( $_POST['wcps_grid_items'] );
|
1401 |
$wcps_grid_items_hide = stripslashes_deep( $_POST['wcps_grid_items_hide'] );
|
1402 |
|
1403 |
-
|
1404 |
$wcps_items_title_color = sanitize_text_field( $_POST['wcps_items_title_color'] );
|
1405 |
$wcps_items_title_font_size = sanitize_text_field( $_POST['wcps_items_title_font_size'] );
|
1406 |
$wcps_items_title_text_align = sanitize_text_field( $_POST['wcps_items_title_text_align'] );
|
@@ -1408,16 +1414,18 @@ function meta_boxes_wcps_save( $post_id ) {
|
|
1408 |
$wcps_items_excerpt_count = sanitize_text_field( $_POST['wcps_items_excerpt_count'] );
|
1409 |
$wcps_items_excerpt_read_more = sanitize_text_field( $_POST['wcps_items_excerpt_read_more'] );
|
1410 |
$wcps_items_excerpt_text_align = sanitize_text_field( $_POST['wcps_items_excerpt_text_align'] );
|
1411 |
-
$wcps_items_excerpt_font_size = sanitize_text_field( $_POST['wcps_items_excerpt_font_size'] );
|
|
|
1412 |
|
1413 |
-
|
1414 |
$wcps_items_price_color = sanitize_text_field( $_POST['wcps_items_price_color'] );
|
1415 |
$wcps_items_price_font_size = sanitize_text_field( $_POST['wcps_items_price_font_size'] );
|
1416 |
$wcps_items_price_text_align = sanitize_text_field( $_POST['wcps_items_price_text_align'] );
|
1417 |
|
1418 |
$wcps_items_thumb_link_to = sanitize_text_field( $_POST['wcps_items_thumb_link_to'] );
|
1419 |
$wcps_items_thumb_size = sanitize_text_field( $_POST['wcps_items_thumb_size'] );
|
1420 |
-
$wcps_items_thumb_max_hieght = sanitize_text_field( $_POST['wcps_items_thumb_max_hieght'] );
|
|
|
1421 |
|
1422 |
$wcps_items_empty_thumb = sanitize_text_field( $_POST['wcps_items_empty_thumb'] );
|
1423 |
$wcps_query_order = sanitize_text_field( $_POST['wcps_query_order'] );
|
@@ -1467,31 +1475,34 @@ function meta_boxes_wcps_save( $post_id ) {
|
|
1467 |
update_post_meta( $post_id, 'wcps_content_source', $wcps_content_source );
|
1468 |
update_post_meta( $post_id, 'wcps_content_year', $wcps_content_year );
|
1469 |
update_post_meta( $post_id, 'wcps_content_month', $wcps_content_month );
|
1470 |
-
update_post_meta( $post_id, 'wcps_content_month_year', $wcps_content_month_year );
|
|
|
|
|
1471 |
|
1472 |
update_post_meta( $post_id, 'wcps_taxonomy', $wcps_taxonomy );
|
1473 |
update_post_meta( $post_id, 'wcps_taxonomy_category', $wcps_taxonomy_category );
|
1474 |
|
1475 |
update_post_meta( $post_id, 'wcps_product_ids', $wcps_product_ids );
|
1476 |
|
1477 |
-
update_post_meta( $post_id, 'wcps_cat_display', $wcps_cat_display );
|
1478 |
update_post_meta( $post_id, 'wcps_items_cat_font_size', $wcps_items_cat_font_size );
|
1479 |
-
update_post_meta( $post_id, 'wcps_items_cat_text_align', $wcps_items_cat_text_align );
|
|
|
1480 |
|
1481 |
-
update_post_meta( $post_id, 'wcps_featured_display', $wcps_featured_display );
|
1482 |
update_post_meta( $post_id, 'wcps_featured_icon_url', $wcps_featured_icon_url );
|
1483 |
|
1484 |
-
update_post_meta( $post_id, 'wcps_sale_display', $wcps_sale_display );
|
1485 |
update_post_meta( $post_id, 'wcps_sale_icon_url', $wcps_sale_icon_url );
|
1486 |
|
1487 |
|
1488 |
-
update_post_meta( $post_id, 'wcps_ratings_display', $wcps_ratings_display );
|
1489 |
update_post_meta( $post_id, 'wcps_ratings_text_align', $wcps_ratings_text_align );
|
1490 |
update_post_meta( $post_id, 'wcps_items_ratings_font_size', $wcps_items_ratings_font_size );
|
1491 |
update_post_meta( $post_id, 'wcps_items_ratings_color', $wcps_items_ratings_color );
|
1492 |
|
1493 |
update_post_meta( $post_id, 'wcps_cart_style', $wcps_cart_style );
|
1494 |
-
update_post_meta( $post_id, 'wcps_cart_display', $wcps_cart_display );
|
1495 |
update_post_meta( $post_id, 'wcps_cart_bg', $wcps_cart_bg );
|
1496 |
update_post_meta( $post_id, 'wcps_cart_text_color', $wcps_cart_text_color );
|
1497 |
update_post_meta( $post_id, 'wcps_cart_text_align', $wcps_cart_text_align );
|
@@ -1499,7 +1510,7 @@ function meta_boxes_wcps_save( $post_id ) {
|
|
1499 |
update_post_meta( $post_id, 'wcps_grid_items', $wcps_grid_items );
|
1500 |
update_post_meta( $post_id, 'wcps_grid_items_hide', $wcps_grid_items_hide );
|
1501 |
|
1502 |
-
update_post_meta( $post_id, 'wcps_items_title_display', $wcps_items_title_display );
|
1503 |
update_post_meta( $post_id, 'wcps_items_title_color', $wcps_items_title_color );
|
1504 |
update_post_meta( $post_id, 'wcps_items_title_font_size', $wcps_items_title_font_size );
|
1505 |
update_post_meta( $post_id, 'wcps_items_title_text_align', $wcps_items_title_text_align );
|
@@ -1507,9 +1518,10 @@ function meta_boxes_wcps_save( $post_id ) {
|
|
1507 |
update_post_meta( $post_id, 'wcps_items_excerpt_count', $wcps_items_excerpt_count );
|
1508 |
update_post_meta( $post_id, 'wcps_items_excerpt_read_more', $wcps_items_excerpt_read_more );
|
1509 |
update_post_meta( $post_id, 'wcps_items_excerpt_text_align', $wcps_items_excerpt_text_align );
|
1510 |
-
update_post_meta( $post_id, 'wcps_items_excerpt_font_size', $wcps_items_excerpt_font_size );
|
|
|
1511 |
|
1512 |
-
update_post_meta( $post_id, 'wcps_items_price_display', $wcps_items_price_display );
|
1513 |
update_post_meta( $post_id, 'wcps_items_price_color', $wcps_items_price_color );
|
1514 |
update_post_meta( $post_id, 'wcps_items_price_font_size', $wcps_items_price_font_size );
|
1515 |
update_post_meta( $post_id, 'wcps_items_price_text_align', $wcps_items_price_text_align );
|
@@ -1517,6 +1529,7 @@ function meta_boxes_wcps_save( $post_id ) {
|
|
1517 |
update_post_meta( $post_id, 'wcps_items_thumb_link_to', $wcps_items_thumb_link_to );
|
1518 |
update_post_meta( $post_id, 'wcps_items_thumb_size', $wcps_items_thumb_size );
|
1519 |
update_post_meta( $post_id, 'wcps_items_thumb_max_hieght', $wcps_items_thumb_max_hieght );
|
|
|
1520 |
|
1521 |
update_post_meta( $post_id, 'wcps_items_empty_thumb', $wcps_items_empty_thumb );
|
1522 |
update_post_meta( $post_id, 'wcps_query_order', $wcps_query_order );
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
71 |
|
72 |
$wcps_bg_img = get_post_meta( $post->ID, 'wcps_bg_img', true );
|
73 |
$wcps_container_padding = get_post_meta( $post->ID, 'wcps_container_padding', true );
|
74 |
+
if(empty($wcps_container_padding)){
|
75 |
+
$wcps_container_padding = '';
|
76 |
+
}
|
77 |
+
|
78 |
+
$wcps_container_bg_color = get_post_meta( $post->ID, 'wcps_container_bg_color', true );
|
79 |
+
if(empty($wcps_container_bg_color)){
|
80 |
+
$wcps_container_bg_color = '';
|
81 |
+
}
|
82 |
|
83 |
$wcps_items_bg_color = get_post_meta( $post->ID, 'wcps_items_bg_color', true );
|
84 |
+
if(empty($wcps_items_bg_color)){
|
85 |
+
|
86 |
+
$wcps_items_bg_color = '';
|
87 |
+
}
|
88 |
+
|
89 |
+
$wcps_items_padding = get_post_meta( $post->ID, 'wcps_items_padding', true );
|
90 |
+
if(empty($wcps_items_padding)){
|
91 |
+
$wcps_items_padding = '';
|
92 |
+
|
93 |
+
}
|
94 |
|
95 |
$wcps_themes = get_post_meta( $post->ID, 'wcps_themes', true );
|
96 |
+
if(empty($wcps_themes)){
|
97 |
+
$wcps_themes = 'flat';
|
98 |
+
}
|
99 |
+
|
100 |
+
|
101 |
+
$wcps_total_items = get_post_meta( $post->ID, 'wcps_total_items', true );
|
102 |
+
if(empty($wcps_total_items)){
|
103 |
+
$wcps_total_items = 10;
|
104 |
+
}
|
105 |
|
106 |
$wcps_total_items_price_format = get_post_meta( $post->ID, 'wcps_total_items_price_format', true );
|
107 |
|
108 |
$wcps_column_number = get_post_meta( $post->ID, 'wcps_column_number', true );
|
109 |
+
if(empty($wcps_column_number)){
|
110 |
+
$wcps_column_number = 3;
|
111 |
+
}
|
112 |
+
$wcps_column_number_tablet = get_post_meta( $post->ID, 'wcps_column_number_tablet', true );
|
113 |
+
if(empty($wcps_column_number_tablet)){
|
114 |
+
$wcps_column_number_tablet = 2;
|
115 |
+
}
|
116 |
+
|
117 |
$wcps_column_number_mobile = get_post_meta( $post->ID, 'wcps_column_number_mobile', true );
|
118 |
+
if(empty($wcps_column_number_mobile)){
|
119 |
+
$wcps_column_number_mobile = 1;
|
120 |
+
}
|
121 |
|
122 |
$wcps_auto_play = get_post_meta( $post->ID, 'wcps_auto_play', true );
|
123 |
+
if(empty($wcps_auto_play)){
|
124 |
+
$wcps_auto_play = 'true';
|
125 |
+
}
|
126 |
|
127 |
+
$wcps_stop_on_hover = get_post_meta( $post->ID, 'wcps_stop_on_hover', true );
|
128 |
+
if(empty($wcps_stop_on_hover)){
|
129 |
+
$wcps_stop_on_hover = 'true';
|
130 |
+
}
|
131 |
+
|
132 |
+
|
133 |
$wcps_slider_navigation = get_post_meta( $post->ID, 'wcps_slider_navigation', true );
|
134 |
+
if(empty($wcps_slider_navigation)){
|
135 |
+
$wcps_slider_navigation = 'true';
|
136 |
+
}
|
137 |
+
|
138 |
|
139 |
+
$wcps_slider_navigation_position = get_post_meta( $post->ID, 'wcps_slider_navigation_position', true );
|
140 |
+
if(empty($wcps_slider_navigation_position)){
|
141 |
+
$wcps_slider_navigation_position = 'topright';
|
142 |
+
}
|
143 |
+
|
144 |
+
$wcps_slide_speed = get_post_meta( $post->ID, 'wcps_slide_speed', true );
|
145 |
+
if(empty($wcps_slide_speed)){
|
146 |
+
$wcps_slide_speed = '1000';
|
147 |
+
}
|
148 |
+
|
149 |
$wcps_slider_pagination = get_post_meta( $post->ID, 'wcps_slider_pagination', true );
|
150 |
$wcps_pagination_slide_speed = get_post_meta( $post->ID, 'wcps_pagination_slide_speed', true );
|
151 |
+
if(empty($wcps_pagination_slide_speed)){
|
152 |
+
$wcps_pagination_slide_speed = '1000';
|
153 |
+
}
|
154 |
+
|
155 |
$wcps_slider_pagination_count = get_post_meta( $post->ID, 'wcps_slider_pagination_count', true );
|
156 |
|
157 |
$wcps_slider_pagination_bg = get_post_meta( $post->ID, 'wcps_slider_pagination_bg', true );
|
161 |
$wcps_slider_mouse_drag = get_post_meta( $post->ID, 'wcps_slider_mouse_drag', true );
|
162 |
|
163 |
$wcps_content_source = get_post_meta( $post->ID, 'wcps_content_source', true );
|
164 |
+
if(empty($wcps_content_source)){
|
165 |
+
$wcps_content_source = 'recent';
|
166 |
+
}
|
167 |
+
|
168 |
$wcps_content_year = get_post_meta( $post->ID, 'wcps_content_year', true );
|
169 |
$wcps_content_month = get_post_meta( $post->ID, 'wcps_content_month', true );
|
170 |
$wcps_content_month_year = get_post_meta( $post->ID, 'wcps_content_month_year', true );
|
171 |
|
172 |
+
$wcps_content_sku = get_post_meta( $post->ID, 'wcps_content_sku', true );
|
173 |
+
|
174 |
$wcps_taxonomy = get_post_meta( $post->ID, 'wcps_taxonomy', true );
|
175 |
$wcps_taxonomy_category = get_post_meta( $post->ID, 'wcps_taxonomy_category', true );
|
176 |
|
177 |
$wcps_product_ids = get_post_meta( $post->ID, 'wcps_product_ids', true );
|
178 |
|
|
|
179 |
$wcps_items_cat_font_size = get_post_meta( $post->ID, 'wcps_items_cat_font_size', true );
|
180 |
$wcps_items_cat_text_align = get_post_meta( $post->ID, 'wcps_items_cat_text_align', true );
|
181 |
|
|
|
182 |
$wcps_featured_icon_url = get_post_meta( $post->ID, 'wcps_featured_icon_url', true );
|
183 |
|
|
|
184 |
$wcps_sale_icon_url = get_post_meta( $post->ID, 'wcps_sale_icon_url', true );
|
185 |
+
|
|
|
|
|
186 |
$wcps_ratings_text_align = get_post_meta( $post->ID, 'wcps_ratings_text_align', true );
|
187 |
$wcps_items_ratings_font_size = get_post_meta( $post->ID, 'wcps_items_ratings_font_size', true );
|
188 |
$wcps_items_ratings_color = get_post_meta( $post->ID, 'wcps_items_ratings_color', true );
|
189 |
|
190 |
$wcps_cart_style = get_post_meta( $post->ID, 'wcps_cart_style', true );
|
|
|
191 |
$wcps_cart_bg = get_post_meta( $post->ID, 'wcps_cart_bg', true );
|
192 |
$wcps_cart_text_color = get_post_meta( $post->ID, 'wcps_cart_text_color', true );
|
193 |
+
if(empty($wcps_cart_text_color)){
|
194 |
+
$wcps_cart_text_color = '#626262';
|
195 |
+
}
|
196 |
+
|
197 |
+
|
198 |
+
$wcps_cart_text_align = get_post_meta( $post->ID, 'wcps_cart_text_align', true );
|
199 |
+
$wcps_items_cat_font_color = get_post_meta( $post->ID, 'wcps_items_cat_font_color', true );
|
200 |
+
if(empty($wcps_items_cat_font_color)){
|
201 |
+
$wcps_items_cat_font_color = '#626262';
|
202 |
+
}
|
203 |
|
204 |
$wcps_grid_items = get_post_meta( $post->ID, 'wcps_grid_items', true );
|
205 |
$wcps_grid_items_hide = get_post_meta( $post->ID, 'wcps_grid_items_hide', true );
|
206 |
+
|
207 |
+
$wcps_items_title_color = get_post_meta( $post->ID, 'wcps_items_title_color', true );
|
208 |
+
if(empty($wcps_items_title_color)){
|
209 |
+
$wcps_items_title_color = '#626262';
|
210 |
+
}
|
211 |
+
|
212 |
+
|
213 |
|
|
|
|
|
214 |
$wcps_items_title_font_size = get_post_meta( $post->ID, 'wcps_items_title_font_size', true );
|
215 |
$wcps_items_title_text_align = get_post_meta( $post->ID, 'wcps_items_title_text_align', true );
|
216 |
|
217 |
+
$wcps_items_excerpt_count = get_post_meta( $post->ID, 'wcps_items_excerpt_count', true );
|
218 |
+
if(empty($wcps_items_excerpt_count)){
|
219 |
+
$wcps_items_excerpt_count = 20;
|
220 |
+
}
|
221 |
+
|
222 |
$wcps_items_excerpt_read_more = get_post_meta( $post->ID, 'wcps_items_excerpt_read_more', true );
|
223 |
+
if(empty($wcps_items_excerpt_read_more)){
|
224 |
+
$wcps_items_excerpt_read_more = 'View product.';
|
225 |
+
}
|
226 |
+
|
227 |
+
|
228 |
+
|
229 |
$wcps_items_excerpt_text_align = get_post_meta( $post->ID, 'wcps_items_excerpt_text_align', true );
|
230 |
+
$wcps_items_excerpt_font_size = get_post_meta( $post->ID, 'wcps_items_excerpt_font_size', true );
|
231 |
+
$wcps_items_excerpt_font_color = get_post_meta( $post->ID, 'wcps_items_excerpt_font_color', true );
|
232 |
+
if(empty($wcps_items_excerpt_font_color)){
|
233 |
+
$wcps_items_excerpt_font_color = '#626262';
|
234 |
+
}
|
235 |
+
|
236 |
+
$wcps_items_price_color = get_post_meta( $post->ID, 'wcps_items_price_color', true );
|
237 |
+
if(empty($wcps_items_price_color)){
|
238 |
+
$wcps_items_price_color = '#626262';
|
239 |
+
}
|
240 |
+
|
241 |
+
|
242 |
+
|
243 |
|
|
|
|
|
244 |
$wcps_items_price_font_size = get_post_meta( $post->ID, 'wcps_items_price_font_size', true );
|
245 |
$wcps_items_price_text_align = get_post_meta( $post->ID, 'wcps_items_price_text_align', true );
|
246 |
|
247 |
$wcps_items_thumb_link_to = get_post_meta( $post->ID, 'wcps_items_thumb_link_to', true );
|
248 |
$wcps_items_thumb_size = get_post_meta( $post->ID, 'wcps_items_thumb_size', true );
|
249 |
+
$wcps_items_thumb_max_hieght = get_post_meta( $post->ID, 'wcps_items_thumb_max_hieght', true );
|
250 |
+
$wcps_items_thumb_zoom = get_post_meta( $post->ID, 'wcps_items_thumb_zoom', true );
|
251 |
|
252 |
$wcps_items_empty_thumb = get_post_meta( $post->ID, 'wcps_items_empty_thumb', true );
|
253 |
+
if(empty($wcps_items_empty_thumb)){
|
254 |
+
$wcps_items_empty_thumb = wcps_plugin_url.'assets/front/images/no-thumb.png';
|
255 |
+
}
|
256 |
+
|
257 |
+
|
258 |
+
|
259 |
$wcps_query_order = get_post_meta( $post->ID, 'wcps_query_order', true );
|
260 |
$wcps_query_orderby = get_post_meta( $post->ID, 'wcps_query_orderby', true );
|
261 |
$wcps_hide_out_of_stock = get_post_meta( $post->ID, 'wcps_hide_out_of_stock', true );
|
265 |
|
266 |
$wcps_items_custom_css = get_post_meta( $post->ID, 'wcps_items_custom_css', true );
|
267 |
|
268 |
+
|
|
|
269 |
|
|
|
270 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
|
272 |
|
273 |
$wcps_id = $post->ID;
|
275 |
|
276 |
|
277 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
<div class="para-settings">
|
|
|
|
|
|
|
279 |
<ul class="tab-nav">
|
|
|
280 |
<li nav="1" class="nav1 active"><i class="fa fa-code"></i> <?php _e('Shortcode','wcps');?></li>
|
281 |
<li nav="2" class="nav2"><i class="fa fa-cogs"></i> <?php _e('Options','wcps');?></li>
|
282 |
<li nav="3" class="nav3"><i class="fa fa-diamond"></i> <?php _e('Style','wcps');?></li>
|
307 |
<div class="option-box">
|
308 |
<p class="option-title"><?php _e('Slider Total Items','wcps');?></p>
|
309 |
<p class="option-info"><?php _e('ex: 10','wcps');?></p>
|
310 |
+
<input type="text" placeholder="10" name="wcps_total_items" value="<?php echo $wcps_total_items; ?>" />
|
311 |
</div>
|
312 |
|
313 |
<div class="option-box">
|
314 |
<p class="option-title"><?php _e('Slider Column Number','wcps');?></p>
|
315 |
|
316 |
<p class="option-info"><?php _e('In Destop: (min:1000px and max)','wcps');?></p>
|
317 |
+
<input type="text" placeholder="4" name="wcps_column_number" value="<?php echo $wcps_column_number; ?>" />
|
318 |
|
319 |
<p class="option-info"><?php _e('In Tablet & Small Desktop: (900px max width)','wcps');?></p>
|
320 |
+
<input type="text" placeholder="2" name="wcps_column_number_tablet" value="<?php echo $wcps_column_number_tablet; ?>" />
|
321 |
|
322 |
<p class="option-info"><?php _e('In Mobile: (479px max width)','wcps');?></p>
|
323 |
+
<input type="text" placeholder="1" name="wcps_column_number_mobile" value="<?php echo $wcps_column_number_mobile; ?>" />
|
324 |
|
325 |
|
326 |
|
329 |
<div class="option-box">
|
330 |
<p class="option-title"><?php _e('Slider Auto Play','wcps');?></p>
|
331 |
<p class="option-info"></p>
|
332 |
+
|
333 |
+
|
334 |
+
<select name="wcps_auto_play">
|
335 |
+
<option value="true" <?php if(($wcps_auto_play=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
|
336 |
+
<option value="false" <?php if(($wcps_auto_play=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
|
337 |
+
</select>
|
338 |
+
|
|
|
|
|
|
|
|
|
|
|
339 |
</div>
|
340 |
<div class="option-box">
|
341 |
<p class="option-title"><?php _e('Slider Stop on Hover','wcps');?></p>
|
342 |
<p class="option-info"></p>
|
343 |
+
|
344 |
+
<select name="wcps_stop_on_hover">
|
345 |
+
<option value="true" <?php if(($wcps_stop_on_hover=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
|
346 |
+
<option value="false" <?php if(($wcps_stop_on_hover=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
|
347 |
+
</select>
|
348 |
+
|
349 |
+
|
|
|
|
|
|
|
|
|
|
|
350 |
</div>
|
351 |
<div class="option-box">
|
352 |
<p class="option-title"><?php _e('Slider Navigation','wcps');?></p>
|
353 |
<p class="option-info"><?php _e('Slider Navigation at Top','wcps');?></p>
|
354 |
+
|
355 |
+
<select name="wcps_slider_navigation">
|
356 |
+
<option value="true" <?php if(($wcps_slider_navigation=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
|
357 |
+
<option value="false" <?php if(($wcps_slider_navigation=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
|
358 |
+
</select>
|
359 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
|
361 |
<p class="option-info"><?php _e('Slider Navigation Position','wcps');?></p>
|
362 |
+
<select name="wcps_slider_navigation_position">
|
363 |
+
<option value="topright" <?php if(($wcps_slider_navigation_position=="topright")) echo "selected"; ?> ><?php _e('Top Right','wcps');?></option>
|
364 |
+
<option value="middle" <?php if(($wcps_slider_navigation_position=="middle")) echo "selected"; ?> ><?php _e('Middle','wcps');?></option>
|
365 |
+
<option value="middle-fixed" <?php if(($wcps_slider_navigation_position=="middle-fixed")) echo "selected"; ?> ><?php _e('Middle fixed','wcps');?></option>
|
366 |
+
|
367 |
+
</select>
|
368 |
|
369 |
|
370 |
</div>
|
374 |
<div class="option-box">
|
375 |
<p class="option-title"><?php _e('Slider Pagination','wcps');?></p>
|
376 |
<p class="option-info"><?php _e('Slider Pagination at Bottom','wcps');?></p>
|
377 |
+
|
378 |
+
<select name="wcps_slider_pagination">
|
379 |
+
<option value="true" <?php if(($wcps_slider_pagination=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
|
380 |
+
<option value="false" <?php if(($wcps_slider_pagination=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
|
381 |
+
</select>
|
382 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
|
384 |
|
385 |
<p class="option-info"><?php _e('Pagination Background Color','wcps');?></p>
|
386 |
+
<input type="text" name="wcps_slider_pagination_bg" class="wcps_color" id="wcps_slider_pagination_bg" value="<?php echo $wcps_slider_pagination_bg; ?>" />
|
387 |
|
388 |
<p class="option-info"><?php _e('Pagination Text Color','wcps');?></p>
|
389 |
+
<input type="text" name="wcps_slider_pagination_text_color" class="wcps_color" id="wcps_slider_pagination_text_color" value="<?php echo $wcps_slider_pagination_text_color; ?>" />
|
390 |
|
391 |
<p class="option-info"><?php _e('Pagination Number Counting','wcps');?></p>
|
392 |
+
<select name="wcps_slider_pagination_count">
|
393 |
+
<option value="false" <?php if(($wcps_slider_pagination_count=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
|
394 |
+
<option value="true" <?php if(($wcps_slider_pagination_count=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
|
395 |
+
|
396 |
+
</select>
|
397 |
+
|
398 |
+
|
|
|
|
|
|
|
|
|
|
|
399 |
|
400 |
|
401 |
</div>
|
406 |
<div class="option-box">
|
407 |
<p class="option-title"><?php _e('Slide Speed','wcps');?></p>
|
408 |
<p class="option-info"></p>
|
409 |
+
<input type="text" placeholder="1000" id="wcps_slide_speed" name="wcps_slide_speed" value="<?php echo $wcps_slide_speed; ?>" />
|
410 |
</div>
|
411 |
<div class="option-box">
|
412 |
<p class="option-title"><?php _e('Pagination Slide Speed','wcps');?></p>
|
413 |
<p class="option-info"></p>
|
414 |
+
<input type="text" placeholder="1000" id="wcps_pagination_slide_speed" name="wcps_pagination_slide_speed" value="<?php echo $wcps_pagination_slide_speed; ?>" />
|
415 |
</div>
|
416 |
|
417 |
<div class="option-box">
|
418 |
<p class="option-title"><?php _e('Slider Touch Drag Enabled','wcps');?></p>
|
419 |
<p class="option-info"></p>
|
420 |
+
|
421 |
+
|
422 |
+
<select name="wcps_slider_touch_drag">
|
423 |
+
<option value="true" <?php if(($wcps_slider_touch_drag=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
|
424 |
+
<option value="false" <?php if(($wcps_slider_touch_drag=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
|
425 |
+
</select>
|
426 |
+
|
427 |
+
|
|
|
|
|
|
|
|
|
428 |
</div>
|
429 |
<div class="option-box">
|
430 |
<p class="option-title"><?php _e('Slider Mouse Drag Enabled','wcps');?></p>
|
431 |
<p class="option-info"></p>
|
432 |
+
|
433 |
+
<select name="wcps_slider_mouse_drag">
|
434 |
+
<option value="true" <?php if(($wcps_slider_mouse_drag=="true")) echo "selected"; ?> ><?php _e('True','wcps');?></option>
|
435 |
+
<option value="false" <?php if(($wcps_slider_mouse_drag=="false")) echo "selected"; ?> ><?php _e('False','wcps');?></option>
|
436 |
+
</select>
|
437 |
+
|
438 |
+
|
|
|
|
|
|
|
|
|
|
|
439 |
</div>
|
440 |
|
441 |
</li>
|
446 |
<select name="wcps_themes" >
|
447 |
<?php
|
448 |
|
449 |
+
$class_wcps_functions = new class_wcps_functions();
|
450 |
+
$skins = $class_wcps_functions->skins();
|
|
|
|
|
|
|
451 |
|
452 |
+
foreach($skins as $skin_key => $skin_data){
|
453 |
+
|
454 |
+
echo '<option value="'.$skin_key.'"';
|
455 |
+
if($wcps_themes == $skin_key) echo "selected";
|
456 |
+
echo '>'.$skin_data['name'].'</option>';
|
457 |
}
|
458 |
?>
|
459 |
</select>
|
511 |
|
512 |
?>
|
513 |
|
514 |
+
<input style="width:100%;" type="text" id="wcps_ribbon_custom" name="wcps_ribbon_custom" placeholder="Custom url for ribbons." id="wcps_ribbon_custom" value="<?php echo $wcps_ribbon_custom; ?>" />
|
515 |
|
516 |
<?php
|
517 |
|
520 |
echo '#wcps_metabox #wcps_ribbon_custom{display:block }';
|
521 |
echo '</style>';
|
522 |
}
|
|
|
523 |
|
|
|
|
|
524 |
?>
|
525 |
|
526 |
|
537 |
<div class="option-box">
|
538 |
<p class="option-title"><?php _e('Container options','wcps'); ?></p>
|
539 |
<p class="option-info"><?php _e('Padding: (ex: 10px)','wcps'); ?></p>
|
540 |
+
<input type="text" placeholder="10px" name="wcps_container_padding" value="<?php echo $wcps_container_padding; ?>" />
|
541 |
|
542 |
<p class="option-info"><?php _e('Background color:','wcps'); ?></p>
|
543 |
<input type="text" class="wcps_color" name="wcps_container_bg_color" value="<?php echo $wcps_container_bg_color; ?>" />
|
590 |
<div class="option-box">
|
591 |
<p class="option-title"><?php _e('Empty Thumbnail','wcps');?></p>
|
592 |
<p class="option-info"><?php _e('Custom thumbnail image url','wcps');?></p>
|
593 |
+
<input type="text" name="wcps_items_empty_thumb" id="wcps_items_empty_thumb" value="<?php echo $wcps_items_empty_thumb; ?>" /><br /><br />
|
594 |
<input id="wcps_items_empty_thumb_upload" class="wcps_items_empty_thumb_upload button" type="button" value="Upload Image" />
|
595 |
<br /><br />
|
596 |
|
661 |
<p class="option-title"><?php _e('Query order','wcps'); ?></p>
|
662 |
<p class="option-info"></p>
|
663 |
<select name="wcps_query_order" >
|
|
|
664 |
<option value="DESC" <?php if($wcps_query_order=="DESC") echo "selected"; ?>><?php _e('Descending','wcps');?></option>
|
665 |
+
<option value="ASC" <?php if($wcps_query_order=="ASC") echo "selected"; ?>><?php _e('Ascending ','wcps');?></option>
|
666 |
+
|
667 |
|
668 |
</select>
|
669 |
</div>
|
708 |
<p class="option-title"><?php _e('Filter Slider Content.','wcps');?></p>
|
709 |
<p class="option-info"></p>
|
710 |
<ul class="content_source_area" >
|
711 |
+
<li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_recent" type="radio" value="recent" <?php if($wcps_content_source=="recent") echo "checked";?> /> <label for="wcps_content_source_recent"><?php _e('Display from <b>Recent</b> Published','wcps');?></label>
|
712 |
<div class="wcps_content_source_recent content-source-box"><?php _e('Slider items will query from recent published product.','wcps');?></div>
|
713 |
</li>
|
714 |
|
715 |
+
<li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_featured" type="radio" value="featured" <?php if($wcps_content_source=="featured") echo "checked";?> /> <label for="wcps_content_source_featured"><?php _e('Display from <b>Featured</b> Product','wcps');?></label>
|
716 |
<div class="wcps_content_source_featured content-source-box"><?php _e('Slider items will query from featured marked product.','wcps');?></div>
|
717 |
</li>
|
718 |
|
719 |
+
<li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_year" type="radio" value="year" <?php if($wcps_content_source=="year") echo "checked";?> /> <label for="wcps_content_source_year"><?php _e('Display from Only <b>Year</b>','wcps');?></label>
|
720 |
|
721 |
<div class="wcps_content_source_year content-source-box"><?php _e('Slider items will query from a year.','wcps');?>
|
722 |
+
<input type="text" size="7" class="wcps_content_year" name="wcps_content_year" value="<?php echo $wcps_content_year;?>" placeholder="2014" />
|
723 |
</div>
|
724 |
</li>
|
725 |
|
726 |
+
<li><input class="wcps_content_source" name="wcps_content_source" id="wcps_content_source_month" type="radio" value="month" <?php if($wcps_content_source=="month") echo "checked";?> /> <label for="wcps_content_source_month"><?php _e('Display from <b>Month</b>','wcps');?></label>
|
727 |
<div class="wcps_content_source_month content-source-box"><?php _e('Slider items will query from Month of a year.','wcps');?> <br />
|
728 |
+
<input type="text" size="7" class="wcps_content_month_year" name="wcps_content_month_year" value="<?php echo $wcps_content_month_year;?>" placeholder="2014" />
|
729 |
+
<input type="text" size="7" class="wcps_content_month" name="wcps_content_month" value="<?php echo $wcps_content_month;?>" placeholder="06" />
|
730 |
</div>
|
731 |
</li>
|
732 |
|
733 |
|
734 |
+
|
|
|
735 |
</ul>
|
736 |
</div>
|
737 |
|
738 |
<div class="option-box">
|
739 |
<p class="option-title"><?php _e('Items sort.','wcps'); ?></p>
|
740 |
+
<p class="option-info"><?php _e('Click each items to expand.','wcps'); ?></p>
|
741 |
<div class="button wcps_grid_items_reset" wcps_id="<?php echo $wcps_id; ?>"><?php _e('Reset','wcps');?></div>
|
742 |
<br /><br />
|
743 |
|
744 |
<?php
|
745 |
$class_wcps_functions = new class_wcps_functions();
|
746 |
+
|
747 |
+
|
748 |
if(empty($wcps_grid_items)){
|
749 |
+
|
750 |
$wcps_grid_items = $class_wcps_functions->wcps_grid_items();
|
751 |
+
|
752 |
+
}
|
753 |
+
else{
|
754 |
+
$wcps_grid_items_main = $class_wcps_functions->wcps_grid_items();
|
755 |
+
$wcps_grid_items = array_merge($wcps_grid_items,$wcps_grid_items_main);
|
756 |
}
|
757 |
|
758 |
$wcps_grid_items = apply_filters('wcps_grid_items',$wcps_grid_items);
|
793 |
<p class="option-title"><?php _e('Slider Thumbnail Size','wcps');?></p>
|
794 |
<p class="option-info"></p>
|
795 |
<select name="wcps_items_thumb_size" >
|
796 |
+
<option value="full" <?php if($wcps_items_thumb_size=="full")echo "selected"; ?>><?php _e('Full','wcps');?></option>
|
|
|
|
|
797 |
<option value="large" <?php if($wcps_items_thumb_size=="large")echo "selected"; ?>><?php _e('Large','wcps');?></option>
|
798 |
+
<option value="medium" <?php if($wcps_items_thumb_size=="medium")echo "selected"; ?>><?php _e('Medium','wcps');?></option>
|
799 |
+
<option value="thumbnail" <?php if($wcps_items_thumb_size=="thumbnail")echo "selected"; ?>><?php _e('Thumbnail','wcps');?></option>
|
800 |
+
|
801 |
</select>
|
802 |
</div>
|
803 |
|
807 |
<p class="option-info"></p>
|
808 |
<select name="wcps_items_thumb_link_to" >
|
809 |
<option value="product" <?php if($wcps_items_thumb_link_to=="product")echo "selected"; ?>><?php _e('Product','wcps');?></option>
|
810 |
+
<option value="category" <?php if($wcps_items_thumb_link_to=="category")echo "selected"; ?>><?php _e('Category','wcps');?></option>
|
811 |
</select>
|
812 |
</div>
|
813 |
|
817 |
<div class="option-box">
|
818 |
<p class="option-title"><?php _e('Slider thumb max hieght(px)','wcps');?></p>
|
819 |
<p class="option-info"></p>
|
820 |
+
<input type="text" name="wcps_items_thumb_max_hieght" placeholder="14px" id="wcps_items_thumb_max_hieght" value="<?php echo $wcps_items_thumb_max_hieght; ?>" />
|
821 |
</div>
|
822 |
|
823 |
+
<div class="option-box">
|
824 |
+
<p class="option-title"><?php _e('Display Thumbnail Zoom button','wcps');?></p>
|
825 |
+
<p class="option-info"></p>
|
826 |
+
<select name="wcps_items_thumb_zoom" >
|
827 |
+
<option value="no" <?php if($wcps_items_thumb_zoom=="no")echo "selected"; ?>><?php _e('No','wcps');?></option>
|
828 |
+
<option value="yes" <?php if($wcps_items_thumb_zoom=="yes")echo "selected"; ?>><?php _e('Yes','wcps');?></option>
|
829 |
+
|
830 |
+
</select>
|
831 |
+
</div>
|
832 |
|
833 |
|
834 |
<?php
|
845 |
<option value="custom" <?php if($wcps_cart_style=="custom")echo "selected"; ?>><?php _e('Custom','wcps');?></option>
|
846 |
</select>
|
847 |
</div>
|
848 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
849 |
<div class="option-box">
|
850 |
<p class="option-title"><?php _e('Add to cart Background Color','wcps');?></p>
|
851 |
<p class="option-info"></p>
|
852 |
+
<input type="text" name="wcps_cart_bg" class="wcps_color" id="wcps_cart_bg" value="<?php echo $wcps_cart_bg; ?>" />
|
853 |
</div>
|
854 |
|
855 |
<div class="option-box">
|
856 |
<p class="option-title"><?php _e('Add to cart Text Color','wcps');?></p>
|
857 |
<p class="option-info"></p>
|
858 |
+
<input type="text" name="wcps_cart_text_color" class="wcps_color" id="wcps_cart_text_color" value="<?php echo $wcps_cart_text_color; ?>" />
|
859 |
</div>
|
860 |
|
861 |
<div class="option-box">
|
862 |
+
<p class="option-title"><?php _e('Items Cart Text Align','wcps');?></p>
|
863 |
|
864 |
|
865 |
<select name="wcps_cart_text_align" >
|
866 |
<option value="left" <?php if($wcps_cart_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
|
|
867 |
<option value="right" <?php if($wcps_cart_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
868 |
+
<option value="center" <?php if($wcps_cart_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
|
|
869 |
</select>
|
870 |
|
871 |
</div>
|
878 |
elseif($item_key == 'sale'){
|
879 |
|
880 |
?>
|
881 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
|
883 |
<div class="option-box">
|
884 |
+
<p class="option-title"><?php _e('Sale marker icon url','wcps');?></p>
|
885 |
<p class="option-info"></p>
|
886 |
+
<input type="text" name="wcps_sale_icon_url" placeholder="" id="wcps_sale_icon_url" value="<?php echo $wcps_sale_icon_url; ?>" />
|
887 |
</div>
|
888 |
|
889 |
|
897 |
elseif($item_key == 'title'){
|
898 |
|
899 |
?>
|
900 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
901 |
|
902 |
<div class="option-box">
|
903 |
<p class="option-title"><?php _e('Items Title Color','wcps');?></p>
|
904 |
<p class="option-info"></p>
|
905 |
+
<input type="text" name="wcps_items_title_color" class="wcps_color" id="wcps_items_title_color" value="<?php echo $wcps_items_title_color; ?>" />
|
906 |
</div>
|
907 |
<div class="option-box">
|
908 |
<p class="option-title"><?php _e('Items Title Font Size','wcps');?></p>
|
909 |
<p class="option-info"></p>
|
910 |
+
<input type="text" name="wcps_items_title_font_size" placeholder="14px" id="wcps_items_title_font_size" value="<?php echo $wcps_items_title_font_size; ?>" />
|
911 |
</div>
|
912 |
|
913 |
|
918 |
<select name="wcps_items_title_text_align" >
|
919 |
<option value="left" <?php if($wcps_items_title_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
920 |
<option value="right" <?php if($wcps_items_title_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
|
|
921 |
<option value="center" <?php if($wcps_items_title_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
922 |
</select>
|
923 |
|
929 |
|
930 |
elseif($item_key == 'featured'){
|
931 |
?>
|
932 |
+
|
933 |
<div class="option-box">
|
934 |
+
<p class="option-title"><?php _e('Featured marker icon url','wcps');?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
<p class="option-info"></p>
|
936 |
+
<input type="text" name="wcps_featured_icon_url" placeholder="" id="wcps_featured_icon_url" value="<?php echo $wcps_featured_icon_url; ?>" />
|
937 |
</div>
|
938 |
|
939 |
|
942 |
elseif($item_key == 'price'){
|
943 |
?>
|
944 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
945 |
<div class="option-box">
|
946 |
<p class="option-title"><?php _e('Price format on slider','wcps');?></p>
|
947 |
<p class="option-info"></p>
|
959 |
<div class="option-box">
|
960 |
<p class="option-title"><?php _e('Items Price Color','wcps');?></p>
|
961 |
<p class="option-info"></p>
|
962 |
+
<input type="text" name="wcps_items_price_color" class="wcps_color" id="wcps_items_price_color" value="<?php echo $wcps_items_price_color; ?>" />
|
963 |
</div>
|
964 |
|
965 |
<div class="option-box">
|
966 |
<p class="option-title"><?php _e('Items price Font Size','wcps');?></p>
|
967 |
<p class="option-info"></p>
|
968 |
+
<input type="text" name="wcps_items_price_font_size" placeholder="14px" id="wcps_items_price_font_size" value="<?php echo $wcps_items_price_font_size; ?>" />
|
969 |
</div>
|
970 |
|
971 |
|
976 |
|
977 |
<select name="wcps_items_price_text_align" >
|
978 |
<option value="left" <?php if($wcps_items_price_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
|
|
979 |
<option value="right" <?php if($wcps_items_price_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
980 |
+
<option value="center" <?php if($wcps_items_price_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
|
|
981 |
</select>
|
982 |
|
983 |
</div>
|
994 |
elseif($item_key == 'rating'){
|
995 |
|
996 |
?>
|
997 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
998 |
<div class="option-box">
|
999 |
<p class="option-title"><?php _e('Items Rating Text Align','wcps');?></p>
|
1000 |
|
1001 |
|
1002 |
<select name="wcps_ratings_text_align" >
|
1003 |
<option value="left" <?php if($wcps_ratings_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
|
|
1004 |
<option value="right" <?php if($wcps_ratings_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
1005 |
+
<option value="center" <?php if($wcps_ratings_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
|
|
1006 |
</select>
|
1007 |
|
1008 |
</div>
|
1011 |
<div class="option-box">
|
1012 |
<p class="option-title"><?php _e('Items ratings Font Size','wcps');?></p>
|
1013 |
<p class="option-info"></p>
|
1014 |
+
<input type="text" name="wcps_items_ratings_font_size" placeholder="14px" id="wcps_items_ratings_font_size" value="<?php echo $wcps_items_ratings_font_size; ?>" />
|
1015 |
</div>
|
1016 |
|
1017 |
|
1018 |
<div class="option-box">
|
1019 |
<p class="option-title"><?php _e('Items Ratings Color','wcps');?></p>
|
1020 |
<p class="option-info"></p>
|
1021 |
+
<input type="text" name="wcps_items_ratings_color" class="wcps_color" id="wcps_items_ratings_color" value="<?php echo $wcps_items_ratings_color; ?>" />
|
1022 |
</div>
|
1023 |
|
1024 |
|
1035 |
<div class="option-box">
|
1036 |
<p class="option-title"><?php _e('Excerpt word count','wcps');?></p>
|
1037 |
<p class="option-info"></p>
|
1038 |
+
<input type="text" name="wcps_items_excerpt_count" placeholder="30" id="wcps_items_excerpt_count" value="<?php echo $wcps_items_excerpt_count; ?>" />
|
1039 |
</div>
|
1040 |
|
1041 |
<div class="option-box">
|
1042 |
<p class="option-title"><?php _e('Excerpt read more text','wcps');?></p>
|
1043 |
<p class="option-info"></p>
|
1044 |
+
<input type="text" name="wcps_items_excerpt_read_more" placeholder="View product." id="wcps_items_excerpt_read_more" value="<?php echo $wcps_items_excerpt_read_more; ?>" />
|
1045 |
</div>
|
1046 |
|
1047 |
<div class="option-box">
|
1048 |
<p class="option-title"><?php _e('Items Excerpt Font Size','wcps');?></p>
|
1049 |
<p class="option-info"></p>
|
1050 |
+
<input type="text" name="wcps_items_excerpt_font_size" placeholder="14px" id="wcps_items_excerpt_font_size" value="<?php echo $wcps_items_excerpt_font_size; ?>" />
|
1051 |
</div>
|
1052 |
|
1053 |
|
1057 |
|
1058 |
<select name="wcps_items_excerpt_text_align" >
|
1059 |
<option value="left" <?php if($wcps_items_excerpt_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
|
|
1060 |
<option value="right" <?php if($wcps_items_excerpt_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
1061 |
|
1062 |
+
<option value="center" <?php if($wcps_items_excerpt_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
1063 |
</select>
|
1064 |
|
1065 |
</div>
|
1066 |
|
1067 |
+
<div class="option-box">
|
1068 |
+
<p class="option-title"><?php _e('Items Excerpt Font color','wcps');?></p>
|
1069 |
+
<p class="option-info"></p>
|
1070 |
+
<input type="text" class="wcps_color" name="wcps_items_excerpt_font_color" placeholder="14px" id="wcps_items_excerpt_font_color" value="<?php echo $wcps_items_excerpt_font_color; ?>" />
|
1071 |
+
</div>
|
1072 |
+
|
1073 |
+
|
1074 |
+
|
1075 |
|
1076 |
<?php
|
1077 |
|
1084 |
|
1085 |
elseif($item_key=='category'){
|
1086 |
?>
|
1087 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1088 |
|
1089 |
<div class="option-box">
|
1090 |
<p class="option-title"><?php _e('Items Category Font Size','wcps');?></p>
|
1091 |
<p class="option-info"></p>
|
1092 |
+
<input type="text" name="wcps_items_cat_font_size" placeholder="14px" id="wcps_items_cat_font_size" value="<?php echo $wcps_items_cat_font_size; ?>" />
|
1093 |
</div>
|
1094 |
|
1095 |
|
1099 |
|
1100 |
<select name="wcps_items_cat_text_align" >
|
1101 |
<option value="left" <?php if($wcps_items_cat_text_align=="left")echo "selected"; ?>><?php _e('Left','wcps');?></option>
|
|
|
1102 |
<option value="right" <?php if($wcps_items_cat_text_align=="right")echo "selected"; ?>><?php _e('Right','wcps');?></option>
|
1103 |
+
<option value="center" <?php if($wcps_items_cat_text_align=="center")echo "selected"; ?>><?php _e('Center','wcps');?></option>
|
|
|
1104 |
</select>
|
1105 |
|
1106 |
</div>
|
1107 |
|
1108 |
|
1109 |
+
|
1110 |
+
|
1111 |
+
<div class="option-box">
|
1112 |
+
<p class="option-title"><?php _e('Items Category Font color','wcps');?></p>
|
1113 |
+
<p class="option-info"></p>
|
1114 |
+
<input type="text" class="wcps_color" name="wcps_items_cat_font_color" placeholder="14px" id="wcps_items_cat_font_color" value="<?php echo $wcps_items_cat_font_color; ?>" />
|
1115 |
+
</div>
|
1116 |
+
|
1117 |
+
|
1118 |
+
|
1119 |
+
|
1120 |
+
|
1121 |
+
|
1122 |
+
|
1123 |
<?php
|
1124 |
|
1125 |
|
1192 |
|
1193 |
</div>
|
1194 |
|
1195 |
+
|
1196 |
+
|
1197 |
+
|
1198 |
+
|
1199 |
|
1200 |
<?php
|
1201 |
|
1242 |
$wcps_items_padding = sanitize_text_field( $_POST['wcps_items_padding'] );
|
1243 |
|
1244 |
$wcps_themes = sanitize_text_field( $_POST['wcps_themes'] );
|
1245 |
+
|
1246 |
+
|
1247 |
$wcps_total_items = sanitize_text_field( $_POST['wcps_total_items'] );
|
1248 |
|
1249 |
$wcps_total_items_price_format = sanitize_text_field( $_POST['wcps_total_items_price_format'] );
|
1341 |
$wcps_content_month = sanitize_text_field( $_POST['wcps_content_month'] );
|
1342 |
$wcps_content_month_year = sanitize_text_field( $_POST['wcps_content_month_year'] );
|
1343 |
|
1344 |
+
$wcps_content_sku = sanitize_text_field( $_POST['wcps_content_sku'] );
|
1345 |
|
1346 |
|
1347 |
|
1371 |
}
|
1372 |
else
|
1373 |
{
|
1374 |
+
$wcps_product_ids = sanitize_text_field( $_POST['wcps_product_ids'] );
|
1375 |
}
|
1376 |
|
1377 |
|
1378 |
|
1379 |
|
1380 |
|
1381 |
+
//$wcps_cat_display = sanitize_text_field( $_POST['wcps_cat_display'] );
|
1382 |
$wcps_items_cat_font_size = sanitize_text_field( $_POST['wcps_items_cat_font_size'] );
|
1383 |
$wcps_items_cat_text_align = sanitize_text_field( $_POST['wcps_items_cat_text_align'] );
|
1384 |
+
$wcps_items_cat_font_color = sanitize_text_field( $_POST['wcps_items_cat_font_color'] );
|
1385 |
|
1386 |
+
//$wcps_featured_display = sanitize_text_field( $_POST['wcps_featured_display'] );
|
1387 |
$wcps_featured_icon_url = sanitize_text_field( $_POST['wcps_featured_icon_url'] );
|
1388 |
|
1389 |
+
//$wcps_sale_display = sanitize_text_field( $_POST['wcps_sale_display'] );
|
1390 |
$wcps_sale_icon_url = sanitize_text_field( $_POST['wcps_sale_icon_url'] );
|
1391 |
|
1392 |
|
1393 |
|
1394 |
+
//$wcps_ratings_display = sanitize_text_field( $_POST['wcps_ratings_display'] );
|
1395 |
$wcps_ratings_text_align = sanitize_text_field( $_POST['wcps_ratings_text_align'] );
|
1396 |
$wcps_items_ratings_font_size = sanitize_text_field( $_POST['wcps_items_ratings_font_size'] );
|
1397 |
$wcps_items_ratings_color = sanitize_text_field( $_POST['wcps_items_ratings_color'] );
|
1398 |
|
1399 |
$wcps_cart_style = sanitize_text_field( $_POST['wcps_cart_style'] );
|
1400 |
+
//$wcps_cart_display = sanitize_text_field( $_POST['wcps_cart_display'] );
|
1401 |
$wcps_cart_bg = sanitize_text_field( $_POST['wcps_cart_bg'] );
|
1402 |
$wcps_cart_text_color = sanitize_text_field( $_POST['wcps_cart_text_color'] );
|
1403 |
+
$wcps_cart_text_align = sanitize_text_field( $_POST['wcps_cart_text_align'] );
|
1404 |
+
|
1405 |
|
1406 |
$wcps_grid_items = stripslashes_deep( $_POST['wcps_grid_items'] );
|
1407 |
$wcps_grid_items_hide = stripslashes_deep( $_POST['wcps_grid_items_hide'] );
|
1408 |
|
1409 |
+
//$wcps_items_title_display = sanitize_text_field( $_POST['wcps_items_title_display'] );
|
1410 |
$wcps_items_title_color = sanitize_text_field( $_POST['wcps_items_title_color'] );
|
1411 |
$wcps_items_title_font_size = sanitize_text_field( $_POST['wcps_items_title_font_size'] );
|
1412 |
$wcps_items_title_text_align = sanitize_text_field( $_POST['wcps_items_title_text_align'] );
|
1414 |
$wcps_items_excerpt_count = sanitize_text_field( $_POST['wcps_items_excerpt_count'] );
|
1415 |
$wcps_items_excerpt_read_more = sanitize_text_field( $_POST['wcps_items_excerpt_read_more'] );
|
1416 |
$wcps_items_excerpt_text_align = sanitize_text_field( $_POST['wcps_items_excerpt_text_align'] );
|
1417 |
+
$wcps_items_excerpt_font_size = sanitize_text_field( $_POST['wcps_items_excerpt_font_size'] );
|
1418 |
+
$wcps_items_excerpt_font_color = sanitize_text_field( $_POST['wcps_items_excerpt_font_color'] );
|
1419 |
|
1420 |
+
//$wcps_items_price_display = sanitize_text_field( $_POST['wcps_items_price_display'] );
|
1421 |
$wcps_items_price_color = sanitize_text_field( $_POST['wcps_items_price_color'] );
|
1422 |
$wcps_items_price_font_size = sanitize_text_field( $_POST['wcps_items_price_font_size'] );
|
1423 |
$wcps_items_price_text_align = sanitize_text_field( $_POST['wcps_items_price_text_align'] );
|
1424 |
|
1425 |
$wcps_items_thumb_link_to = sanitize_text_field( $_POST['wcps_items_thumb_link_to'] );
|
1426 |
$wcps_items_thumb_size = sanitize_text_field( $_POST['wcps_items_thumb_size'] );
|
1427 |
+
$wcps_items_thumb_max_hieght = sanitize_text_field( $_POST['wcps_items_thumb_max_hieght'] );
|
1428 |
+
$wcps_items_thumb_zoom = sanitize_text_field( $_POST['wcps_items_thumb_zoom'] );
|
1429 |
|
1430 |
$wcps_items_empty_thumb = sanitize_text_field( $_POST['wcps_items_empty_thumb'] );
|
1431 |
$wcps_query_order = sanitize_text_field( $_POST['wcps_query_order'] );
|
1475 |
update_post_meta( $post_id, 'wcps_content_source', $wcps_content_source );
|
1476 |
update_post_meta( $post_id, 'wcps_content_year', $wcps_content_year );
|
1477 |
update_post_meta( $post_id, 'wcps_content_month', $wcps_content_month );
|
1478 |
+
update_post_meta( $post_id, 'wcps_content_month_year', $wcps_content_month_year );
|
1479 |
+
|
1480 |
+
update_post_meta( $post_id, 'wcps_content_sku', $wcps_content_sku );
|
1481 |
|
1482 |
update_post_meta( $post_id, 'wcps_taxonomy', $wcps_taxonomy );
|
1483 |
update_post_meta( $post_id, 'wcps_taxonomy_category', $wcps_taxonomy_category );
|
1484 |
|
1485 |
update_post_meta( $post_id, 'wcps_product_ids', $wcps_product_ids );
|
1486 |
|
1487 |
+
//update_post_meta( $post_id, 'wcps_cat_display', $wcps_cat_display );
|
1488 |
update_post_meta( $post_id, 'wcps_items_cat_font_size', $wcps_items_cat_font_size );
|
1489 |
+
update_post_meta( $post_id, 'wcps_items_cat_text_align', $wcps_items_cat_text_align );
|
1490 |
+
update_post_meta( $post_id, 'wcps_items_cat_font_color', $wcps_items_cat_font_color );
|
1491 |
|
1492 |
+
//update_post_meta( $post_id, 'wcps_featured_display', $wcps_featured_display );
|
1493 |
update_post_meta( $post_id, 'wcps_featured_icon_url', $wcps_featured_icon_url );
|
1494 |
|
1495 |
+
//update_post_meta( $post_id, 'wcps_sale_display', $wcps_sale_display );
|
1496 |
update_post_meta( $post_id, 'wcps_sale_icon_url', $wcps_sale_icon_url );
|
1497 |
|
1498 |
|
1499 |
+
//update_post_meta( $post_id, 'wcps_ratings_display', $wcps_ratings_display );
|
1500 |
update_post_meta( $post_id, 'wcps_ratings_text_align', $wcps_ratings_text_align );
|
1501 |
update_post_meta( $post_id, 'wcps_items_ratings_font_size', $wcps_items_ratings_font_size );
|
1502 |
update_post_meta( $post_id, 'wcps_items_ratings_color', $wcps_items_ratings_color );
|
1503 |
|
1504 |
update_post_meta( $post_id, 'wcps_cart_style', $wcps_cart_style );
|
1505 |
+
//update_post_meta( $post_id, 'wcps_cart_display', $wcps_cart_display );
|
1506 |
update_post_meta( $post_id, 'wcps_cart_bg', $wcps_cart_bg );
|
1507 |
update_post_meta( $post_id, 'wcps_cart_text_color', $wcps_cart_text_color );
|
1508 |
update_post_meta( $post_id, 'wcps_cart_text_align', $wcps_cart_text_align );
|
1510 |
update_post_meta( $post_id, 'wcps_grid_items', $wcps_grid_items );
|
1511 |
update_post_meta( $post_id, 'wcps_grid_items_hide', $wcps_grid_items_hide );
|
1512 |
|
1513 |
+
//update_post_meta( $post_id, 'wcps_items_title_display', $wcps_items_title_display );
|
1514 |
update_post_meta( $post_id, 'wcps_items_title_color', $wcps_items_title_color );
|
1515 |
update_post_meta( $post_id, 'wcps_items_title_font_size', $wcps_items_title_font_size );
|
1516 |
update_post_meta( $post_id, 'wcps_items_title_text_align', $wcps_items_title_text_align );
|
1518 |
update_post_meta( $post_id, 'wcps_items_excerpt_count', $wcps_items_excerpt_count );
|
1519 |
update_post_meta( $post_id, 'wcps_items_excerpt_read_more', $wcps_items_excerpt_read_more );
|
1520 |
update_post_meta( $post_id, 'wcps_items_excerpt_text_align', $wcps_items_excerpt_text_align );
|
1521 |
+
update_post_meta( $post_id, 'wcps_items_excerpt_font_size', $wcps_items_excerpt_font_size );
|
1522 |
+
update_post_meta( $post_id, 'wcps_items_excerpt_font_color', $wcps_items_excerpt_font_color );
|
1523 |
|
1524 |
+
//update_post_meta( $post_id, 'wcps_items_price_display', $wcps_items_price_display );
|
1525 |
update_post_meta( $post_id, 'wcps_items_price_color', $wcps_items_price_color );
|
1526 |
update_post_meta( $post_id, 'wcps_items_price_font_size', $wcps_items_price_font_size );
|
1527 |
update_post_meta( $post_id, 'wcps_items_price_text_align', $wcps_items_price_text_align );
|
1529 |
update_post_meta( $post_id, 'wcps_items_thumb_link_to', $wcps_items_thumb_link_to );
|
1530 |
update_post_meta( $post_id, 'wcps_items_thumb_size', $wcps_items_thumb_size );
|
1531 |
update_post_meta( $post_id, 'wcps_items_thumb_max_hieght', $wcps_items_thumb_max_hieght );
|
1532 |
+
update_post_meta( $post_id, 'wcps_items_thumb_zoom', $wcps_items_thumb_zoom );
|
1533 |
|
1534 |
update_post_meta( $post_id, 'wcps_items_empty_thumb', $wcps_items_empty_thumb );
|
1535 |
update_post_meta( $post_id, 'wcps_query_order', $wcps_query_order );
|
languages/default.mo
CHANGED
Binary file
|
languages/default.po
CHANGED
@@ -1,52 +1,51 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Woocommerce Products Slider\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
|
7 |
"Language-Team: PickPlugins <support@pickplugins.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: includes\n"
|
18 |
"X-Poedit-SearchPath-2: templates\n"
|
19 |
-
"X-Poedit-SearchPath-3: themes\n"
|
20 |
|
21 |
-
#: includes/class-functions.php:
|
22 |
msgid "Thumbnail"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: includes/class-functions.php:
|
26 |
msgid "Title"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: includes/class-functions.php:
|
30 |
msgid "Excerpt"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: includes/class-functions.php:
|
34 |
msgid "Category"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: includes/class-functions.php:
|
38 |
msgid "Price"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: includes/class-functions.php:
|
42 |
msgid "Rating"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: includes/class-functions.php:
|
46 |
msgid "Cart"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: includes/class-functions.php:
|
50 |
msgid "Sale"
|
51 |
msgstr ""
|
52 |
|
@@ -54,50 +53,27 @@ msgstr ""
|
|
54 |
msgid "Settings"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: includes/class-
|
58 |
-
msgid "
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: includes/menu/license.php:26 includes/menu/settings.php:36
|
62 |
-
msgid "Changes Saved."
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: includes/menu/license.php:53
|
66 |
-
msgid "Activation"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: includes/menu/license.php:60
|
70 |
-
msgid "Activate license"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: includes/menu/license.php:82 includes/menu/license.php:133
|
74 |
-
msgid "Unexpected Error! The query returned with an error."
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: includes/menu/license.php:175
|
78 |
-
msgid "Not Active"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/
|
82 |
-
|
83 |
-
#: includes/wcps-meta.php:323 includes/wcps-meta.php:344
|
84 |
-
#: includes/wcps-meta.php:377 includes/wcps-meta.php:393
|
85 |
-
msgid "Active"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/
|
89 |
-
msgid "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/menu/
|
93 |
-
msgid "
|
94 |
msgstr ""
|
95 |
|
96 |
#: includes/menu/settings.php:56
|
97 |
msgid " Settings"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/menu/settings.php:67 includes/
|
101 |
msgid "Options"
|
102 |
msgstr ""
|
103 |
|
@@ -109,18 +85,11 @@ msgstr ""
|
|
109 |
msgid "Track product View"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/menu/settings.php:81 includes/
|
113 |
-
#: includes/wcps-meta.php:907 includes/wcps-meta.php:948
|
114 |
-
#: includes/wcps-meta.php:975 includes/wcps-meta.php:1016
|
115 |
-
#: includes/wcps-meta.php:1039 includes/wcps-meta.php:1101
|
116 |
-
#: includes/wcps-meta.php:1192
|
117 |
msgid "No"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/menu/settings.php:82 includes/
|
121 |
-
#: includes/wcps-meta.php:947 includes/wcps-meta.php:974
|
122 |
-
#: includes/wcps-meta.php:1015 includes/wcps-meta.php:1038
|
123 |
-
#: includes/wcps-meta.php:1100 includes/wcps-meta.php:1191
|
124 |
msgid "Yes"
|
125 |
msgstr ""
|
126 |
|
@@ -169,579 +138,494 @@ msgstr ""
|
|
169 |
msgid "Save Changes"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: includes/
|
173 |
-
#: includes/wcps-meta.php:217
|
174 |
-
msgid "Shortcode"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: includes/wcps-functions.php:283
|
178 |
-
msgid "No categories found!"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/wcps-meta.php:13 includes/wcps-meta.php:14
|
182 |
msgid "WCPS"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/
|
186 |
-
#: includes/wcps-meta.php:18
|
187 |
msgid "New WCPS"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/
|
191 |
msgid "Edit WCPS"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/
|
195 |
msgid "View WCPS"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/
|
199 |
msgid "Search WCPS"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/
|
203 |
msgid "Nothing found"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/
|
207 |
msgid "Nothing found in Trash"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/
|
211 |
msgid "Woocommerce Products Slider Options"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/
|
215 |
msgid "Style"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/
|
219 |
msgid "Content"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/
|
223 |
msgid "Custom CSS"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/
|
227 |
msgid ""
|
228 |
"Copy this shortcode and paste on page or post where you want to display "
|
229 |
"slider."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/
|
233 |
msgid "Use PHP code to your themes file to display slider."
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/
|
237 |
msgid "Slider Total Items"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/
|
241 |
msgid "ex: 10"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: includes/
|
245 |
msgid "Slider Column Number"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/
|
249 |
msgid "In Destop: (min:1000px and max)"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/
|
253 |
msgid "In Tablet & Small Desktop: (900px max width)"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/
|
257 |
msgid "In Mobile: (479px max width)"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/
|
261 |
msgid "Slider Auto Play"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/
|
265 |
-
#: includes/
|
266 |
-
#: includes/
|
267 |
-
|
268 |
-
msgid "Inactive"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Slider Stop on Hover"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/
|
276 |
msgid "Slider Navigation"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/
|
280 |
msgid "Slider Navigation at Top"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: includes/
|
284 |
msgid "Slider Navigation Position"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/
|
288 |
msgid "Top Right"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/
|
292 |
msgid "Middle"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/
|
296 |
msgid "Middle fixed"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/
|
300 |
msgid "Slider Pagination"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/
|
304 |
msgid "Slider Pagination at Bottom"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/
|
308 |
msgid "Pagination Background Color"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/
|
312 |
msgid "Pagination Text Color"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/
|
316 |
msgid "Pagination Number Counting"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/
|
320 |
msgid "Slide Speed"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/
|
324 |
msgid "Pagination Slide Speed"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: includes/
|
328 |
msgid "Slider Touch Drag Enabled"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: includes/
|
332 |
msgid "Slider Mouse Drag Enabled"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: includes/
|
336 |
msgid "Themes for slider"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: includes/
|
340 |
msgid "Slider Ribbon"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/
|
344 |
msgid "Container options"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/
|
348 |
msgid "Padding: (ex: 10px)"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: includes/
|
352 |
msgid "Background color:"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: includes/
|
356 |
msgid "Background image:"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: includes/
|
360 |
msgid "Clear"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: includes/
|
364 |
msgid "Items Options"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: includes/
|
368 |
msgid "Items Background color"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: includes/
|
372 |
msgid "Items Padding"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: includes/
|
376 |
msgid "Empty Thumbnail"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: includes/
|
380 |
msgid "Custom thumbnail image url"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/
|
384 |
msgid "Query order"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: includes/
|
388 |
-
msgid "
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: includes/
|
392 |
-
msgid "
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: includes/
|
396 |
msgid "Query orderBy"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: includes/
|
400 |
msgid "None"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/
|
404 |
msgid "ID"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/
|
408 |
msgid "Date"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/
|
412 |
msgid "Rand"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: includes/
|
416 |
msgid "Comment Count"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: includes/
|
420 |
msgid "Author"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: includes/
|
424 |
msgid "Name"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/
|
428 |
msgid "Type"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/
|
432 |
msgid "Hide out of stock items"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/
|
436 |
msgid "Yes "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/
|
440 |
msgid "Filter Slider Content."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/
|
444 |
-
msgid "Display from Recent Published"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/
|
448 |
msgid "Slider items will query from recent published product."
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/
|
452 |
-
msgid "Display from Featured Product"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/
|
456 |
msgid "Slider items will query from featured marked product."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/
|
460 |
-
msgid "Display from <b>
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: includes/wcps-meta.php:684
|
464 |
-
msgid "Slider items will query from from <b>on sale</b> product."
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: includes/wcps-meta.php:688
|
468 |
-
msgid "Display from <b>Best Selling</b> Product"
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: includes/wcps-meta.php:689
|
472 |
-
msgid "Slider items will query from from on <b>Best Selling</b> product."
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: includes/wcps-meta.php:692
|
476 |
-
msgid "Display from <b>Top Rated</b> Product"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: includes/wcps-meta.php:693
|
480 |
-
msgid "Slider items will query from from on <b>Top Rated</b> product."
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: includes/wcps-meta.php:696
|
484 |
-
msgid "Display from <b>Recently viewed</b>"
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: includes/wcps-meta.php:697
|
488 |
-
msgid "Slider items will query from recently viewed product."
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#: includes/wcps-meta.php:700
|
492 |
-
msgid "Display from Only Year"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/
|
496 |
msgid "Slider items will query from a year."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/
|
500 |
-
msgid "Display from Month"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/
|
504 |
msgid "Slider items will query from Month of a year."
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/
|
508 |
-
msgid "
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: includes/wcps-meta.php:760
|
512 |
-
msgid "Slide Categories"
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: includes/wcps-meta.php:788
|
516 |
-
msgid "Display by Product id"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: includes/
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/
|
524 |
msgid "Reset"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/
|
528 |
msgid "Slider Thumbnail Size"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/
|
532 |
-
msgid "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/
|
536 |
msgid "Large"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/
|
540 |
-
msgid "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/
|
544 |
msgid "Items thumbnail link's to"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/
|
548 |
msgid "Product"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: includes/
|
552 |
msgid "Slider thumb max hieght(px)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: includes/
|
|
|
|
|
|
|
|
|
556 |
msgid "Items Add to cart button Style"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/
|
560 |
msgid "You can hide items Add to cart button on slider."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: includes/
|
564 |
msgid "Default"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/
|
568 |
msgid "Custom"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/
|
572 |
-
msgid "Items Add to cart button Display"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/wcps-meta.php:912
|
576 |
msgid "Add to cart Background Color"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/
|
580 |
msgid "Add to cart Text Color"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/
|
584 |
-
msgid "Items
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: includes/
|
588 |
-
#: includes/
|
589 |
-
#: includes/wcps-meta.php:1168 includes/wcps-meta.php:1208
|
590 |
-
msgid "Right"
|
591 |
-
msgstr ""
|
592 |
-
|
593 |
-
#: includes/wcps-meta.php:929 includes/wcps-meta.php:999
|
594 |
-
#: includes/wcps-meta.php:1078 includes/wcps-meta.php:1113
|
595 |
-
#: includes/wcps-meta.php:1169 includes/wcps-meta.php:1209
|
596 |
msgid "Left"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: includes/
|
600 |
-
#: includes/
|
601 |
-
|
602 |
-
msgid "Center"
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: includes/wcps-meta.php:944
|
606 |
-
msgid "Items Sale marker display"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: includes/wcps-meta.php:945 includes/wcps-meta.php:1013
|
610 |
-
msgid "You can hide items featured marker on slider."
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: includes/wcps-meta.php:953
|
614 |
-
msgid "Sale marker icon"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/
|
618 |
-
|
|
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/
|
622 |
-
msgid "
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/
|
626 |
msgid "Items Title Color"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: includes/
|
630 |
msgid "Items Title Font Size"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/
|
634 |
-
msgid "Items
|
635 |
-
msgstr ""
|
636 |
-
|
637 |
-
#: includes/wcps-meta.php:1021
|
638 |
-
msgid "Featured marker icon"
|
639 |
-
msgstr ""
|
640 |
-
|
641 |
-
#: includes/wcps-meta.php:1034
|
642 |
-
msgid "Items Price Display"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: includes/
|
646 |
-
msgid "
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: includes/
|
650 |
msgid "Price format on slider"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: includes/
|
654 |
msgid "Full Format"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: includes/
|
658 |
msgid "Sale price"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: includes/
|
662 |
msgid "Regular price"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: includes/
|
666 |
msgid "Items Price Color"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: includes/
|
670 |
msgid "Items price Font Size"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: includes/
|
674 |
msgid "Price Text Align"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: includes/
|
678 |
-
msgid "Star Rating Display"
|
679 |
-
msgstr ""
|
680 |
-
|
681 |
-
#: includes/wcps-meta.php:1098
|
682 |
-
msgid "You can hide star ratings on slider."
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#: includes/wcps-meta.php:1108
|
686 |
msgid "Items Rating Text Align"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: includes/
|
690 |
msgid "Items ratings Font Size"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: includes/
|
694 |
msgid "Items Ratings Color"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/
|
698 |
msgid "Excerpt word count"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: includes/
|
702 |
msgid "Excerpt read more text"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: includes/
|
706 |
msgid "Items Excerpt Font Size"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/
|
710 |
msgid "Excerpt Text Align"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/
|
714 |
-
msgid "Items
|
715 |
-
msgstr ""
|
716 |
-
|
717 |
-
#: includes/wcps-meta.php:1189
|
718 |
-
msgid "You can hide items category on slider."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/
|
722 |
msgid "Items Category Font Size"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/
|
726 |
msgid "Category Text Align"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/
|
|
|
|
|
|
|
|
|
730 |
msgid "Custom CSS for this slider."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: includes/
|
734 |
msgid ""
|
735 |
"Do not use <style></style> tag, you can use bellow prefix to your css, "
|
736 |
"sometime you need use \"!important\" to overrid."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: templates/wcps-featured.php:22
|
740 |
-
#: themes/theme11/index.php:122 themes/theme12/index.php:123
|
741 |
-
#: themes/theme2/index-old.php:127 themes/theme3/index-old.php:127
|
742 |
-
#: themes/theme4/index.php:118 themes/theme5/index.php:117 themes/theme6/index
|
743 |
-
#: - Copy.php:128 themes/theme7/index.php:117 themes/theme8/index.php:116
|
744 |
-
#: themes/theme9/index.php:118
|
745 |
msgid "Featured Product"
|
746 |
msgstr ""
|
747 |
|
@@ -749,22 +633,6 @@ msgstr ""
|
|
749 |
msgid "Rated"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: templates/wcps-sale.php:19
|
753 |
-
#: themes/theme11/index.php:115 themes/theme12/index.php:116
|
754 |
-
#: themes/theme2/index-old.php:132 themes/theme3/index-old.php:132
|
755 |
-
#: themes/theme4/index.php:123 themes/theme5/index.php:122 themes/theme6/index
|
756 |
-
#: - Copy.php:133 themes/theme7/index.php:122 themes/theme8/index.php:121
|
757 |
-
#: themes/theme9/index.php:123
|
758 |
msgid "Sale Product"
|
759 |
msgstr ""
|
760 |
-
|
761 |
-
#: themes/theme1/index-old.php:141 themes/theme1/index.php:89
|
762 |
-
#: themes/theme10/index.php:163 themes/theme11/index.php:167
|
763 |
-
#: themes/theme12/index.php:167 themes/theme2/index-old.php:171
|
764 |
-
#: themes/theme2/index.php:140 themes/theme3/index-old.php:171
|
765 |
-
#: themes/theme3/index.php:141 themes/theme4/index.php:164
|
766 |
-
#: themes/theme5/index.php:163 themes/theme6/index - Copy.php:172
|
767 |
-
#: themes/theme6/index.php:120 themes/theme7/index.php:163
|
768 |
-
#: themes/theme8/index.php:162 themes/theme9/index.php:164
|
769 |
-
msgid "No Product to Slide"
|
770 |
-
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Woocommerce Products Slider\n"
|
4 |
+
"POT-Creation-Date: 2016-03-15 19:25+0600\n"
|
5 |
+
"PO-Revision-Date: 2016-03-15 19:25+0600\n"
|
6 |
"Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
|
7 |
"Language-Team: PickPlugins <support@pickplugins.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.7\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: includes\n"
|
18 |
"X-Poedit-SearchPath-2: templates\n"
|
|
|
19 |
|
20 |
+
#: includes/class-functions.php:62 includes/meta.php:812
|
21 |
msgid "Thumbnail"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: includes/class-functions.php:63 includes/meta.php:699
|
25 |
msgid "Title"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: includes/class-functions.php:64
|
29 |
msgid "Excerpt"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: includes/class-functions.php:65 includes/meta.php:823
|
33 |
msgid "Category"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: includes/class-functions.php:66
|
37 |
msgid "Price"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: includes/class-functions.php:67
|
41 |
msgid "Rating"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/class-functions.php:68
|
45 |
msgid "Cart"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: includes/class-functions.php:69
|
49 |
msgid "Sale"
|
50 |
msgstr ""
|
51 |
|
53 |
msgid "Settings"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: includes/class-shortcodes.php:143
|
57 |
+
msgid "No Product to Slide"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/functions.php:84 includes/meta.php:293 includes/meta.php:304
|
61 |
+
msgid "Shortcode"
|
|
|
|
|
|
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: includes/functions.php:176
|
65 |
+
msgid "No categories found!"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/menu/settings.php:36
|
69 |
+
msgid "Changes Saved."
|
70 |
msgstr ""
|
71 |
|
72 |
#: includes/menu/settings.php:56
|
73 |
msgid " Settings"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/menu/settings.php:67 includes/meta.php:294
|
77 |
msgid "Options"
|
78 |
msgstr ""
|
79 |
|
85 |
msgid "Track product View"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: includes/menu/settings.php:81 includes/meta.php:711 includes/meta.php:840
|
|
|
|
|
|
|
|
|
89 |
msgid "No"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/menu/settings.php:82 includes/meta.php:841
|
|
|
|
|
|
|
93 |
msgid "Yes"
|
94 |
msgstr ""
|
95 |
|
138 |
msgid "Save Changes"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/meta.php:13 includes/meta.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
msgid "WCPS"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/meta.php:15 includes/meta.php:16 includes/meta.php:18
|
|
|
146 |
msgid "New WCPS"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/meta.php:17
|
150 |
msgid "Edit WCPS"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/meta.php:19
|
154 |
msgid "View WCPS"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/meta.php:20
|
158 |
msgid "Search WCPS"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/meta.php:21
|
162 |
msgid "Nothing found"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/meta.php:22
|
166 |
msgid "Nothing found in Trash"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/meta.php:60
|
170 |
msgid "Woocommerce Products Slider Options"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/meta.php:295
|
174 |
msgid "Style"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/meta.php:296
|
178 |
msgid "Content"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/meta.php:297
|
182 |
msgid "Custom CSS"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/meta.php:306
|
186 |
msgid ""
|
187 |
"Copy this shortcode and paste on page or post where you want to display "
|
188 |
"slider."
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: includes/meta.php:308
|
192 |
msgid "Use PHP code to your themes file to display slider."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: includes/meta.php:321
|
196 |
msgid "Slider Total Items"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: includes/meta.php:322
|
200 |
msgid "ex: 10"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: includes/meta.php:327
|
204 |
msgid "Slider Column Number"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: includes/meta.php:329
|
208 |
msgid "In Destop: (min:1000px and max)"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: includes/meta.php:332
|
212 |
msgid "In Tablet & Small Desktop: (900px max width)"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: includes/meta.php:335
|
216 |
msgid "In Mobile: (479px max width)"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: includes/meta.php:343
|
220 |
msgid "Slider Auto Play"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: includes/meta.php:348 includes/meta.php:358 includes/meta.php:369
|
224 |
+
#: includes/meta.php:392 includes/meta.php:407 includes/meta.php:436
|
225 |
+
#: includes/meta.php:447
|
226 |
+
msgid "True"
|
|
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/meta.php:349 includes/meta.php:359 includes/meta.php:370
|
230 |
+
#: includes/meta.php:393 includes/meta.php:406 includes/meta.php:437
|
231 |
+
#: includes/meta.php:448
|
232 |
+
msgid "False"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: includes/meta.php:354
|
236 |
msgid "Slider Stop on Hover"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/meta.php:365
|
240 |
msgid "Slider Navigation"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/meta.php:366
|
244 |
msgid "Slider Navigation at Top"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/meta.php:374
|
248 |
msgid "Slider Navigation Position"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: includes/meta.php:376
|
252 |
msgid "Top Right"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/meta.php:377
|
256 |
msgid "Middle"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/meta.php:378
|
260 |
msgid "Middle fixed"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/meta.php:388
|
264 |
msgid "Slider Pagination"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/meta.php:389
|
268 |
msgid "Slider Pagination at Bottom"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/meta.php:398
|
272 |
msgid "Pagination Background Color"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/meta.php:401
|
276 |
msgid "Pagination Text Color"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/meta.php:404
|
280 |
msgid "Pagination Number Counting"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/meta.php:420
|
284 |
msgid "Slide Speed"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/meta.php:425
|
288 |
msgid "Pagination Slide Speed"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/meta.php:431
|
292 |
msgid "Slider Touch Drag Enabled"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/meta.php:443
|
296 |
msgid "Slider Mouse Drag Enabled"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: includes/meta.php:457
|
300 |
msgid "Themes for slider"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/meta.php:480
|
304 |
msgid "Slider Ribbon"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/meta.php:551
|
308 |
msgid "Container options"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/meta.php:552
|
312 |
msgid "Padding: (ex: 10px)"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/meta.php:555
|
316 |
msgid "Background color:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/meta.php:558
|
320 |
msgid "Background image:"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: includes/meta.php:563
|
324 |
msgid "Clear"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: includes/meta.php:588
|
328 |
msgid "Items Options"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/meta.php:589
|
332 |
msgid "Items Background color"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: includes/meta.php:592
|
336 |
msgid "Items Padding"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/meta.php:604
|
340 |
msgid "Empty Thumbnail"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/meta.php:605
|
344 |
msgid "Custom thumbnail image url"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/meta.php:674
|
348 |
msgid "Query order"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: includes/meta.php:677
|
352 |
+
msgid "Descending"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: includes/meta.php:678
|
356 |
+
msgid "Ascending "
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: includes/meta.php:690
|
360 |
msgid "Query orderBy"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: includes/meta.php:693
|
364 |
msgid "None"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/meta.php:694
|
368 |
msgid "ID"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: includes/meta.php:695
|
372 |
msgid "Date"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: includes/meta.php:696
|
376 |
msgid "Rand"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: includes/meta.php:697
|
380 |
msgid "Comment Count"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: includes/meta.php:698
|
384 |
msgid "Author"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: includes/meta.php:700
|
388 |
msgid "Name"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: includes/meta.php:701
|
392 |
msgid "Type"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: includes/meta.php:708
|
396 |
msgid "Hide out of stock items"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: includes/meta.php:712
|
400 |
msgid "Yes "
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: includes/meta.php:721
|
404 |
msgid "Filter Slider Content."
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: includes/meta.php:724
|
408 |
+
msgid "Display from <b>Recent</b> Published"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: includes/meta.php:725
|
412 |
msgid "Slider items will query from recent published product."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: includes/meta.php:728
|
416 |
+
msgid "Display from <b>Featured</b> Product"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: includes/meta.php:729
|
420 |
msgid "Slider items will query from featured marked product."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: includes/meta.php:732
|
424 |
+
msgid "Display from Only <b>Year</b>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: includes/meta.php:734
|
428 |
msgid "Slider items will query from a year."
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/meta.php:739
|
432 |
+
msgid "Display from <b>Month</b>"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/meta.php:740
|
436 |
msgid "Slider items will query from Month of a year."
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/meta.php:752
|
440 |
+
msgid "Items sort."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/meta.php:753
|
444 |
+
msgid "Click each items to expand."
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/meta.php:754
|
448 |
msgid "Reset"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/meta.php:806
|
452 |
msgid "Slider Thumbnail Size"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/meta.php:809
|
456 |
+
msgid "Full"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/meta.php:810
|
460 |
msgid "Large"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: includes/meta.php:811
|
464 |
+
msgid "Medium"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: includes/meta.php:819
|
468 |
msgid "Items thumbnail link's to"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/meta.php:822
|
472 |
msgid "Product"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/meta.php:831
|
476 |
msgid "Slider thumb max hieght(px)"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/meta.php:837
|
480 |
+
msgid "Display Thumbnail Zoom button"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: includes/meta.php:854
|
484 |
msgid "Items Add to cart button Style"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/meta.php:855
|
488 |
msgid "You can hide items Add to cart button on slider."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/meta.php:857
|
492 |
msgid "Default"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/meta.php:858
|
496 |
msgid "Custom"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: includes/meta.php:863
|
|
|
|
|
|
|
|
|
500 |
msgid "Add to cart Background Color"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: includes/meta.php:869
|
504 |
msgid "Add to cart Text Color"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/meta.php:875
|
508 |
+
msgid "Items Cart Text Align"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: includes/meta.php:879 includes/meta.php:932 includes/meta.php:991
|
512 |
+
#: includes/meta.php:1016 includes/meta.php:1072 includes/meta.php:1114
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
msgid "Left"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/meta.php:880 includes/meta.php:933 includes/meta.php:992
|
517 |
+
#: includes/meta.php:1017 includes/meta.php:1073 includes/meta.php:1115
|
518 |
+
msgid "Right"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/meta.php:881 includes/meta.php:934 includes/meta.php:993
|
522 |
+
#: includes/meta.php:1018 includes/meta.php:1075 includes/meta.php:1116
|
523 |
+
msgid "Center"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: includes/meta.php:897
|
527 |
+
msgid "Sale marker icon url"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: includes/meta.php:916
|
531 |
msgid "Items Title Color"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: includes/meta.php:921
|
535 |
msgid "Items Title Font Size"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/meta.php:928
|
539 |
+
msgid "Items Title Text Align"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/meta.php:947
|
543 |
+
msgid "Featured marker icon url"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/meta.php:959
|
547 |
msgid "Price format on slider"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/meta.php:962
|
551 |
msgid "Full Format"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: includes/meta.php:963
|
555 |
msgid "Sale price"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/meta.php:964
|
559 |
msgid "Regular price"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/meta.php:973
|
563 |
msgid "Items Price Color"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/meta.php:979
|
567 |
msgid "Items price Font Size"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/meta.php:987
|
571 |
msgid "Price Text Align"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: includes/meta.php:1012
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
msgid "Items Rating Text Align"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/meta.php:1025
|
579 |
msgid "Items ratings Font Size"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/meta.php:1032
|
583 |
msgid "Items Ratings Color"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/meta.php:1049
|
587 |
msgid "Excerpt word count"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/meta.php:1055
|
591 |
msgid "Excerpt read more text"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/meta.php:1061
|
595 |
msgid "Items Excerpt Font Size"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/meta.php:1068
|
599 |
msgid "Excerpt Text Align"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/meta.php:1081
|
603 |
+
msgid "Items Excerpt Font color"
|
|
|
|
|
|
|
|
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: includes/meta.php:1103
|
607 |
msgid "Items Category Font Size"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: includes/meta.php:1110
|
611 |
msgid "Category Text Align"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: includes/meta.php:1125
|
615 |
+
msgid "Items Category Font color"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: includes/meta.php:1180
|
619 |
msgid "Custom CSS for this slider."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: includes/meta.php:1181
|
623 |
msgid ""
|
624 |
"Do not use <style></style> tag, you can use bellow prefix to your css, "
|
625 |
"sometime you need use \"!important\" to overrid."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: templates/wcps-featured.php:22
|
|
|
|
|
|
|
|
|
|
|
629 |
msgid "Featured Product"
|
630 |
msgstr ""
|
631 |
|
633 |
msgid "Rated"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: templates/wcps-sale.php:19
|
|
|
|
|
|
|
|
|
|
|
637 |
msgid "Sale Product"
|
638 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/wcps-bn_BD.mo
CHANGED
Binary file
|
languages/wcps-bn_BD.po
CHANGED
@@ -1,52 +1,51 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Woocommerce Products Slider\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
|
7 |
"Language-Team: PickPlugins <support@pickplugins.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: includes\n"
|
18 |
"X-Poedit-SearchPath-2: templates\n"
|
19 |
-
"X-Poedit-SearchPath-3: themes\n"
|
20 |
|
21 |
-
#: includes/class-functions.php:
|
22 |
msgid "Thumbnail"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: includes/class-functions.php:
|
26 |
msgid "Title"
|
27 |
msgstr "টাইটেল"
|
28 |
|
29 |
-
#: includes/class-functions.php:
|
30 |
msgid "Excerpt"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: includes/class-functions.php:
|
34 |
msgid "Category"
|
35 |
msgstr "ক্যাটেগোরী"
|
36 |
|
37 |
-
#: includes/class-functions.php:
|
38 |
msgid "Price"
|
39 |
msgstr "মুল্য"
|
40 |
|
41 |
-
#: includes/class-functions.php:
|
42 |
msgid "Rating"
|
43 |
msgstr "রেটিং"
|
44 |
|
45 |
-
#: includes/class-functions.php:
|
46 |
msgid "Cart"
|
47 |
msgstr "কার্ট"
|
48 |
|
49 |
-
#: includes/class-functions.php:
|
50 |
msgid "Sale"
|
51 |
msgstr ""
|
52 |
|
@@ -54,50 +53,27 @@ msgstr ""
|
|
54 |
msgid "Settings"
|
55 |
msgstr "সেটিংস"
|
56 |
|
57 |
-
#: includes/class-
|
58 |
-
msgid "
|
59 |
-
msgstr "লাইসেন্স"
|
60 |
-
|
61 |
-
#: includes/menu/license.php:26 includes/menu/settings.php:36
|
62 |
-
msgid "Changes Saved."
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: includes/menu/license.php:53
|
66 |
-
msgid "Activation"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: includes/menu/license.php:60
|
70 |
-
msgid "Activate license"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: includes/menu/license.php:82 includes/menu/license.php:133
|
74 |
-
msgid "Unexpected Error! The query returned with an error."
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: includes/menu/license.php:175
|
78 |
-
msgid "Not Active"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/
|
82 |
-
|
83 |
-
#: includes/wcps-meta.php:323 includes/wcps-meta.php:344
|
84 |
-
#: includes/wcps-meta.php:377 includes/wcps-meta.php:393
|
85 |
-
msgid "Active"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/
|
89 |
-
msgid "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/menu/
|
93 |
-
msgid "
|
94 |
msgstr ""
|
95 |
|
96 |
#: includes/menu/settings.php:56
|
97 |
msgid " Settings"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/menu/settings.php:67 includes/
|
101 |
msgid "Options"
|
102 |
msgstr ""
|
103 |
|
@@ -109,18 +85,11 @@ msgstr ""
|
|
109 |
msgid "Track product View"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/menu/settings.php:81 includes/
|
113 |
-
#: includes/wcps-meta.php:907 includes/wcps-meta.php:948
|
114 |
-
#: includes/wcps-meta.php:975 includes/wcps-meta.php:1016
|
115 |
-
#: includes/wcps-meta.php:1039 includes/wcps-meta.php:1101
|
116 |
-
#: includes/wcps-meta.php:1192
|
117 |
msgid "No"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/menu/settings.php:82 includes/
|
121 |
-
#: includes/wcps-meta.php:947 includes/wcps-meta.php:974
|
122 |
-
#: includes/wcps-meta.php:1015 includes/wcps-meta.php:1038
|
123 |
-
#: includes/wcps-meta.php:1100 includes/wcps-meta.php:1191
|
124 |
msgid "Yes"
|
125 |
msgstr ""
|
126 |
|
@@ -169,579 +138,494 @@ msgstr ""
|
|
169 |
msgid "Save Changes"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: includes/
|
173 |
-
#: includes/wcps-meta.php:217
|
174 |
-
msgid "Shortcode"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: includes/wcps-functions.php:283
|
178 |
-
msgid "No categories found!"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/wcps-meta.php:13 includes/wcps-meta.php:14
|
182 |
msgid "WCPS"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/
|
186 |
-
#: includes/wcps-meta.php:18
|
187 |
msgid "New WCPS"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/
|
191 |
msgid "Edit WCPS"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/
|
195 |
msgid "View WCPS"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/
|
199 |
msgid "Search WCPS"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/
|
203 |
msgid "Nothing found"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/
|
207 |
msgid "Nothing found in Trash"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/
|
211 |
msgid "Woocommerce Products Slider Options"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/
|
215 |
msgid "Style"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/
|
219 |
msgid "Content"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/
|
223 |
msgid "Custom CSS"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/
|
227 |
msgid ""
|
228 |
"Copy this shortcode and paste on page or post where you want to display "
|
229 |
"slider."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/
|
233 |
msgid "Use PHP code to your themes file to display slider."
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/
|
237 |
msgid "Slider Total Items"
|
238 |
msgstr "সর্বমোট কতটি পন্য দেখাবেন "
|
239 |
|
240 |
-
#: includes/
|
241 |
msgid "ex: 10"
|
242 |
msgstr "উদাহরনঃ ১০"
|
243 |
|
244 |
-
#: includes/
|
245 |
msgid "Slider Column Number"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/
|
249 |
msgid "In Destop: (min:1000px and max)"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/
|
253 |
msgid "In Tablet & Small Desktop: (900px max width)"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/
|
257 |
msgid "In Mobile: (479px max width)"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/
|
261 |
msgid "Slider Auto Play"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/
|
265 |
-
#: includes/
|
266 |
-
#: includes/
|
267 |
-
|
268 |
-
|
|
|
|
|
|
|
|
|
|
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/
|
272 |
msgid "Slider Stop on Hover"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/
|
276 |
msgid "Slider Navigation"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/
|
280 |
msgid "Slider Navigation at Top"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: includes/
|
284 |
msgid "Slider Navigation Position"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/
|
288 |
msgid "Top Right"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/
|
292 |
msgid "Middle"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/
|
296 |
msgid "Middle fixed"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/
|
300 |
msgid "Slider Pagination"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/
|
304 |
msgid "Slider Pagination at Bottom"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/
|
308 |
msgid "Pagination Background Color"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/
|
312 |
msgid "Pagination Text Color"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/
|
316 |
msgid "Pagination Number Counting"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/
|
320 |
msgid "Slide Speed"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/
|
324 |
msgid "Pagination Slide Speed"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: includes/
|
328 |
msgid "Slider Touch Drag Enabled"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: includes/
|
332 |
msgid "Slider Mouse Drag Enabled"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: includes/
|
336 |
msgid "Themes for slider"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: includes/
|
340 |
msgid "Slider Ribbon"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/
|
344 |
msgid "Container options"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/
|
348 |
msgid "Padding: (ex: 10px)"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: includes/
|
352 |
msgid "Background color:"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: includes/
|
356 |
msgid "Background image:"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: includes/
|
360 |
msgid "Clear"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: includes/
|
364 |
msgid "Items Options"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: includes/
|
368 |
msgid "Items Background color"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: includes/
|
372 |
msgid "Items Padding"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: includes/
|
376 |
msgid "Empty Thumbnail"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: includes/
|
380 |
msgid "Custom thumbnail image url"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/
|
384 |
msgid "Query order"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: includes/
|
388 |
-
msgid "
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: includes/
|
392 |
-
msgid "
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: includes/
|
396 |
msgid "Query orderBy"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: includes/
|
400 |
msgid "None"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/
|
404 |
msgid "ID"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/
|
408 |
msgid "Date"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/
|
412 |
msgid "Rand"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: includes/
|
416 |
msgid "Comment Count"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: includes/
|
420 |
msgid "Author"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: includes/
|
424 |
msgid "Name"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/
|
428 |
msgid "Type"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/
|
432 |
msgid "Hide out of stock items"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/
|
436 |
msgid "Yes "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/
|
440 |
msgid "Filter Slider Content."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/
|
444 |
-
msgid "Display from Recent Published"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/
|
448 |
msgid "Slider items will query from recent published product."
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/
|
452 |
-
msgid "Display from Featured Product"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/
|
456 |
msgid "Slider items will query from featured marked product."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/
|
460 |
-
msgid "Display from <b>
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: includes/wcps-meta.php:684
|
464 |
-
msgid "Slider items will query from from <b>on sale</b> product."
|
465 |
-
msgstr ""
|
466 |
-
|
467 |
-
#: includes/wcps-meta.php:688
|
468 |
-
msgid "Display from <b>Best Selling</b> Product"
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: includes/wcps-meta.php:689
|
472 |
-
msgid "Slider items will query from from on <b>Best Selling</b> product."
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: includes/wcps-meta.php:692
|
476 |
-
msgid "Display from <b>Top Rated</b> Product"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: includes/wcps-meta.php:693
|
480 |
-
msgid "Slider items will query from from on <b>Top Rated</b> product."
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: includes/wcps-meta.php:696
|
484 |
-
msgid "Display from <b>Recently viewed</b>"
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: includes/wcps-meta.php:697
|
488 |
-
msgid "Slider items will query from recently viewed product."
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#: includes/wcps-meta.php:700
|
492 |
-
msgid "Display from Only Year"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/
|
496 |
msgid "Slider items will query from a year."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/
|
500 |
-
msgid "Display from Month"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/
|
504 |
msgid "Slider items will query from Month of a year."
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/
|
508 |
-
msgid "
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: includes/wcps-meta.php:760
|
512 |
-
msgid "Slide Categories"
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: includes/wcps-meta.php:788
|
516 |
-
msgid "Display by Product id"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: includes/
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/
|
524 |
msgid "Reset"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/
|
528 |
msgid "Slider Thumbnail Size"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/
|
532 |
-
msgid "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/
|
536 |
msgid "Large"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/
|
540 |
-
msgid "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/
|
544 |
msgid "Items thumbnail link's to"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/
|
548 |
msgid "Product"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: includes/
|
552 |
msgid "Slider thumb max hieght(px)"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: includes/
|
|
|
|
|
|
|
|
|
556 |
msgid "Items Add to cart button Style"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/
|
560 |
msgid "You can hide items Add to cart button on slider."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: includes/
|
564 |
msgid "Default"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/
|
568 |
msgid "Custom"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/
|
572 |
-
msgid "Items Add to cart button Display"
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: includes/wcps-meta.php:912
|
576 |
msgid "Add to cart Background Color"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/
|
580 |
msgid "Add to cart Text Color"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/
|
584 |
-
msgid "Items
|
585 |
-
msgstr ""
|
586 |
-
|
587 |
-
#: includes/wcps-meta.php:928 includes/wcps-meta.php:998
|
588 |
-
#: includes/wcps-meta.php:1077 includes/wcps-meta.php:1112
|
589 |
-
#: includes/wcps-meta.php:1168 includes/wcps-meta.php:1208
|
590 |
-
msgid "Right"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/
|
594 |
-
#: includes/
|
595 |
-
#: includes/wcps-meta.php:1169 includes/wcps-meta.php:1209
|
596 |
msgid "Left"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: includes/
|
600 |
-
#: includes/
|
601 |
-
|
602 |
-
msgid "Center"
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: includes/wcps-meta.php:944
|
606 |
-
msgid "Items Sale marker display"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: includes/wcps-meta.php:945 includes/wcps-meta.php:1013
|
610 |
-
msgid "You can hide items featured marker on slider."
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: includes/wcps-meta.php:953
|
614 |
-
msgid "Sale marker icon"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/
|
618 |
-
|
|
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: includes/
|
622 |
-
msgid "
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: includes/
|
626 |
msgid "Items Title Color"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: includes/
|
630 |
msgid "Items Title Font Size"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/
|
634 |
-
msgid "Items
|
635 |
-
msgstr ""
|
636 |
-
|
637 |
-
#: includes/wcps-meta.php:1021
|
638 |
-
msgid "Featured marker icon"
|
639 |
-
msgstr ""
|
640 |
-
|
641 |
-
#: includes/wcps-meta.php:1034
|
642 |
-
msgid "Items Price Display"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: includes/
|
646 |
-
msgid "
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: includes/
|
650 |
msgid "Price format on slider"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: includes/
|
654 |
msgid "Full Format"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: includes/
|
658 |
msgid "Sale price"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: includes/
|
662 |
msgid "Regular price"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: includes/
|
666 |
msgid "Items Price Color"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: includes/
|
670 |
msgid "Items price Font Size"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: includes/
|
674 |
msgid "Price Text Align"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: includes/
|
678 |
-
msgid "Star Rating Display"
|
679 |
-
msgstr ""
|
680 |
-
|
681 |
-
#: includes/wcps-meta.php:1098
|
682 |
-
msgid "You can hide star ratings on slider."
|
683 |
-
msgstr ""
|
684 |
-
|
685 |
-
#: includes/wcps-meta.php:1108
|
686 |
msgid "Items Rating Text Align"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: includes/
|
690 |
msgid "Items ratings Font Size"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: includes/
|
694 |
msgid "Items Ratings Color"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: includes/
|
698 |
msgid "Excerpt word count"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: includes/
|
702 |
msgid "Excerpt read more text"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: includes/
|
706 |
msgid "Items Excerpt Font Size"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/
|
710 |
msgid "Excerpt Text Align"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: includes/
|
714 |
-
msgid "Items
|
715 |
-
msgstr ""
|
716 |
-
|
717 |
-
#: includes/wcps-meta.php:1189
|
718 |
-
msgid "You can hide items category on slider."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: includes/
|
722 |
msgid "Items Category Font Size"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/
|
726 |
msgid "Category Text Align"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/
|
|
|
|
|
|
|
|
|
730 |
msgid "Custom CSS for this slider."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: includes/
|
734 |
msgid ""
|
735 |
"Do not use <style></style> tag, you can use bellow prefix to your css, "
|
736 |
"sometime you need use \"!important\" to overrid."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: templates/wcps-featured.php:22
|
740 |
-
#: themes/theme11/index.php:122 themes/theme12/index.php:123
|
741 |
-
#: themes/theme2/index-old.php:127 themes/theme3/index-old.php:127
|
742 |
-
#: themes/theme4/index.php:118 themes/theme5/index.php:117 themes/theme6/index
|
743 |
-
#: - Copy.php:128 themes/theme7/index.php:117 themes/theme8/index.php:116
|
744 |
-
#: themes/theme9/index.php:118
|
745 |
msgid "Featured Product"
|
746 |
msgstr ""
|
747 |
|
@@ -749,25 +633,12 @@ msgstr ""
|
|
749 |
msgid "Rated"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: templates/wcps-sale.php:19
|
753 |
-
#: themes/theme11/index.php:115 themes/theme12/index.php:116
|
754 |
-
#: themes/theme2/index-old.php:132 themes/theme3/index-old.php:132
|
755 |
-
#: themes/theme4/index.php:123 themes/theme5/index.php:122 themes/theme6/index
|
756 |
-
#: - Copy.php:133 themes/theme7/index.php:122 themes/theme8/index.php:121
|
757 |
-
#: themes/theme9/index.php:123
|
758 |
msgid "Sale Product"
|
759 |
msgstr ""
|
760 |
|
761 |
-
|
762 |
-
|
763 |
-
#: themes/theme12/index.php:167 themes/theme2/index-old.php:171
|
764 |
-
#: themes/theme2/index.php:140 themes/theme3/index-old.php:171
|
765 |
-
#: themes/theme3/index.php:141 themes/theme4/index.php:164
|
766 |
-
#: themes/theme5/index.php:163 themes/theme6/index - Copy.php:172
|
767 |
-
#: themes/theme6/index.php:120 themes/theme7/index.php:163
|
768 |
-
#: themes/theme8/index.php:162 themes/theme9/index.php:164
|
769 |
-
msgid "No Product to Slide"
|
770 |
-
msgstr ""
|
771 |
|
772 |
#~ msgid "Price: "
|
773 |
#~ msgstr "মুল্য"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Woocommerce Products Slider\n"
|
4 |
+
"POT-Creation-Date: 2016-03-15 19:26+0600\n"
|
5 |
+
"PO-Revision-Date: 2016-03-15 19:26+0600\n"
|
6 |
"Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
|
7 |
"Language-Team: PickPlugins <support@pickplugins.com>\n"
|
8 |
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.7\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: includes\n"
|
18 |
"X-Poedit-SearchPath-2: templates\n"
|
|
|
19 |
|
20 |
+
#: includes/class-functions.php:62 includes/meta.php:812
|
21 |
msgid "Thumbnail"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: includes/class-functions.php:63 includes/meta.php:699
|
25 |
msgid "Title"
|
26 |
msgstr "টাইটেল"
|
27 |
|
28 |
+
#: includes/class-functions.php:64
|
29 |
msgid "Excerpt"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: includes/class-functions.php:65 includes/meta.php:823
|
33 |
msgid "Category"
|
34 |
msgstr "ক্যাটেগোরী"
|
35 |
|
36 |
+
#: includes/class-functions.php:66
|
37 |
msgid "Price"
|
38 |
msgstr "মুল্য"
|
39 |
|
40 |
+
#: includes/class-functions.php:67
|
41 |
msgid "Rating"
|
42 |
msgstr "রেটিং"
|
43 |
|
44 |
+
#: includes/class-functions.php:68
|
45 |
msgid "Cart"
|
46 |
msgstr "কার্ট"
|
47 |
|
48 |
+
#: includes/class-functions.php:69
|
49 |
msgid "Sale"
|
50 |
msgstr ""
|
51 |
|
53 |
msgid "Settings"
|
54 |
msgstr "সেটিংস"
|
55 |
|
56 |
+
#: includes/class-shortcodes.php:143
|
57 |
+
msgid "No Product to Slide"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/functions.php:84 includes/meta.php:293 includes/meta.php:304
|
61 |
+
msgid "Shortcode"
|
|
|
|
|
|
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: includes/functions.php:176
|
65 |
+
msgid "No categories found!"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/menu/settings.php:36
|
69 |
+
msgid "Changes Saved."
|
70 |
msgstr ""
|
71 |
|
72 |
#: includes/menu/settings.php:56
|
73 |
msgid " Settings"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/menu/settings.php:67 includes/meta.php:294
|
77 |
msgid "Options"
|
78 |
msgstr ""
|
79 |
|
85 |
msgid "Track product View"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: includes/menu/settings.php:81 includes/meta.php:711 includes/meta.php:840
|
|
|
|
|
|
|
|
|
89 |
msgid "No"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/menu/settings.php:82 includes/meta.php:841
|
|
|
|
|
|
|
93 |
msgid "Yes"
|
94 |
msgstr ""
|
95 |
|
138 |
msgid "Save Changes"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/meta.php:13 includes/meta.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
msgid "WCPS"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/meta.php:15 includes/meta.php:16 includes/meta.php:18
|
|
|
146 |
msgid "New WCPS"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/meta.php:17
|
150 |
msgid "Edit WCPS"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/meta.php:19
|
154 |
msgid "View WCPS"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/meta.php:20
|
158 |
msgid "Search WCPS"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/meta.php:21
|
162 |
msgid "Nothing found"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/meta.php:22
|
166 |
msgid "Nothing found in Trash"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/meta.php:60
|
170 |
msgid "Woocommerce Products Slider Options"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/meta.php:295
|
174 |
msgid "Style"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/meta.php:296
|
178 |
msgid "Content"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/meta.php:297
|
182 |
msgid "Custom CSS"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/meta.php:306
|
186 |
msgid ""
|
187 |
"Copy this shortcode and paste on page or post where you want to display "
|
188 |
"slider."
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: includes/meta.php:308
|
192 |
msgid "Use PHP code to your themes file to display slider."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: includes/meta.php:321
|
196 |
msgid "Slider Total Items"
|
197 |
msgstr "সর্বমোট কতটি পন্য দেখাবেন "
|
198 |
|
199 |
+
#: includes/meta.php:322
|
200 |
msgid "ex: 10"
|
201 |
msgstr "উদাহরনঃ ১০"
|
202 |
|
203 |
+
#: includes/meta.php:327
|
204 |
msgid "Slider Column Number"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: includes/meta.php:329
|
208 |
msgid "In Destop: (min:1000px and max)"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: includes/meta.php:332
|
212 |
msgid "In Tablet & Small Desktop: (900px max width)"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: includes/meta.php:335
|
216 |
msgid "In Mobile: (479px max width)"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: includes/meta.php:343
|
220 |
msgid "Slider Auto Play"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: includes/meta.php:348 includes/meta.php:358 includes/meta.php:369
|
224 |
+
#: includes/meta.php:392 includes/meta.php:407 includes/meta.php:436
|
225 |
+
#: includes/meta.php:447
|
226 |
+
msgid "True"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/meta.php:349 includes/meta.php:359 includes/meta.php:370
|
230 |
+
#: includes/meta.php:393 includes/meta.php:406 includes/meta.php:437
|
231 |
+
#: includes/meta.php:448
|
232 |
+
msgid "False"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: includes/meta.php:354
|
236 |
msgid "Slider Stop on Hover"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/meta.php:365
|
240 |
msgid "Slider Navigation"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/meta.php:366
|
244 |
msgid "Slider Navigation at Top"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/meta.php:374
|
248 |
msgid "Slider Navigation Position"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: includes/meta.php:376
|
252 |
msgid "Top Right"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/meta.php:377
|
256 |
msgid "Middle"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/meta.php:378
|
260 |
msgid "Middle fixed"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/meta.php:388
|
264 |
msgid "Slider Pagination"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/meta.php:389
|
268 |
msgid "Slider Pagination at Bottom"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/meta.php:398
|
272 |
msgid "Pagination Background Color"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/meta.php:401
|
276 |
msgid "Pagination Text Color"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/meta.php:404
|
280 |
msgid "Pagination Number Counting"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/meta.php:420
|
284 |
msgid "Slide Speed"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/meta.php:425
|
288 |
msgid "Pagination Slide Speed"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/meta.php:431
|
292 |
msgid "Slider Touch Drag Enabled"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/meta.php:443
|
296 |
msgid "Slider Mouse Drag Enabled"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: includes/meta.php:457
|
300 |
msgid "Themes for slider"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/meta.php:480
|
304 |
msgid "Slider Ribbon"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/meta.php:551
|
308 |
msgid "Container options"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/meta.php:552
|
312 |
msgid "Padding: (ex: 10px)"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/meta.php:555
|
316 |
msgid "Background color:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/meta.php:558
|
320 |
msgid "Background image:"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: includes/meta.php:563
|
324 |
msgid "Clear"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: includes/meta.php:588
|
328 |
msgid "Items Options"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/meta.php:589
|
332 |
msgid "Items Background color"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: includes/meta.php:592
|
336 |
msgid "Items Padding"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/meta.php:604
|
340 |
msgid "Empty Thumbnail"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/meta.php:605
|
344 |
msgid "Custom thumbnail image url"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/meta.php:674
|
348 |
msgid "Query order"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: includes/meta.php:677
|
352 |
+
msgid "Descending"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: includes/meta.php:678
|
356 |
+
msgid "Ascending "
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: includes/meta.php:690
|
360 |
msgid "Query orderBy"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: includes/meta.php:693
|
364 |
msgid "None"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/meta.php:694
|
368 |
msgid "ID"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: includes/meta.php:695
|
372 |
msgid "Date"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: includes/meta.php:696
|
376 |
msgid "Rand"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: includes/meta.php:697
|
380 |
msgid "Comment Count"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: includes/meta.php:698
|
384 |
msgid "Author"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: includes/meta.php:700
|
388 |
msgid "Name"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: includes/meta.php:701
|
392 |
msgid "Type"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: includes/meta.php:708
|
396 |
msgid "Hide out of stock items"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: includes/meta.php:712
|
400 |
msgid "Yes "
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: includes/meta.php:721
|
404 |
msgid "Filter Slider Content."
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: includes/meta.php:724
|
408 |
+
msgid "Display from <b>Recent</b> Published"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: includes/meta.php:725
|
412 |
msgid "Slider items will query from recent published product."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: includes/meta.php:728
|
416 |
+
msgid "Display from <b>Featured</b> Product"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: includes/meta.php:729
|
420 |
msgid "Slider items will query from featured marked product."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: includes/meta.php:732
|
424 |
+
msgid "Display from Only <b>Year</b>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: includes/meta.php:734
|
428 |
msgid "Slider items will query from a year."
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/meta.php:739
|
432 |
+
msgid "Display from <b>Month</b>"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/meta.php:740
|
436 |
msgid "Slider items will query from Month of a year."
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/meta.php:752
|
440 |
+
msgid "Items sort."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/meta.php:753
|
444 |
+
msgid "Click each items to expand."
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/meta.php:754
|
448 |
msgid "Reset"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/meta.php:806
|
452 |
msgid "Slider Thumbnail Size"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/meta.php:809
|
456 |
+
msgid "Full"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/meta.php:810
|
460 |
msgid "Large"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: includes/meta.php:811
|
464 |
+
msgid "Medium"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: includes/meta.php:819
|
468 |
msgid "Items thumbnail link's to"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/meta.php:822
|
472 |
msgid "Product"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/meta.php:831
|
476 |
msgid "Slider thumb max hieght(px)"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/meta.php:837
|
480 |
+
msgid "Display Thumbnail Zoom button"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: includes/meta.php:854
|
484 |
msgid "Items Add to cart button Style"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/meta.php:855
|
488 |
msgid "You can hide items Add to cart button on slider."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/meta.php:857
|
492 |
msgid "Default"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/meta.php:858
|
496 |
msgid "Custom"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: includes/meta.php:863
|
|
|
|
|
|
|
|
|
500 |
msgid "Add to cart Background Color"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: includes/meta.php:869
|
504 |
msgid "Add to cart Text Color"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/meta.php:875
|
508 |
+
msgid "Items Cart Text Align"
|
|
|
|
|
|
|
|
|
|
|
|
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: includes/meta.php:879 includes/meta.php:932 includes/meta.php:991
|
512 |
+
#: includes/meta.php:1016 includes/meta.php:1072 includes/meta.php:1114
|
|
|
513 |
msgid "Left"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/meta.php:880 includes/meta.php:933 includes/meta.php:992
|
517 |
+
#: includes/meta.php:1017 includes/meta.php:1073 includes/meta.php:1115
|
518 |
+
msgid "Right"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/meta.php:881 includes/meta.php:934 includes/meta.php:993
|
522 |
+
#: includes/meta.php:1018 includes/meta.php:1075 includes/meta.php:1116
|
523 |
+
msgid "Center"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: includes/meta.php:897
|
527 |
+
msgid "Sale marker icon url"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: includes/meta.php:916
|
531 |
msgid "Items Title Color"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: includes/meta.php:921
|
535 |
msgid "Items Title Font Size"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/meta.php:928
|
539 |
+
msgid "Items Title Text Align"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/meta.php:947
|
543 |
+
msgid "Featured marker icon url"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/meta.php:959
|
547 |
msgid "Price format on slider"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/meta.php:962
|
551 |
msgid "Full Format"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: includes/meta.php:963
|
555 |
msgid "Sale price"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/meta.php:964
|
559 |
msgid "Regular price"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/meta.php:973
|
563 |
msgid "Items Price Color"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/meta.php:979
|
567 |
msgid "Items price Font Size"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/meta.php:987
|
571 |
msgid "Price Text Align"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: includes/meta.php:1012
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
575 |
msgid "Items Rating Text Align"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/meta.php:1025
|
579 |
msgid "Items ratings Font Size"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/meta.php:1032
|
583 |
msgid "Items Ratings Color"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/meta.php:1049
|
587 |
msgid "Excerpt word count"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/meta.php:1055
|
591 |
msgid "Excerpt read more text"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/meta.php:1061
|
595 |
msgid "Items Excerpt Font Size"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/meta.php:1068
|
599 |
msgid "Excerpt Text Align"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/meta.php:1081
|
603 |
+
msgid "Items Excerpt Font color"
|
|
|
|
|
|
|
|
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: includes/meta.php:1103
|
607 |
msgid "Items Category Font Size"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: includes/meta.php:1110
|
611 |
msgid "Category Text Align"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: includes/meta.php:1125
|
615 |
+
msgid "Items Category Font color"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: includes/meta.php:1180
|
619 |
msgid "Custom CSS for this slider."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: includes/meta.php:1181
|
623 |
msgid ""
|
624 |
"Do not use <style></style> tag, you can use bellow prefix to your css, "
|
625 |
"sometime you need use \"!important\" to overrid."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: templates/wcps-featured.php:22
|
|
|
|
|
|
|
|
|
|
|
629 |
msgid "Featured Product"
|
630 |
msgstr ""
|
631 |
|
633 |
msgid "Rated"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: templates/wcps-sale.php:19
|
|
|
|
|
|
|
|
|
|
|
637 |
msgid "Sale Product"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#~ msgid "License"
|
641 |
+
#~ msgstr "লাইসেন্স"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
642 |
|
643 |
#~ msgid "Price: "
|
644 |
#~ msgstr "মুল্য"
|
languages/wcps-fi.mo
CHANGED
Binary file
|
languages/wcps-fi.po
CHANGED
@@ -1,53 +1,52 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Woocommerce Products Slider\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
|
7 |
"Language-Team: ParaTheme <support@paratheme.com>\n"
|
8 |
"Language: fi\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: includes\n"
|
18 |
"X-Poedit-SearchPath-2: templates\n"
|
19 |
-
"X-Poedit-SearchPath-3:
|
20 |
-
"X-Poedit-SearchPath-4: includes/menu\n"
|
21 |
|
22 |
-
#: includes/class-functions.php:
|
23 |
msgid "Thumbnail"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: includes/class-functions.php:
|
27 |
msgid "Title"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: includes/class-functions.php:
|
31 |
msgid "Excerpt"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: includes/class-functions.php:
|
35 |
msgid "Category"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: includes/class-functions.php:
|
39 |
msgid "Price"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes/class-functions.php:
|
43 |
msgid "Rating"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/class-functions.php:
|
47 |
msgid "Cart"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes/class-functions.php:
|
51 |
msgid "Sale"
|
52 |
msgstr ""
|
53 |
|
@@ -55,50 +54,27 @@ msgstr ""
|
|
55 |
msgid "Settings"
|
56 |
msgstr "Asetukset"
|
57 |
|
58 |
-
#: includes/class-
|
59 |
-
msgid "
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: includes/menu/license.php:26 includes/menu/settings.php:36
|
63 |
-
msgid "Changes Saved."
|
64 |
-
msgstr "Muutokset tallennettu."
|
65 |
-
|
66 |
-
#: includes/menu/license.php:53
|
67 |
-
msgid "Activation"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: includes/menu/license.php:60
|
71 |
-
msgid "Activate license"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#: includes/menu/license.php:82 includes/menu/license.php:133
|
75 |
-
msgid "Unexpected Error! The query returned with an error."
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: includes/menu/license.php:175
|
79 |
-
msgid "Not Active"
|
80 |
-
msgstr ""
|
81 |
|
82 |
-
#: includes/
|
83 |
-
|
84 |
-
|
85 |
-
#: includes/wcps-meta.php:377 includes/wcps-meta.php:393
|
86 |
-
msgid "Active"
|
87 |
-
msgstr "Aktiivi"
|
88 |
|
89 |
-
#: includes/
|
90 |
-
msgid "
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/menu/
|
94 |
-
msgid "
|
95 |
-
msgstr ""
|
96 |
|
97 |
#: includes/menu/settings.php:56
|
98 |
msgid " Settings"
|
99 |
msgstr "Asetukset"
|
100 |
|
101 |
-
#: includes/menu/settings.php:67 includes/
|
102 |
msgid "Options"
|
103 |
msgstr "Vaihtoehdot"
|
104 |
|
@@ -110,18 +86,11 @@ msgstr "Apua"
|
|
110 |
msgid "Track product View"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: includes/menu/settings.php:81 includes/
|
114 |
-
#: includes/wcps-meta.php:907 includes/wcps-meta.php:948
|
115 |
-
#: includes/wcps-meta.php:975 includes/wcps-meta.php:1016
|
116 |
-
#: includes/wcps-meta.php:1039 includes/wcps-meta.php:1101
|
117 |
-
#: includes/wcps-meta.php:1192
|
118 |
msgid "No"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/menu/settings.php:82 includes/
|
122 |
-
#: includes/wcps-meta.php:947 includes/wcps-meta.php:974
|
123 |
-
#: includes/wcps-meta.php:1015 includes/wcps-meta.php:1038
|
124 |
-
#: includes/wcps-meta.php:1100 includes/wcps-meta.php:1191
|
125 |
msgid "Yes"
|
126 |
msgstr ""
|
127 |
|
@@ -173,61 +142,51 @@ msgstr "Katso video"
|
|
173 |
msgid "Save Changes"
|
174 |
msgstr "Tallenna muutokset"
|
175 |
|
176 |
-
#: includes/
|
177 |
-
#: includes/wcps-meta.php:217
|
178 |
-
msgid "Shortcode"
|
179 |
-
msgstr "Shortcode"
|
180 |
-
|
181 |
-
#: includes/wcps-functions.php:283
|
182 |
-
msgid "No categories found!"
|
183 |
-
msgstr ""
|
184 |
-
|
185 |
-
#: includes/wcps-meta.php:13 includes/wcps-meta.php:14
|
186 |
msgid "WCPS"
|
187 |
msgstr "WCPS"
|
188 |
|
189 |
-
#: includes/
|
190 |
-
#: includes/wcps-meta.php:18
|
191 |
msgid "New WCPS"
|
192 |
msgstr "Uusi WCPS"
|
193 |
|
194 |
-
#: includes/
|
195 |
msgid "Edit WCPS"
|
196 |
msgstr "Muokkaa WCPS"
|
197 |
|
198 |
-
#: includes/
|
199 |
msgid "View WCPS"
|
200 |
msgstr "Katso WCPS"
|
201 |
|
202 |
-
#: includes/
|
203 |
msgid "Search WCPS"
|
204 |
msgstr "Etsi WCPS"
|
205 |
|
206 |
-
#: includes/
|
207 |
msgid "Nothing found"
|
208 |
msgstr "Ei löydy"
|
209 |
|
210 |
-
#: includes/
|
211 |
msgid "Nothing found in Trash"
|
212 |
msgstr "Ei löydy"
|
213 |
|
214 |
-
#: includes/
|
215 |
msgid "Woocommerce Products Slider Options"
|
216 |
msgstr "Woocommerce Products Slider Vaihtoehdot"
|
217 |
|
218 |
-
#: includes/
|
219 |
msgid "Style"
|
220 |
msgstr "Tyyli"
|
221 |
|
222 |
-
#: includes/
|
223 |
msgid "Content"
|
224 |
msgstr "Sisältö"
|
225 |
|
226 |
-
#: includes/
|
227 |
msgid "Custom CSS"
|
228 |
msgstr "Oma CSS"
|
229 |
|
230 |
-
#: includes/
|
231 |
msgid ""
|
232 |
"Copy this shortcode and paste on page or post where you want to display "
|
233 |
"slider."
|
@@ -235,519 +194,444 @@ msgstr ""
|
|
235 |
"Kopio lyhytkoodi ja maalaa se sivulle tai artikkeliin jossa haluat näyttää "
|
236 |
"kuvagallerian."
|
237 |
|
238 |
-
#: includes/
|
239 |
msgid "Use PHP code to your themes file to display slider."
|
240 |
msgstr "Käytä PHP koodia teemasi tiedostossa näyttääksesi kuvagalleria."
|
241 |
|
242 |
-
#: includes/
|
243 |
msgid "Slider Total Items"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/
|
247 |
msgid "ex: 10"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/
|
251 |
msgid "Slider Column Number"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/
|
255 |
msgid "In Destop: (min:1000px and max)"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes/
|
259 |
msgid "In Tablet & Small Desktop: (900px max width)"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes/
|
263 |
msgid "In Mobile: (479px max width)"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/
|
267 |
msgid "Slider Auto Play"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/
|
271 |
-
#: includes/
|
272 |
-
#: includes/
|
273 |
-
|
274 |
-
|
275 |
-
|
|
|
|
|
|
|
|
|
|
|
276 |
|
277 |
-
#: includes/
|
278 |
msgid "Slider Stop on Hover"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/
|
282 |
msgid "Slider Navigation"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/
|
286 |
msgid "Slider Navigation at Top"
|
287 |
msgstr "Takaisin kotiin"
|
288 |
|
289 |
-
#: includes/
|
290 |
msgid "Slider Navigation Position"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: includes/
|
294 |
msgid "Top Right"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: includes/
|
298 |
msgid "Middle"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: includes/
|
302 |
msgid "Middle fixed"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: includes/
|
306 |
msgid "Slider Pagination"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: includes/
|
310 |
msgid "Slider Pagination at Bottom"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: includes/
|
314 |
msgid "Pagination Background Color"
|
315 |
msgstr "Sivunumeroinnin taustaväri"
|
316 |
|
317 |
-
#: includes/
|
318 |
msgid "Pagination Text Color"
|
319 |
msgstr "Sivunumerointi tekstin väri"
|
320 |
|
321 |
-
#: includes/
|
322 |
msgid "Pagination Number Counting"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: includes/
|
326 |
msgid "Slide Speed"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: includes/
|
330 |
msgid "Pagination Slide Speed"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: includes/
|
334 |
msgid "Slider Touch Drag Enabled"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: includes/
|
338 |
msgid "Slider Mouse Drag Enabled"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: includes/
|
342 |
msgid "Themes for slider"
|
343 |
msgstr "Teemat"
|
344 |
|
345 |
-
#: includes/
|
346 |
msgid "Slider Ribbon"
|
347 |
msgstr "Karusellin nauha"
|
348 |
|
349 |
-
#: includes/
|
350 |
msgid "Container options"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: includes/
|
354 |
msgid "Padding: (ex: 10px)"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: includes/
|
358 |
msgid "Background color:"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: includes/
|
362 |
msgid "Background image:"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: includes/
|
366 |
msgid "Clear"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: includes/
|
370 |
msgid "Items Options"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: includes/
|
374 |
msgid "Items Background color"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: includes/
|
378 |
msgid "Items Padding"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: includes/
|
382 |
msgid "Empty Thumbnail"
|
383 |
msgstr "Tyhjä pikkukuva"
|
384 |
|
385 |
-
#: includes/
|
386 |
msgid "Custom thumbnail image url"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: includes/
|
390 |
msgid "Query order"
|
391 |
msgstr "Järjestys"
|
392 |
|
393 |
-
#: includes/
|
394 |
-
msgid "
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: includes/
|
398 |
-
msgid "
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: includes/
|
402 |
msgid "Query orderBy"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: includes/
|
406 |
msgid "None"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: includes/
|
410 |
msgid "ID"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: includes/
|
414 |
msgid "Date"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/
|
418 |
msgid "Rand"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/
|
422 |
msgid "Comment Count"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/
|
426 |
msgid "Author"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/
|
430 |
msgid "Name"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/
|
434 |
msgid "Type"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/
|
438 |
msgid "Hide out of stock items"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/
|
442 |
msgid "Yes "
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/
|
446 |
msgid "Filter Slider Content."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/
|
450 |
-
msgid "Display from Recent Published"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/
|
454 |
msgid "Slider items will query from recent published product."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/
|
458 |
-
msgid "Display from Featured Product"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/
|
462 |
msgid "Slider items will query from featured marked product."
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/
|
466 |
-
msgid "Display from <b>
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#: includes/wcps-meta.php:684
|
470 |
-
msgid "Slider items will query from from <b>on sale</b> product."
|
471 |
-
msgstr ""
|
472 |
-
|
473 |
-
#: includes/wcps-meta.php:688
|
474 |
-
msgid "Display from <b>Best Selling</b> Product"
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
#: includes/wcps-meta.php:689
|
478 |
-
msgid "Slider items will query from from on <b>Best Selling</b> product."
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: includes/wcps-meta.php:692
|
482 |
-
msgid "Display from <b>Top Rated</b> Product"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: includes/wcps-meta.php:693
|
486 |
-
msgid "Slider items will query from from on <b>Top Rated</b> product."
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: includes/wcps-meta.php:696
|
490 |
-
msgid "Display from <b>Recently viewed</b>"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: includes/wcps-meta.php:697
|
494 |
-
msgid "Slider items will query from recently viewed product."
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: includes/wcps-meta.php:700
|
498 |
-
msgid "Display from Only Year"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: includes/
|
502 |
msgid "Slider items will query from a year."
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/
|
506 |
-
msgid "Display from Month"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: includes/
|
510 |
msgid "Slider items will query from Month of a year."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/
|
514 |
-
msgid "
|
515 |
-
msgstr ""
|
516 |
-
|
517 |
-
#: includes/wcps-meta.php:760
|
518 |
-
msgid "Slide Categories"
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: includes/wcps-meta.php:788
|
522 |
-
msgid "Display by Product id"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/
|
526 |
-
msgid "
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/
|
530 |
msgid "Reset"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/
|
534 |
msgid "Slider Thumbnail Size"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: includes/
|
538 |
-
msgid "
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: includes/
|
542 |
msgid "Large"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: includes/
|
546 |
-
msgid "
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: includes/
|
550 |
msgid "Items thumbnail link's to"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: includes/
|
554 |
msgid "Product"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/
|
558 |
msgid "Slider thumb max hieght(px)"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/
|
|
|
|
|
|
|
|
|
562 |
msgid "Items Add to cart button Style"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/
|
566 |
msgid "You can hide items Add to cart button on slider."
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/
|
570 |
msgid "Default"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/
|
574 |
msgid "Custom"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/
|
578 |
-
msgid "Items Add to cart button Display"
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: includes/wcps-meta.php:912
|
582 |
msgid "Add to cart Background Color"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: includes/
|
586 |
msgid "Add to cart Text Color"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: includes/
|
590 |
-
msgid "Items
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/
|
594 |
-
#: includes/
|
595 |
-
#: includes/wcps-meta.php:1168 includes/wcps-meta.php:1208
|
596 |
-
msgid "Right"
|
597 |
-
msgstr ""
|
598 |
-
|
599 |
-
#: includes/wcps-meta.php:929 includes/wcps-meta.php:999
|
600 |
-
#: includes/wcps-meta.php:1078 includes/wcps-meta.php:1113
|
601 |
-
#: includes/wcps-meta.php:1169 includes/wcps-meta.php:1209
|
602 |
msgid "Left"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/
|
606 |
-
#: includes/
|
607 |
-
|
608 |
-
msgid "Center"
|
609 |
-
msgstr ""
|
610 |
-
|
611 |
-
#: includes/wcps-meta.php:944
|
612 |
-
msgid "Items Sale marker display"
|
613 |
-
msgstr ""
|
614 |
-
|
615 |
-
#: includes/wcps-meta.php:945 includes/wcps-meta.php:1013
|
616 |
-
msgid "You can hide items featured marker on slider."
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: includes/wcps-meta.php:953
|
620 |
-
msgid "Sale marker icon"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: includes/
|
624 |
-
|
|
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: includes/
|
628 |
-
msgid "
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: includes/
|
632 |
msgid "Items Title Color"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: includes/
|
636 |
msgid "Items Title Font Size"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: includes/
|
640 |
-
msgid "Items
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: includes/wcps-meta.php:1021
|
644 |
-
msgid "Featured marker icon"
|
645 |
-
msgstr ""
|
646 |
-
|
647 |
-
#: includes/wcps-meta.php:1034
|
648 |
-
msgid "Items Price Display"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: includes/
|
652 |
-
msgid "
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: includes/
|
656 |
msgid "Price format on slider"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: includes/
|
660 |
msgid "Full Format"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: includes/
|
664 |
msgid "Sale price"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: includes/
|
668 |
msgid "Regular price"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/
|
672 |
msgid "Items Price Color"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: includes/
|
676 |
msgid "Items price Font Size"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: includes/
|
680 |
msgid "Price Text Align"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: includes/
|
684 |
-
msgid "Star Rating Display"
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
#: includes/wcps-meta.php:1098
|
688 |
-
msgid "You can hide star ratings on slider."
|
689 |
-
msgstr ""
|
690 |
-
|
691 |
-
#: includes/wcps-meta.php:1108
|
692 |
msgid "Items Rating Text Align"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: includes/
|
696 |
msgid "Items ratings Font Size"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: includes/
|
700 |
msgid "Items Ratings Color"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: includes/
|
704 |
msgid "Excerpt word count"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: includes/
|
708 |
msgid "Excerpt read more text"
|
709 |
msgstr "Lue lisää "
|
710 |
|
711 |
-
#: includes/
|
712 |
msgid "Items Excerpt Font Size"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: includes/
|
716 |
msgid "Excerpt Text Align"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/
|
720 |
-
msgid "Items
|
721 |
-
msgstr "Kategoria arkisto"
|
722 |
-
|
723 |
-
#: includes/wcps-meta.php:1189
|
724 |
-
msgid "You can hide items category on slider."
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: includes/
|
728 |
msgid "Items Category Font Size"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: includes/
|
732 |
msgid "Category Text Align"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: includes/
|
|
|
|
|
|
|
|
|
736 |
msgid "Custom CSS for this slider."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: includes/
|
740 |
msgid ""
|
741 |
"Do not use <style></style> tag, you can use bellow prefix to your css, "
|
742 |
"sometime you need use \"!important\" to overrid."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: templates/wcps-featured.php:22
|
746 |
-
#: themes/theme11/index.php:122 themes/theme12/index.php:123
|
747 |
-
#: themes/theme2/index-old.php:127 themes/theme3/index-old.php:127
|
748 |
-
#: themes/theme4/index.php:118 themes/theme5/index.php:117 themes/theme6/index
|
749 |
-
#: - Copy.php:128 themes/theme7/index.php:117 themes/theme8/index.php:116
|
750 |
-
#: themes/theme9/index.php:118
|
751 |
msgid "Featured Product"
|
752 |
msgstr "Erikoistuotteet"
|
753 |
|
@@ -755,25 +639,18 @@ msgstr "Erikoistuotteet"
|
|
755 |
msgid "Rated"
|
756 |
msgstr "Arvostelu"
|
757 |
|
758 |
-
#: templates/wcps-sale.php:19
|
759 |
-
#: themes/theme11/index.php:115 themes/theme12/index.php:116
|
760 |
-
#: themes/theme2/index-old.php:132 themes/theme3/index-old.php:132
|
761 |
-
#: themes/theme4/index.php:123 themes/theme5/index.php:122 themes/theme6/index
|
762 |
-
#: - Copy.php:133 themes/theme7/index.php:122 themes/theme8/index.php:121
|
763 |
-
#: themes/theme9/index.php:123
|
764 |
msgid "Sale Product"
|
765 |
msgstr "Alennustuote"
|
766 |
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
msgid "No Product to Slide"
|
776 |
-
msgstr "Ei tuotteita"
|
777 |
|
778 |
#~ msgid "Background Image"
|
779 |
#~ msgstr "Taustakuva"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Woocommerce Products Slider\n"
|
4 |
+
"POT-Creation-Date: 2016-03-15 19:25+0600\n"
|
5 |
+
"PO-Revision-Date: 2016-03-15 19:25+0600\n"
|
6 |
"Last-Translator: Nur Hasan <public.nurhasan@gmail.com>\n"
|
7 |
"Language-Team: ParaTheme <support@paratheme.com>\n"
|
8 |
"Language: fi\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.7\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPath-1: includes\n"
|
18 |
"X-Poedit-SearchPath-2: templates\n"
|
19 |
+
"X-Poedit-SearchPath-3: includes/menu\n"
|
|
|
20 |
|
21 |
+
#: includes/class-functions.php:62 includes/meta.php:812
|
22 |
msgid "Thumbnail"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: includes/class-functions.php:63 includes/meta.php:699
|
26 |
msgid "Title"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: includes/class-functions.php:64
|
30 |
msgid "Excerpt"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: includes/class-functions.php:65 includes/meta.php:823
|
34 |
msgid "Category"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: includes/class-functions.php:66
|
38 |
msgid "Price"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: includes/class-functions.php:67
|
42 |
msgid "Rating"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: includes/class-functions.php:68
|
46 |
msgid "Cart"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: includes/class-functions.php:69
|
50 |
msgid "Sale"
|
51 |
msgstr ""
|
52 |
|
54 |
msgid "Settings"
|
55 |
msgstr "Asetukset"
|
56 |
|
57 |
+
#: includes/class-shortcodes.php:143
|
58 |
+
msgid "No Product to Slide"
|
59 |
+
msgstr "Ei tuotteita"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
|
61 |
+
#: includes/functions.php:84 includes/meta.php:293 includes/meta.php:304
|
62 |
+
msgid "Shortcode"
|
63 |
+
msgstr "Shortcode"
|
|
|
|
|
|
|
64 |
|
65 |
+
#: includes/functions.php:176
|
66 |
+
msgid "No categories found!"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/menu/settings.php:36
|
70 |
+
msgid "Changes Saved."
|
71 |
+
msgstr "Muutokset tallennettu."
|
72 |
|
73 |
#: includes/menu/settings.php:56
|
74 |
msgid " Settings"
|
75 |
msgstr "Asetukset"
|
76 |
|
77 |
+
#: includes/menu/settings.php:67 includes/meta.php:294
|
78 |
msgid "Options"
|
79 |
msgstr "Vaihtoehdot"
|
80 |
|
86 |
msgid "Track product View"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: includes/menu/settings.php:81 includes/meta.php:711 includes/meta.php:840
|
|
|
|
|
|
|
|
|
90 |
msgid "No"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: includes/menu/settings.php:82 includes/meta.php:841
|
|
|
|
|
|
|
94 |
msgid "Yes"
|
95 |
msgstr ""
|
96 |
|
142 |
msgid "Save Changes"
|
143 |
msgstr "Tallenna muutokset"
|
144 |
|
145 |
+
#: includes/meta.php:13 includes/meta.php:14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
msgid "WCPS"
|
147 |
msgstr "WCPS"
|
148 |
|
149 |
+
#: includes/meta.php:15 includes/meta.php:16 includes/meta.php:18
|
|
|
150 |
msgid "New WCPS"
|
151 |
msgstr "Uusi WCPS"
|
152 |
|
153 |
+
#: includes/meta.php:17
|
154 |
msgid "Edit WCPS"
|
155 |
msgstr "Muokkaa WCPS"
|
156 |
|
157 |
+
#: includes/meta.php:19
|
158 |
msgid "View WCPS"
|
159 |
msgstr "Katso WCPS"
|
160 |
|
161 |
+
#: includes/meta.php:20
|
162 |
msgid "Search WCPS"
|
163 |
msgstr "Etsi WCPS"
|
164 |
|
165 |
+
#: includes/meta.php:21
|
166 |
msgid "Nothing found"
|
167 |
msgstr "Ei löydy"
|
168 |
|
169 |
+
#: includes/meta.php:22
|
170 |
msgid "Nothing found in Trash"
|
171 |
msgstr "Ei löydy"
|
172 |
|
173 |
+
#: includes/meta.php:60
|
174 |
msgid "Woocommerce Products Slider Options"
|
175 |
msgstr "Woocommerce Products Slider Vaihtoehdot"
|
176 |
|
177 |
+
#: includes/meta.php:295
|
178 |
msgid "Style"
|
179 |
msgstr "Tyyli"
|
180 |
|
181 |
+
#: includes/meta.php:296
|
182 |
msgid "Content"
|
183 |
msgstr "Sisältö"
|
184 |
|
185 |
+
#: includes/meta.php:297
|
186 |
msgid "Custom CSS"
|
187 |
msgstr "Oma CSS"
|
188 |
|
189 |
+
#: includes/meta.php:306
|
190 |
msgid ""
|
191 |
"Copy this shortcode and paste on page or post where you want to display "
|
192 |
"slider."
|
194 |
"Kopio lyhytkoodi ja maalaa se sivulle tai artikkeliin jossa haluat näyttää "
|
195 |
"kuvagallerian."
|
196 |
|
197 |
+
#: includes/meta.php:308
|
198 |
msgid "Use PHP code to your themes file to display slider."
|
199 |
msgstr "Käytä PHP koodia teemasi tiedostossa näyttääksesi kuvagalleria."
|
200 |
|
201 |
+
#: includes/meta.php:321
|
202 |
msgid "Slider Total Items"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/meta.php:322
|
206 |
msgid "ex: 10"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/meta.php:327
|
210 |
msgid "Slider Column Number"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/meta.php:329
|
214 |
msgid "In Destop: (min:1000px and max)"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/meta.php:332
|
218 |
msgid "In Tablet & Small Desktop: (900px max width)"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/meta.php:335
|
222 |
msgid "In Mobile: (479px max width)"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: includes/meta.php:343
|
226 |
msgid "Slider Auto Play"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/meta.php:348 includes/meta.php:358 includes/meta.php:369
|
230 |
+
#: includes/meta.php:392 includes/meta.php:407 includes/meta.php:436
|
231 |
+
#: includes/meta.php:447
|
232 |
+
msgid "True"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: includes/meta.php:349 includes/meta.php:359 includes/meta.php:370
|
236 |
+
#: includes/meta.php:393 includes/meta.php:406 includes/meta.php:437
|
237 |
+
#: includes/meta.php:448
|
238 |
+
msgid "False"
|
239 |
+
msgstr ""
|
240 |
|
241 |
+
#: includes/meta.php:354
|
242 |
msgid "Slider Stop on Hover"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/meta.php:365
|
246 |
msgid "Slider Navigation"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/meta.php:366
|
250 |
msgid "Slider Navigation at Top"
|
251 |
msgstr "Takaisin kotiin"
|
252 |
|
253 |
+
#: includes/meta.php:374
|
254 |
msgid "Slider Navigation Position"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/meta.php:376
|
258 |
msgid "Top Right"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/meta.php:377
|
262 |
msgid "Middle"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/meta.php:378
|
266 |
msgid "Middle fixed"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/meta.php:388
|
270 |
msgid "Slider Pagination"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/meta.php:389
|
274 |
msgid "Slider Pagination at Bottom"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/meta.php:398
|
278 |
msgid "Pagination Background Color"
|
279 |
msgstr "Sivunumeroinnin taustaväri"
|
280 |
|
281 |
+
#: includes/meta.php:401
|
282 |
msgid "Pagination Text Color"
|
283 |
msgstr "Sivunumerointi tekstin väri"
|
284 |
|
285 |
+
#: includes/meta.php:404
|
286 |
msgid "Pagination Number Counting"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/meta.php:420
|
290 |
msgid "Slide Speed"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/meta.php:425
|
294 |
msgid "Pagination Slide Speed"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/meta.php:431
|
298 |
msgid "Slider Touch Drag Enabled"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/meta.php:443
|
302 |
msgid "Slider Mouse Drag Enabled"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/meta.php:457
|
306 |
msgid "Themes for slider"
|
307 |
msgstr "Teemat"
|
308 |
|
309 |
+
#: includes/meta.php:480
|
310 |
msgid "Slider Ribbon"
|
311 |
msgstr "Karusellin nauha"
|
312 |
|
313 |
+
#: includes/meta.php:551
|
314 |
msgid "Container options"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/meta.php:552
|
318 |
msgid "Padding: (ex: 10px)"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/meta.php:555
|
322 |
msgid "Background color:"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/meta.php:558
|
326 |
msgid "Background image:"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/meta.php:563
|
330 |
msgid "Clear"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/meta.php:588
|
334 |
msgid "Items Options"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: includes/meta.php:589
|
338 |
msgid "Items Background color"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/meta.php:592
|
342 |
msgid "Items Padding"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/meta.php:604
|
346 |
msgid "Empty Thumbnail"
|
347 |
msgstr "Tyhjä pikkukuva"
|
348 |
|
349 |
+
#: includes/meta.php:605
|
350 |
msgid "Custom thumbnail image url"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/meta.php:674
|
354 |
msgid "Query order"
|
355 |
msgstr "Järjestys"
|
356 |
|
357 |
+
#: includes/meta.php:677
|
358 |
+
msgid "Descending"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: includes/meta.php:678
|
362 |
+
msgid "Ascending "
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: includes/meta.php:690
|
366 |
msgid "Query orderBy"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: includes/meta.php:693
|
370 |
msgid "None"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: includes/meta.php:694
|
374 |
msgid "ID"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: includes/meta.php:695
|
378 |
msgid "Date"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: includes/meta.php:696
|
382 |
msgid "Rand"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/meta.php:697
|
386 |
msgid "Comment Count"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: includes/meta.php:698
|
390 |
msgid "Author"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: includes/meta.php:700
|
394 |
msgid "Name"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: includes/meta.php:701
|
398 |
msgid "Type"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/meta.php:708
|
402 |
msgid "Hide out of stock items"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/meta.php:712
|
406 |
msgid "Yes "
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: includes/meta.php:721
|
410 |
msgid "Filter Slider Content."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: includes/meta.php:724
|
414 |
+
msgid "Display from <b>Recent</b> Published"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: includes/meta.php:725
|
418 |
msgid "Slider items will query from recent published product."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: includes/meta.php:728
|
422 |
+
msgid "Display from <b>Featured</b> Product"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/meta.php:729
|
426 |
msgid "Slider items will query from featured marked product."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/meta.php:732
|
430 |
+
msgid "Display from Only <b>Year</b>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/meta.php:734
|
434 |
msgid "Slider items will query from a year."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/meta.php:739
|
438 |
+
msgid "Display from <b>Month</b>"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/meta.php:740
|
442 |
msgid "Slider items will query from Month of a year."
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/meta.php:752
|
446 |
+
msgid "Items sort."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/meta.php:753
|
450 |
+
msgid "Click each items to expand."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/meta.php:754
|
454 |
msgid "Reset"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/meta.php:806
|
458 |
msgid "Slider Thumbnail Size"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/meta.php:809
|
462 |
+
msgid "Full"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/meta.php:810
|
466 |
msgid "Large"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/meta.php:811
|
470 |
+
msgid "Medium"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/meta.php:819
|
474 |
msgid "Items thumbnail link's to"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/meta.php:822
|
478 |
msgid "Product"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: includes/meta.php:831
|
482 |
msgid "Slider thumb max hieght(px)"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: includes/meta.php:837
|
486 |
+
msgid "Display Thumbnail Zoom button"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: includes/meta.php:854
|
490 |
msgid "Items Add to cart button Style"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: includes/meta.php:855
|
494 |
msgid "You can hide items Add to cart button on slider."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: includes/meta.php:857
|
498 |
msgid "Default"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: includes/meta.php:858
|
502 |
msgid "Custom"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: includes/meta.php:863
|
|
|
|
|
|
|
|
|
506 |
msgid "Add to cart Background Color"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/meta.php:869
|
510 |
msgid "Add to cart Text Color"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: includes/meta.php:875
|
514 |
+
msgid "Items Cart Text Align"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/meta.php:879 includes/meta.php:932 includes/meta.php:991
|
518 |
+
#: includes/meta.php:1016 includes/meta.php:1072 includes/meta.php:1114
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
msgid "Left"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: includes/meta.php:880 includes/meta.php:933 includes/meta.php:992
|
523 |
+
#: includes/meta.php:1017 includes/meta.php:1073 includes/meta.php:1115
|
524 |
+
msgid "Right"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: includes/meta.php:881 includes/meta.php:934 includes/meta.php:993
|
528 |
+
#: includes/meta.php:1018 includes/meta.php:1075 includes/meta.php:1116
|
529 |
+
msgid "Center"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: includes/meta.php:897
|
533 |
+
msgid "Sale marker icon url"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: includes/meta.php:916
|
537 |
msgid "Items Title Color"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: includes/meta.php:921
|
541 |
msgid "Items Title Font Size"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: includes/meta.php:928
|
545 |
+
msgid "Items Title Text Align"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: includes/meta.php:947
|
549 |
+
msgid "Featured marker icon url"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/meta.php:959
|
553 |
msgid "Price format on slider"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: includes/meta.php:962
|
557 |
msgid "Full Format"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: includes/meta.php:963
|
561 |
msgid "Sale price"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: includes/meta.php:964
|
565 |
msgid "Regular price"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/meta.php:973
|
569 |
msgid "Items Price Color"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: includes/meta.php:979
|
573 |
msgid "Items price Font Size"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/meta.php:987
|
577 |
msgid "Price Text Align"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/meta.php:1012
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
msgid "Items Rating Text Align"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/meta.php:1025
|
585 |
msgid "Items ratings Font Size"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: includes/meta.php:1032
|
589 |
msgid "Items Ratings Color"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/meta.php:1049
|
593 |
msgid "Excerpt word count"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: includes/meta.php:1055
|
597 |
msgid "Excerpt read more text"
|
598 |
msgstr "Lue lisää "
|
599 |
|
600 |
+
#: includes/meta.php:1061
|
601 |
msgid "Items Excerpt Font Size"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/meta.php:1068
|
605 |
msgid "Excerpt Text Align"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/meta.php:1081
|
609 |
+
msgid "Items Excerpt Font color"
|
|
|
|
|
|
|
|
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/meta.php:1103
|
613 |
msgid "Items Category Font Size"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/meta.php:1110
|
617 |
msgid "Category Text Align"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/meta.php:1125
|
621 |
+
msgid "Items Category Font color"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/meta.php:1180
|
625 |
msgid "Custom CSS for this slider."
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/meta.php:1181
|
629 |
msgid ""
|
630 |
"Do not use <style></style> tag, you can use bellow prefix to your css, "
|
631 |
"sometime you need use \"!important\" to overrid."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: templates/wcps-featured.php:22
|
|
|
|
|
|
|
|
|
|
|
635 |
msgid "Featured Product"
|
636 |
msgstr "Erikoistuotteet"
|
637 |
|
639 |
msgid "Rated"
|
640 |
msgstr "Arvostelu"
|
641 |
|
642 |
+
#: templates/wcps-sale.php:19
|
|
|
|
|
|
|
|
|
|
|
643 |
msgid "Sale Product"
|
644 |
msgstr "Alennustuote"
|
645 |
|
646 |
+
#~ msgid "Active"
|
647 |
+
#~ msgstr "Aktiivi"
|
648 |
+
|
649 |
+
#~ msgid "Inactive"
|
650 |
+
#~ msgstr "Ei aktiivi"
|
651 |
+
|
652 |
+
#~ msgid "Items category display"
|
653 |
+
#~ msgstr "Kategoria arkisto"
|
|
|
|
|
654 |
|
655 |
#~ msgid "Background Image"
|
656 |
#~ msgstr "Taustakuva"
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Woocommerce Products Slider ===
|
2 |
-
Contributors:
|
3 |
-
Donate link: http://
|
4 |
Tags: carousel, product, slider, woocommerce, carousel slider, product slider, woocommerce slider, Woocommerce Product slider
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.12.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -16,33 +16,45 @@
|
|
16 |
A premium quality carousel slider to slide your woo-commerce product. easy to use via shortcode anywhere
|
17 |
|
18 |
|
19 |
-
### Woocommerce Products Slider by http://
|
20 |
|
21 |
* [See the Live demo!»](http://www.pickplugins.com/demo/woocommerce-products-slider/)
|
22 |
* [Watch Video Tutorial!»](https://www.youtube.com/watch?v=B0sOSp3h9fE)
|
23 |
-
* [Upgrade to Premium!»](http://
|
24 |
|
25 |
|
26 |
-
<strong>Plugin Features</strong
|
27 |
|
28 |
* Fully responsive and mobile ready.
|
29 |
* Unlimited slider anywhere.
|
30 |
-
* Query post from latest post, Older Published, Featured Items, by Only Year, by Month of a year, Taxonomy & Categories, Product id.
|
31 |
-
* Two different Theme.
|
32 |
* Custom number of slider items to query.
|
33 |
-
* Custom number of Slider Column Number.
|
34 |
-
* Slider
|
35 |
-
*
|
36 |
-
*
|
37 |
-
*
|
38 |
-
*
|
39 |
-
*
|
40 |
-
*
|
41 |
-
*
|
42 |
-
*
|
43 |
-
* Items
|
44 |
-
*
|
45 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
<br />
|
48 |
<strong>Video Tutorial Here.</strong>
|
@@ -71,13 +83,23 @@ then paste this shortcode anywhere in your page to display slider<br />
|
|
71 |
|
72 |
== Screenshots ==
|
73 |
|
74 |
-
1. screenshot-1
|
75 |
-
2. screenshot-
|
76 |
-
3. screenshot-
|
|
|
|
|
77 |
|
78 |
== Changelog ==
|
79 |
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
= 1.12.1 =
|
82 |
* 01/02/2016 - fix -License issue fixed.
|
83 |
|
1 |
=== Woocommerce Products Slider ===
|
2 |
+
Contributors: pickplugins
|
3 |
+
Donate link: http://pickplugins.com
|
4 |
Tags: carousel, product, slider, woocommerce, carousel slider, product slider, woocommerce slider, Woocommerce Product slider
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 1.12.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
16 |
A premium quality carousel slider to slide your woo-commerce product. easy to use via shortcode anywhere
|
17 |
|
18 |
|
19 |
+
### Woocommerce Products Slider by http://pickplugins.com
|
20 |
|
21 |
* [See the Live demo!»](http://www.pickplugins.com/demo/woocommerce-products-slider/)
|
22 |
* [Watch Video Tutorial!»](https://www.youtube.com/watch?v=B0sOSp3h9fE)
|
23 |
+
* [Upgrade to Premium!»](http://www.pickplugins.com/item/woocommerce-products-slider-for-wordpress/)
|
24 |
|
25 |
|
26 |
+
<strong>Plugin Features</strong>
|
27 |
|
28 |
* Fully responsive and mobile ready.
|
29 |
* Unlimited slider anywhere.
|
|
|
|
|
30 |
* Custom number of slider items to query.
|
31 |
+
* Custom number of Slider Column Number for Destop & Tablet & Small Desktop & Mobile.
|
32 |
+
* 3 Slider nav positions.
|
33 |
+
* Slider Auto Play.
|
34 |
+
* Slider Stop on Hover.
|
35 |
+
* Slider Touch Drag, Mouse Drag.
|
36 |
+
* Custom speed for slider navigation & Pagination.
|
37 |
+
* Custom pagination Background Color & Text Color.
|
38 |
+
* 3 Ready Themes.
|
39 |
+
* 20 Ready Ribbons & Custom Ribbons.
|
40 |
+
* Slider Container custom Padding, Background color, Background image.
|
41 |
+
* Slider Items custom Background color, Padding.
|
42 |
+
* Default Empty Thumbnail & Custom Empty Thumbnail.
|
43 |
+
* Hide out of stock product.
|
44 |
+
* Filter Slider product by Recent Published, Featured Product, Only Year, Month,
|
45 |
+
* Custom color, Font Size, Text Align for slider items Title.
|
46 |
+
* Custom word count Excerpt, Custom View product(read more) text, Custom Font Size , Font color & Text Align.
|
47 |
+
* Items Category display, Font Size, Font color, Text Align.
|
48 |
+
* Display Price 3 format on slider, Full price, sale price, regular price.
|
49 |
+
* Csutom ratings Font Size, Ratings Color.
|
50 |
+
* Add to cart button default & Custom style, custom Background Color, Text Color.
|
51 |
+
* Custom Sale marker icon.
|
52 |
+
* Custom Featured marker icon.
|
53 |
+
|
54 |
+
<strong>Premium Features</strong>
|
55 |
+
|
56 |
+
* 29 Ready Themes.
|
57 |
+
* On Sale Product, Best Selling Product, Top Rated Product, Recently viewed, Product Taxonomy & Categories, by Product ID, by SKU
|
58 |
|
59 |
<br />
|
60 |
<strong>Video Tutorial Here.</strong>
|
83 |
|
84 |
== Screenshots ==
|
85 |
|
86 |
+
1. screenshot-1
|
87 |
+
2. screenshot-2
|
88 |
+
3. screenshot-3
|
89 |
+
4. screenshot-4
|
90 |
+
5. screenshot-5
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
|
95 |
+
= 1.12.3 =
|
96 |
+
* 15/03/2016 – license warning issue fixed.
|
97 |
+
|
98 |
+
= 1.12.2 =
|
99 |
+
* 15/03/2016 – Image zoom box added.
|
100 |
+
* 15/03/2016 -Sale marker icon changed.
|
101 |
+
* 15/03/2016 -Featured Marked Icon changed.
|
102 |
+
|
103 |
= 1.12.1 =
|
104 |
* 01/02/2016 - fix -License issue fixed.
|
105 |
|
templates/custom-css.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -51,9 +51,10 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
51 |
|
52 |
$html.= '
|
53 |
|
54 |
-
#wcps-'.$post_id.' .wcps-items .wcps-items-excerpt{
|
55 |
text-align:'.$wcps_items_excerpt_text_align.';
|
56 |
font-size:'.$wcps_items_excerpt_font_size.';
|
|
|
57 |
}
|
58 |
';
|
59 |
|
@@ -61,9 +62,10 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
61 |
|
62 |
$html.= '
|
63 |
|
64 |
-
#wcps-'.$post_id.' .wcps-items .wcps-items-category{
|
65 |
font-size:'.$wcps_items_cat_font_size.';
|
66 |
text-align:'.$wcps_items_cat_text_align.';
|
|
|
67 |
}
|
68 |
';
|
69 |
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
51 |
|
52 |
$html.= '
|
53 |
|
54 |
+
#wcps-'.$post_id.' .wcps-items .wcps-items-excerpt, #wcps-'.$post_id.' .wcps-items .wcps-items-excerpt a{
|
55 |
text-align:'.$wcps_items_excerpt_text_align.';
|
56 |
font-size:'.$wcps_items_excerpt_font_size.';
|
57 |
+
color:'.$wcps_items_excerpt_font_color.';
|
58 |
}
|
59 |
';
|
60 |
|
62 |
|
63 |
$html.= '
|
64 |
|
65 |
+
#wcps-'.$post_id.' .wcps-items .wcps-items-category, #wcps-'.$post_id.' .wcps-items .wcps-items-category a{
|
66 |
font-size:'.$wcps_items_cat_font_size.';
|
67 |
text-align:'.$wcps_items_cat_text_align.';
|
68 |
+
color:'.$wcps_items_cat_font_color.';
|
69 |
}
|
70 |
';
|
71 |
|
templates/layer-content.php
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
+
*/
|
7 |
+
|
8 |
+
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
+
|
10 |
+
$html.='<div class="layer-content">';
|
11 |
+
|
12 |
+
foreach($wcps_grid_items as $item_key=>$item){
|
13 |
+
if(empty($wcps_grid_items_hide[$item_key])){
|
14 |
+
|
15 |
+
if($item_key!='thumb')
|
16 |
+
include wcps_plugin_dir.'/templates/wcps-'.$item_key.'.php';
|
17 |
+
}
|
18 |
+
}
|
19 |
+
|
20 |
+
$html.='</div>';
|
21 |
+
|
templates/layer-media.php
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
+
*/
|
7 |
+
|
8 |
+
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
+
|
10 |
+
|
11 |
+
$html.='<div class="layer-media">';
|
12 |
+
include wcps_plugin_dir.'/templates/wcps-thumb.php';
|
13 |
+
$html.='</div>';
|
templates/query.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -158,6 +158,28 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
158 |
) );
|
159 |
|
160 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
|
162 |
else if($wcps_content_source=="taxonomy")
|
163 |
{
|
@@ -184,6 +206,8 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
184 |
|
185 |
else if(($wcps_content_source=="product_id"))
|
186 |
{
|
|
|
|
|
187 |
|
188 |
$wp_query = new WP_Query(
|
189 |
array (
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
158 |
) );
|
159 |
|
160 |
}
|
161 |
+
|
162 |
+
|
163 |
+
else if(($wcps_content_source=="sku"))
|
164 |
+
{
|
165 |
+
|
166 |
+
$wp_query = new WP_Query(
|
167 |
+
array (
|
168 |
+
'post_type' => 'product',
|
169 |
+
'post_status' => 'publish',
|
170 |
+
'orderby' => $wcps_query_orderby,
|
171 |
+
'order' => $wcps_query_order,
|
172 |
+
'meta_query' => array(
|
173 |
+
array(
|
174 |
+
'key' => '_sku',
|
175 |
+
'value' => $wcps_content_sku,
|
176 |
+
)),
|
177 |
+
'posts_per_page' => $wcps_total_items,
|
178 |
+
|
179 |
+
) );
|
180 |
+
|
181 |
+
}
|
182 |
+
|
183 |
|
184 |
else if($wcps_content_source=="taxonomy")
|
185 |
{
|
206 |
|
207 |
else if(($wcps_content_source=="product_id"))
|
208 |
{
|
209 |
+
|
210 |
+
$wcps_product_ids = explode(',',$wcps_product_ids);
|
211 |
|
212 |
$wp_query = new WP_Query(
|
213 |
array (
|
templates/scripts.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -43,7 +43,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
43 |
|
44 |
}
|
45 |
|
46 |
-
if(
|
47 |
{
|
48 |
|
49 |
$html.= 'pagination: '.$wcps_slider_pagination.',';
|
@@ -55,7 +55,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
55 |
}
|
56 |
|
57 |
|
58 |
-
if(
|
59 |
{
|
60 |
|
61 |
$html.= 'paginationNumbers: true,';
|
@@ -84,7 +84,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
84 |
}
|
85 |
|
86 |
|
87 |
-
if(
|
88 |
{
|
89 |
|
90 |
$html.= 'touchDrag : true,';
|
@@ -97,7 +97,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
97 |
|
98 |
|
99 |
|
100 |
-
if(
|
101 |
{
|
102 |
|
103 |
$html.= 'mouseDrag : true,';
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
43 |
|
44 |
}
|
45 |
|
46 |
+
if(($wcps_slider_pagination=="true"))
|
47 |
{
|
48 |
|
49 |
$html.= 'pagination: '.$wcps_slider_pagination.',';
|
55 |
}
|
56 |
|
57 |
|
58 |
+
if(($wcps_slider_pagination_count=="true"))
|
59 |
{
|
60 |
|
61 |
$html.= 'paginationNumbers: true,';
|
84 |
}
|
85 |
|
86 |
|
87 |
+
if(($wcps_slider_touch_drag=="true"))
|
88 |
{
|
89 |
|
90 |
$html.= 'touchDrag : true,';
|
97 |
|
98 |
|
99 |
|
100 |
+
if(($wcps_slider_mouse_drag=="true" ))
|
101 |
{
|
102 |
|
103 |
$html.= 'mouseDrag : true,';
|
templates/variables.php
CHANGED
@@ -1,110 +1,207 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
|
10 |
-
$wcps_ribbons = get_option( 'wcps_ribbons' );
|
11 |
-
|
12 |
$wcps_bg_img = get_post_meta( $post_id, 'wcps_bg_img', true );
|
13 |
-
$wcps_container_padding = get_post_meta( $post_id, 'wcps_container_padding', true );
|
|
|
|
|
|
|
|
|
14 |
$wcps_container_bg_color = get_post_meta( $post_id, 'wcps_container_bg_color', true );
|
|
|
|
|
|
|
15 |
|
16 |
$wcps_items_bg_color = get_post_meta( $post_id, 'wcps_items_bg_color', true );
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
$wcps_themes = get_post_meta( $post_id, 'wcps_themes', true );
|
|
|
|
|
|
|
|
|
|
|
20 |
$wcps_total_items = get_post_meta( $post_id, 'wcps_total_items', true );
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
24 |
$wcps_column_number = get_post_meta( $post_id, 'wcps_column_number', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
$wcps_column_number_mobile = get_post_meta( $post_id, 'wcps_column_number_mobile', true );
|
26 |
-
|
|
|
|
|
27 |
|
28 |
$wcps_auto_play = get_post_meta( $post_id, 'wcps_auto_play', true );
|
|
|
|
|
|
|
|
|
29 |
$wcps_stop_on_hover = get_post_meta( $post_id, 'wcps_stop_on_hover', true );
|
|
|
|
|
|
|
|
|
|
|
30 |
$wcps_slider_navigation = get_post_meta( $post_id, 'wcps_slider_navigation', true );
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
$wcps_slide_speed = get_post_meta( $post_id, 'wcps_slide_speed', true );
|
33 |
-
|
|
|
|
|
|
|
34 |
$wcps_slider_pagination = get_post_meta( $post_id, 'wcps_slider_pagination', true );
|
35 |
$wcps_pagination_slide_speed = get_post_meta( $post_id, 'wcps_pagination_slide_speed', true );
|
|
|
|
|
|
|
|
|
36 |
$wcps_slider_pagination_count = get_post_meta( $post_id, 'wcps_slider_pagination_count', true );
|
37 |
|
38 |
$wcps_slider_pagination_bg = get_post_meta( $post_id, 'wcps_slider_pagination_bg', true );
|
39 |
-
$wcps_slider_pagination_text_color = get_post_meta( $post_id, 'wcps_slider_pagination_text_color', true );
|
40 |
|
41 |
$wcps_slider_touch_drag = get_post_meta( $post_id, 'wcps_slider_touch_drag', true );
|
42 |
$wcps_slider_mouse_drag = get_post_meta( $post_id, 'wcps_slider_mouse_drag', true );
|
43 |
|
44 |
-
$wcps_query_order = get_post_meta( $post_id, 'wcps_query_order', true );
|
45 |
-
$wcps_query_orderby = get_post_meta( $post_id, 'wcps_query_orderby', true );
|
46 |
-
$wcps_hide_out_of_stock = get_post_meta( $post_id, 'wcps_hide_out_of_stock', true );
|
47 |
-
|
48 |
$wcps_content_source = get_post_meta( $post_id, 'wcps_content_source', true );
|
|
|
|
|
|
|
|
|
49 |
$wcps_content_year = get_post_meta( $post_id, 'wcps_content_year', true );
|
50 |
$wcps_content_month = get_post_meta( $post_id, 'wcps_content_month', true );
|
51 |
-
$wcps_content_month_year = get_post_meta( $post_id, 'wcps_content_month_year', true );
|
52 |
|
53 |
-
$
|
54 |
-
|
55 |
-
|
56 |
-
$
|
|
|
|
|
57 |
|
58 |
-
$wcps_cat_display = get_post_meta( $post_id, 'wcps_cat_display', true );
|
59 |
$wcps_items_cat_font_size = get_post_meta( $post_id, 'wcps_items_cat_font_size', true );
|
60 |
$wcps_items_cat_text_align = get_post_meta( $post_id, 'wcps_items_cat_text_align', true );
|
61 |
|
62 |
-
$wcps_featured_display = get_post_meta( $post_id, 'wcps_featured_display', true );
|
63 |
$wcps_featured_icon_url = get_post_meta( $post_id, 'wcps_featured_icon_url', true );
|
64 |
-
|
65 |
-
$wcps_sale_display = get_post_meta( $post_id, 'wcps_sale_display', true );
|
66 |
-
$wcps_sale_icon_url = get_post_meta( $post_id, 'wcps_sale_icon_url', true );
|
67 |
|
68 |
-
|
69 |
-
|
70 |
$wcps_ratings_text_align = get_post_meta( $post_id, 'wcps_ratings_text_align', true );
|
71 |
$wcps_items_ratings_font_size = get_post_meta( $post_id, 'wcps_items_ratings_font_size', true );
|
72 |
$wcps_items_ratings_color = get_post_meta( $post_id, 'wcps_items_ratings_color', true );
|
73 |
-
|
74 |
$wcps_cart_style = get_post_meta( $post_id, 'wcps_cart_style', true );
|
75 |
-
$
|
76 |
-
$wcps_cart_bg = get_post_meta( $post_id, 'wcps_cart_bg', true );
|
77 |
$wcps_cart_text_color = get_post_meta( $post_id, 'wcps_cart_text_color', true );
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
-
$
|
84 |
-
|
|
|
|
|
|
|
|
|
|
|
85 |
$wcps_items_title_font_size = get_post_meta( $post_id, 'wcps_items_title_font_size', true );
|
86 |
-
$wcps_items_title_text_align = get_post_meta( $post_id, 'wcps_items_title_text_align', true );
|
87 |
|
88 |
$wcps_items_excerpt_count = get_post_meta( $post_id, 'wcps_items_excerpt_count', true );
|
|
|
|
|
|
|
|
|
89 |
$wcps_items_excerpt_read_more = get_post_meta( $post_id, 'wcps_items_excerpt_read_more', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
$wcps_items_excerpt_text_align = get_post_meta( $post_id, 'wcps_items_excerpt_text_align', true );
|
91 |
-
$wcps_items_excerpt_font_size = get_post_meta( $post_id, 'wcps_items_excerpt_font_size', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
-
$wcps_items_price_display = get_post_meta( $post_id, 'wcps_items_price_display', true );
|
94 |
-
$wcps_items_price_color = get_post_meta( $post_id, 'wcps_items_price_color', true );
|
95 |
$wcps_items_price_font_size = get_post_meta( $post_id, 'wcps_items_price_font_size', true );
|
96 |
-
$wcps_items_price_text_align = get_post_meta( $post_id, 'wcps_items_price_text_align', true );
|
97 |
|
98 |
$wcps_items_thumb_link_to = get_post_meta( $post_id, 'wcps_items_thumb_link_to', true );
|
99 |
-
$wcps_items_thumb_size = get_post_meta( $post_id, 'wcps_items_thumb_size', true );
|
100 |
$wcps_items_thumb_max_hieght = get_post_meta( $post_id, 'wcps_items_thumb_max_hieght', true );
|
|
|
101 |
|
102 |
-
$wcps_items_empty_thumb = get_post_meta( $post_id, 'wcps_items_empty_thumb', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
$wcps_ribbon_name = get_post_meta( $post_id, 'wcps_ribbon_name', true );
|
105 |
-
$wcps_ribbon_custom = get_post_meta( $post_id, 'wcps_ribbon_custom', true );
|
106 |
|
107 |
-
$wcps_items_custom_css = get_post_meta( $post_id, 'wcps_items_custom_css', true );
|
108 |
|
109 |
if ( wp_is_mobile() ) {
|
110 |
$wcps_is_mobile = "wcps_mobile";
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
|
|
|
|
|
10 |
$wcps_bg_img = get_post_meta( $post_id, 'wcps_bg_img', true );
|
11 |
+
$wcps_container_padding = get_post_meta( $post_id, 'wcps_container_padding', true );
|
12 |
+
if(empty($wcps_container_padding)){
|
13 |
+
$wcps_container_padding = '';
|
14 |
+
}
|
15 |
+
|
16 |
$wcps_container_bg_color = get_post_meta( $post_id, 'wcps_container_bg_color', true );
|
17 |
+
if(empty($wcps_container_bg_color)){
|
18 |
+
$wcps_container_bg_color = '';
|
19 |
+
}
|
20 |
|
21 |
$wcps_items_bg_color = get_post_meta( $post_id, 'wcps_items_bg_color', true );
|
22 |
+
if(empty($wcps_items_bg_color)){
|
23 |
+
|
24 |
+
$wcps_items_bg_color = '';
|
25 |
+
}
|
26 |
+
|
27 |
+
$wcps_items_padding = get_post_meta( $post_id, 'wcps_items_padding', true );
|
28 |
+
if(empty($wcps_items_padding)){
|
29 |
+
$wcps_items_padding = '';
|
30 |
+
|
31 |
+
}
|
32 |
|
33 |
$wcps_themes = get_post_meta( $post_id, 'wcps_themes', true );
|
34 |
+
if(empty($wcps_themes)){
|
35 |
+
$wcps_themes = 'flat';
|
36 |
+
}
|
37 |
+
|
38 |
+
|
39 |
$wcps_total_items = get_post_meta( $post_id, 'wcps_total_items', true );
|
40 |
+
if(empty($wcps_total_items)){
|
41 |
+
$wcps_total_items = 10;
|
42 |
+
}
|
43 |
+
|
44 |
+
$wcps_total_items_price_format = get_post_meta( $post_id, 'wcps_total_items_price_format', true );
|
45 |
+
|
46 |
$wcps_column_number = get_post_meta( $post_id, 'wcps_column_number', true );
|
47 |
+
if(empty($wcps_column_number)){
|
48 |
+
$wcps_column_number = 3;
|
49 |
+
}
|
50 |
+
$wcps_column_number_tablet = get_post_meta( $post_id, 'wcps_column_number_tablet', true );
|
51 |
+
if(empty($wcps_column_number_tablet)){
|
52 |
+
$wcps_column_number_tablet = 2;
|
53 |
+
}
|
54 |
+
|
55 |
$wcps_column_number_mobile = get_post_meta( $post_id, 'wcps_column_number_mobile', true );
|
56 |
+
if(empty($wcps_column_number_mobile)){
|
57 |
+
$wcps_column_number_mobile = 1;
|
58 |
+
}
|
59 |
|
60 |
$wcps_auto_play = get_post_meta( $post_id, 'wcps_auto_play', true );
|
61 |
+
if(empty($wcps_auto_play)){
|
62 |
+
$wcps_auto_play = 'true';
|
63 |
+
}
|
64 |
+
|
65 |
$wcps_stop_on_hover = get_post_meta( $post_id, 'wcps_stop_on_hover', true );
|
66 |
+
if(empty($wcps_stop_on_hover)){
|
67 |
+
$wcps_stop_on_hover = 'true';
|
68 |
+
}
|
69 |
+
|
70 |
+
|
71 |
$wcps_slider_navigation = get_post_meta( $post_id, 'wcps_slider_navigation', true );
|
72 |
+
if(empty($wcps_slider_navigation)){
|
73 |
+
$wcps_slider_navigation = 'true';
|
74 |
+
}
|
75 |
+
|
76 |
+
|
77 |
+
$wcps_slider_navigation_position = get_post_meta( $post_id, 'wcps_slider_navigation_position', true );
|
78 |
+
if(empty($wcps_slider_navigation_position)){
|
79 |
+
$wcps_slider_navigation_position = 'topright';
|
80 |
+
}
|
81 |
+
|
82 |
$wcps_slide_speed = get_post_meta( $post_id, 'wcps_slide_speed', true );
|
83 |
+
if(empty($wcps_slide_speed)){
|
84 |
+
$wcps_slide_speed = '1000';
|
85 |
+
}
|
86 |
+
|
87 |
$wcps_slider_pagination = get_post_meta( $post_id, 'wcps_slider_pagination', true );
|
88 |
$wcps_pagination_slide_speed = get_post_meta( $post_id, 'wcps_pagination_slide_speed', true );
|
89 |
+
if(empty($wcps_pagination_slide_speed)){
|
90 |
+
$wcps_pagination_slide_speed = '1000';
|
91 |
+
}
|
92 |
+
|
93 |
$wcps_slider_pagination_count = get_post_meta( $post_id, 'wcps_slider_pagination_count', true );
|
94 |
|
95 |
$wcps_slider_pagination_bg = get_post_meta( $post_id, 'wcps_slider_pagination_bg', true );
|
96 |
+
$wcps_slider_pagination_text_color = get_post_meta( $post_id, 'wcps_slider_pagination_text_color', true );
|
97 |
|
98 |
$wcps_slider_touch_drag = get_post_meta( $post_id, 'wcps_slider_touch_drag', true );
|
99 |
$wcps_slider_mouse_drag = get_post_meta( $post_id, 'wcps_slider_mouse_drag', true );
|
100 |
|
|
|
|
|
|
|
|
|
101 |
$wcps_content_source = get_post_meta( $post_id, 'wcps_content_source', true );
|
102 |
+
if(empty($wcps_content_source)){
|
103 |
+
$wcps_content_source = 'recent';
|
104 |
+
}
|
105 |
+
|
106 |
$wcps_content_year = get_post_meta( $post_id, 'wcps_content_year', true );
|
107 |
$wcps_content_month = get_post_meta( $post_id, 'wcps_content_month', true );
|
108 |
+
$wcps_content_month_year = get_post_meta( $post_id, 'wcps_content_month_year', true );
|
109 |
|
110 |
+
$wcps_content_sku = get_post_meta( $post_id, 'wcps_content_sku', true );
|
111 |
+
|
112 |
+
$wcps_taxonomy = get_post_meta( $post_id, 'wcps_taxonomy', true );
|
113 |
+
$wcps_taxonomy_category = get_post_meta( $post_id, 'wcps_taxonomy_category', true );
|
114 |
+
|
115 |
+
$wcps_product_ids = get_post_meta( $post_id, 'wcps_product_ids', true );
|
116 |
|
|
|
117 |
$wcps_items_cat_font_size = get_post_meta( $post_id, 'wcps_items_cat_font_size', true );
|
118 |
$wcps_items_cat_text_align = get_post_meta( $post_id, 'wcps_items_cat_text_align', true );
|
119 |
|
|
|
120 |
$wcps_featured_icon_url = get_post_meta( $post_id, 'wcps_featured_icon_url', true );
|
|
|
|
|
|
|
121 |
|
122 |
+
$wcps_sale_icon_url = get_post_meta( $post_id, 'wcps_sale_icon_url', true );
|
123 |
+
|
124 |
$wcps_ratings_text_align = get_post_meta( $post_id, 'wcps_ratings_text_align', true );
|
125 |
$wcps_items_ratings_font_size = get_post_meta( $post_id, 'wcps_items_ratings_font_size', true );
|
126 |
$wcps_items_ratings_color = get_post_meta( $post_id, 'wcps_items_ratings_color', true );
|
127 |
+
|
128 |
$wcps_cart_style = get_post_meta( $post_id, 'wcps_cart_style', true );
|
129 |
+
$wcps_cart_bg = get_post_meta( $post_id, 'wcps_cart_bg', true );
|
|
|
130 |
$wcps_cart_text_color = get_post_meta( $post_id, 'wcps_cart_text_color', true );
|
131 |
+
if(empty($wcps_cart_text_color)){
|
132 |
+
$wcps_cart_text_color = '#626262';
|
133 |
+
}
|
134 |
+
|
135 |
+
|
136 |
+
$wcps_cart_text_align = get_post_meta( $post_id, 'wcps_cart_text_align', true );
|
137 |
+
$wcps_items_cat_font_color = get_post_meta( $post_id, 'wcps_items_cat_font_color', true );
|
138 |
+
if(empty($wcps_items_cat_font_color)){
|
139 |
+
$wcps_items_cat_font_color = '#626262';
|
140 |
+
}
|
141 |
+
|
142 |
+
$wcps_grid_items = get_post_meta( $post_id, 'wcps_grid_items', true );
|
143 |
+
$wcps_grid_items_hide = get_post_meta( $post_id, 'wcps_grid_items_hide', true );
|
144 |
|
145 |
+
$wcps_items_title_color = get_post_meta( $post_id, 'wcps_items_title_color', true );
|
146 |
+
if(empty($wcps_items_title_color)){
|
147 |
+
$wcps_items_title_color = '#626262';
|
148 |
+
}
|
149 |
+
|
150 |
+
|
151 |
+
|
152 |
$wcps_items_title_font_size = get_post_meta( $post_id, 'wcps_items_title_font_size', true );
|
153 |
+
$wcps_items_title_text_align = get_post_meta( $post_id, 'wcps_items_title_text_align', true );
|
154 |
|
155 |
$wcps_items_excerpt_count = get_post_meta( $post_id, 'wcps_items_excerpt_count', true );
|
156 |
+
if(empty($wcps_items_excerpt_count)){
|
157 |
+
$wcps_items_excerpt_count = 20;
|
158 |
+
}
|
159 |
+
|
160 |
$wcps_items_excerpt_read_more = get_post_meta( $post_id, 'wcps_items_excerpt_read_more', true );
|
161 |
+
if(empty($wcps_items_excerpt_read_more)){
|
162 |
+
$wcps_items_excerpt_read_more = 'View product.';
|
163 |
+
}
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
$wcps_items_excerpt_text_align = get_post_meta( $post_id, 'wcps_items_excerpt_text_align', true );
|
168 |
+
$wcps_items_excerpt_font_size = get_post_meta( $post_id, 'wcps_items_excerpt_font_size', true );
|
169 |
+
$wcps_items_excerpt_font_color = get_post_meta( $post_id, 'wcps_items_excerpt_font_color', true );
|
170 |
+
if(empty($wcps_items_excerpt_font_color)){
|
171 |
+
$wcps_items_excerpt_font_color = '#626262';
|
172 |
+
}
|
173 |
+
|
174 |
+
$wcps_items_price_color = get_post_meta( $post_id, 'wcps_items_price_color', true );
|
175 |
+
if(empty($wcps_items_price_color)){
|
176 |
+
$wcps_items_price_color = '#626262';
|
177 |
+
}
|
178 |
+
|
179 |
+
|
180 |
+
|
181 |
|
|
|
|
|
182 |
$wcps_items_price_font_size = get_post_meta( $post_id, 'wcps_items_price_font_size', true );
|
183 |
+
$wcps_items_price_text_align = get_post_meta( $post_id, 'wcps_items_price_text_align', true );
|
184 |
|
185 |
$wcps_items_thumb_link_to = get_post_meta( $post_id, 'wcps_items_thumb_link_to', true );
|
186 |
+
$wcps_items_thumb_size = get_post_meta( $post_id, 'wcps_items_thumb_size', true );
|
187 |
$wcps_items_thumb_max_hieght = get_post_meta( $post_id, 'wcps_items_thumb_max_hieght', true );
|
188 |
+
$wcps_items_thumb_zoom = get_post_meta( $post_id, 'wcps_items_thumb_zoom', true );
|
189 |
|
190 |
+
$wcps_items_empty_thumb = get_post_meta( $post_id, 'wcps_items_empty_thumb', true );
|
191 |
+
if(empty($wcps_items_empty_thumb)){
|
192 |
+
$wcps_items_empty_thumb = wcps_plugin_url.'assets/front/images/no-thumb.png';
|
193 |
+
}
|
194 |
+
|
195 |
+
|
196 |
+
|
197 |
+
$wcps_query_order = get_post_meta( $post_id, 'wcps_query_order', true );
|
198 |
+
$wcps_query_orderby = get_post_meta( $post_id, 'wcps_query_orderby', true );
|
199 |
+
$wcps_hide_out_of_stock = get_post_meta( $post_id, 'wcps_hide_out_of_stock', true );
|
200 |
|
201 |
$wcps_ribbon_name = get_post_meta( $post_id, 'wcps_ribbon_name', true );
|
202 |
+
$wcps_ribbon_custom = get_post_meta( $post_id, 'wcps_ribbon_custom', true );
|
203 |
|
204 |
+
$wcps_items_custom_css = get_post_meta( $post_id, 'wcps_items_custom_css', true );
|
205 |
|
206 |
if ( wp_is_mobile() ) {
|
207 |
$wcps_is_mobile = "wcps_mobile";
|
templates/wcps-cart.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
templates/wcps-category.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
templates/wcps-excerpt.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
templates/wcps-featured.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -17,7 +17,7 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
17 |
|
18 |
|
19 |
|
20 |
-
if($wcps_featured=="yes"
|
21 |
{
|
22 |
$html.= '<div '.$wcps_featured_style.' title="'.__('Featured Product','wcps').'" class="wcps-featured"></div>';
|
23 |
}
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
17 |
|
18 |
|
19 |
|
20 |
+
if($wcps_featured=="yes")
|
21 |
{
|
22 |
$html.= '<div '.$wcps_featured_style.' title="'.__('Featured Product','wcps').'" class="wcps-featured"></div>';
|
23 |
}
|
templates/wcps-price.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
templates/wcps-rating.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
templates/wcps-ribbon.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
templates/wcps-sale.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
@@ -11,10 +11,10 @@ if ( ! defined('ABSPATH')) exit; // if direct access
|
|
11 |
$wcps_sale_style = '';
|
12 |
}
|
13 |
else{
|
14 |
-
$wcps_sale_style = 'style="background:
|
15 |
}
|
16 |
|
17 |
-
if(!empty($sale_price)
|
18 |
{
|
19 |
$html.= '<div '.$wcps_sale_style.' title="'.__('Sale Product','wcps').'" class="wcps-items-sale"></div>';
|
20 |
}
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
11 |
$wcps_sale_style = '';
|
12 |
}
|
13 |
else{
|
14 |
+
$wcps_sale_style = 'style="background-image: url('.$wcps_sale_icon_url.');"';
|
15 |
}
|
16 |
|
17 |
+
if(!empty($sale_price))
|
18 |
{
|
19 |
$html.= '<div '.$wcps_sale_style.' title="'.__('Sale Product','wcps').'" class="wcps-items-sale"></div>';
|
20 |
}
|
templates/wcps-thumb.php
CHANGED
@@ -1,11 +1,13 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
|
10 |
-
$html.= '<div class="wcps-items-thumb"><a href="'.$permalink.'"><img alt="'.get_the_title().'" src="'.$wcps_thumb_url.'" /></a
|
11 |
|
|
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
|
10 |
+
$html.= '<div class="wcps-items-thumb"><a href="'.$permalink.'"><img alt="'.get_the_title().'" src="'.$wcps_thumb_url.'" /></a>';
|
11 |
|
12 |
+
|
13 |
+
$html.= '</div>';
|
templates/wcps-title.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* @Author
|
5 |
-
* Copyright: 2015
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
*/
|
7 |
|
8 |
if ( ! defined('ABSPATH')) exit; // if direct access
|
templates/wcps-zoom.php
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* @Author PickPlugins
|
5 |
+
* Copyright: 2015 PickPlugins
|
6 |
+
*/
|
7 |
+
|
8 |
+
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
$html.= '<div class="wcps-zoom-thumb wcps-zoom-thumb-'.$post_id.'" >
|
13 |
+
<span class="wcps-zoom-colse">X</span>
|
14 |
+
<img src="" />
|
15 |
+
</div>';
|
themes/theme1/images/arrow-next.png
DELETED
Binary file
|
themes/theme1/images/arrow-prev.png
DELETED
Binary file
|
themes/theme1/images/tags.png
DELETED
Binary file
|
themes/theme1/index-old.php
DELETED
@@ -1,147 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/*
|
4 |
-
* @Author ParaTheme
|
5 |
-
* Copyright: 2015 ParaTheme
|
6 |
-
*/
|
7 |
-
|
8 |
-
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
-
|
10 |
-
|
11 |
-
include wcps_plugin_dir.'/templates/variables.php';
|
12 |
-
include wcps_plugin_dir.'/templates/custom-css.php';
|
13 |
-
|
14 |
-
$html.= '<div class="wcps-container '.$wcps_is_mobile.' " style="background-image:url('.$wcps_bg_img.')">';
|
15 |
-
|
16 |
-
include wcps_plugin_dir.'/templates/wcps-ribbon.php';
|
17 |
-
|
18 |
-
$html.= '<div id="wcps-'.$post_id.'" class="owl-carousel wcps-'.$wcps_themes.'">';
|
19 |
-
|
20 |
-
include wcps_plugin_dir.'/templates/query.php';
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
if ( $wp_query->have_posts() ) :
|
25 |
-
|
26 |
-
while ( $wp_query->have_posts() ) : $wp_query->the_post();
|
27 |
-
|
28 |
-
global $product;
|
29 |
-
|
30 |
-
$wcps_featured = get_post_meta( get_the_ID(), '_featured', true );
|
31 |
-
|
32 |
-
$wcps_thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $wcps_items_thumb_size );
|
33 |
-
$wcps_thumb_url = $wcps_thumb['0'];
|
34 |
-
|
35 |
-
if(empty($wcps_thumb_url))
|
36 |
-
{
|
37 |
-
$wcps_thumb_url = $wcps_items_empty_thumb;
|
38 |
-
}
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
$currency = get_woocommerce_currency_symbol();
|
43 |
-
|
44 |
-
$sale_price = get_post_meta( get_the_ID(), '_sale_price', true);
|
45 |
-
|
46 |
-
if($wcps_total_items_price_format=='full')
|
47 |
-
{
|
48 |
-
$price = $product->get_price_html();
|
49 |
-
}
|
50 |
-
elseif($wcps_total_items_price_format=='sale')
|
51 |
-
{
|
52 |
-
|
53 |
-
$price= $currency.get_post_meta( get_the_ID(), '_sale_price', true);
|
54 |
-
}
|
55 |
-
elseif($wcps_total_items_price_format=='regular')
|
56 |
-
{
|
57 |
-
|
58 |
-
$price = $currency.get_post_meta( get_the_ID(), '_regular_price', true);
|
59 |
-
|
60 |
-
}
|
61 |
-
else
|
62 |
-
{
|
63 |
-
$price = $product->get_price_html();
|
64 |
-
}
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
$product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' );
|
72 |
-
$cat_link = array();
|
73 |
-
$cat_name = array();
|
74 |
-
|
75 |
-
|
76 |
-
foreach($product_cats as $key => $cat)
|
77 |
-
{
|
78 |
-
|
79 |
-
$cat_link[] = get_term_link( $cat->term_id, 'product_cat' );
|
80 |
-
$cat_name[] = $cat->name;
|
81 |
-
|
82 |
-
|
83 |
-
}
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
if($wcps_items_thumb_link_to == 'product')
|
89 |
-
{
|
90 |
-
$permalink = get_permalink();
|
91 |
-
}
|
92 |
-
else if($wcps_items_thumb_link_to == 'category')
|
93 |
-
{
|
94 |
-
|
95 |
-
if(empty($cat_link[0]))
|
96 |
-
{
|
97 |
-
$permalink = get_permalink();
|
98 |
-
}
|
99 |
-
else
|
100 |
-
{
|
101 |
-
$permalink = $cat_link[0];
|
102 |
-
}
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
}
|
107 |
-
else
|
108 |
-
{
|
109 |
-
$permalink = get_permalink();
|
110 |
-
}
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
$html.= '<div class="wcps-items" >';
|
116 |
-
$html.= '<div style="max-height:'.$wcps_items_thumb_max_hieght.';" class="wcps-items-thumb"><a href="'.$permalink.'"><img alt="'.get_the_title().'" src="'.$wcps_thumb_url.'" /></a>';
|
117 |
-
|
118 |
-
include wcps_plugin_dir.'/templates/wcps-featured.php';
|
119 |
-
include wcps_plugin_dir.'/templates/wcps-sale.php';
|
120 |
-
|
121 |
-
|
122 |
-
$html.= '</div>';
|
123 |
-
|
124 |
-
$html.= '<div class="items-info">';
|
125 |
-
|
126 |
-
if(!empty($cat_name[0]) && $wcps_cat_display == 'yes')
|
127 |
-
$html.= '<div class="wcps-terms"><a href="'.$cat_link[0].'">'.$cat_name[0].'</a></div>';
|
128 |
-
|
129 |
-
if($wcps_items_title_display == 'yes') include wcps_plugin_dir.'/templates/wcps-title.php';
|
130 |
-
if($wcps_items_price_display == 'yes') include wcps_plugin_dir.'/templates/wcps-price.php';
|
131 |
-
if ( $wcps_ratings_display == 'yes' ) include wcps_plugin_dir.'/templates/wcps-ratings.php';
|
132 |
-
if($wcps_cart_display == 'yes') include wcps_plugin_dir.'/templates/wcps-cart.php';
|
133 |
-
|
134 |
-
$html.= '</div>
|
135 |
-
</div>';
|
136 |
-
|
137 |
-
endwhile;
|
138 |
-
wp_reset_query();
|
139 |
-
|
140 |
-
else :
|
141 |
-
$html.= __('No Product to Slide','wcps');
|
142 |
-
|
143 |
-
endif;
|
144 |
-
|
145 |
-
$html.= '</div></div>';
|
146 |
-
|
147 |
-
include wcps_plugin_dir.'/templates/scripts.php';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
themes/theme1/index.php
DELETED
@@ -1,95 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/*
|
4 |
-
* @Author ParaTheme
|
5 |
-
* Copyright: 2015 ParaTheme
|
6 |
-
*/
|
7 |
-
|
8 |
-
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
if ( $wp_query->have_posts() ) :
|
14 |
-
|
15 |
-
while ( $wp_query->have_posts() ) : $wp_query->the_post();
|
16 |
-
|
17 |
-
global $product;
|
18 |
-
|
19 |
-
$is_in_stock = $product->is_in_stock();
|
20 |
-
|
21 |
-
if ( $wcps_hide_out_of_stock=='yes' && empty($is_in_stock) ) { continue; }
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
$wcps_featured = get_post_meta( get_the_ID(), '_featured', true );
|
26 |
-
|
27 |
-
$wcps_thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $wcps_items_thumb_size );
|
28 |
-
$wcps_thumb_url = $wcps_thumb['0'];
|
29 |
-
|
30 |
-
if(empty($wcps_thumb_url)){
|
31 |
-
$wcps_thumb_url = $wcps_items_empty_thumb;
|
32 |
-
}
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
$currency = get_woocommerce_currency_symbol();
|
37 |
-
|
38 |
-
$sale_price = get_post_meta( get_the_ID(), '_sale_price', true);
|
39 |
-
|
40 |
-
if($wcps_total_items_price_format=='full'){
|
41 |
-
$price = $product->get_price_html();
|
42 |
-
}
|
43 |
-
elseif($wcps_total_items_price_format=='sale'){
|
44 |
-
|
45 |
-
$price= $currency.get_post_meta( get_the_ID(), '_sale_price', true);
|
46 |
-
}
|
47 |
-
elseif($wcps_total_items_price_format=='regular'){
|
48 |
-
$price = $currency.get_post_meta( get_the_ID(), '_regular_price', true);
|
49 |
-
}
|
50 |
-
else{
|
51 |
-
$price = $product->get_price_html();
|
52 |
-
}
|
53 |
-
|
54 |
-
|
55 |
-
if($wcps_items_thumb_link_to == 'product'){
|
56 |
-
$permalink = get_permalink();
|
57 |
-
}
|
58 |
-
else if($wcps_items_thumb_link_to == 'category'){
|
59 |
-
|
60 |
-
if(empty($cat_link[0])){
|
61 |
-
$permalink = get_permalink();
|
62 |
-
}
|
63 |
-
else{
|
64 |
-
$permalink = $cat_link[0];
|
65 |
-
}
|
66 |
-
}
|
67 |
-
else{
|
68 |
-
$permalink = get_permalink();
|
69 |
-
}
|
70 |
-
|
71 |
-
|
72 |
-
$html.= '<div class="wcps-items" >';
|
73 |
-
|
74 |
-
foreach($wcps_grid_items as $item_key=>$item){
|
75 |
-
|
76 |
-
if(empty($wcps_grid_items_hide[$item_key])){
|
77 |
-
include wcps_plugin_dir.'/templates/wcps-'.$item_key.'.php';
|
78 |
-
}
|
79 |
-
|
80 |
-
}
|
81 |
-
|
82 |
-
$html.= '</div>'; // .wcps-items
|
83 |
-
|
84 |
-
|
85 |
-
endwhile;
|
86 |
-
wp_reset_query();
|
87 |
-
|
88 |
-
else :
|
89 |
-
$html.= __('No Product to Slide','wcps');
|
90 |
-
|
91 |
-
endif;
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
themes/theme1/style.css
DELETED
@@ -1,163 +0,0 @@
|
|
1 |
-
@charset "utf-8";
|
2 |
-
/* CSS Document */
|
3 |
-
|
4 |
-
|
5 |
-
.wcps-container .owl-carousel .owl-item {
|
6 |
-
padding: 10px 0
|
7 |
-
}
|
8 |
-
|
9 |
-
.wcps-container .wcps-theme1 .wcps-items {
|
10 |
-
background: rgb(255, 255, 255) none repeat scroll 0 0;
|
11 |
-
box-shadow: 0 0 2px -1px rgb(153, 153, 153);
|
12 |
-
margin: 0 10px;
|
13 |
-
overflow: hidden;
|
14 |
-
padding: 0;
|
15 |
-
position: relative;
|
16 |
-
}
|
17 |
-
|
18 |
-
.wcps-container .wcps-theme1 div.wcps-items div.wcps-items-thumb {
|
19 |
-
line-height: 0;
|
20 |
-
overflow: hidden;
|
21 |
-
position: relative;
|
22 |
-
text-align: center;
|
23 |
-
}
|
24 |
-
|
25 |
-
.wcps-container .wcps-theme1 div.wcps-items div.wcps-items-thumb a {
|
26 |
-
color: rgb(255, 255, 255);
|
27 |
-
margin: 0;
|
28 |
-
padding: 0;
|
29 |
-
text-decoration: none;
|
30 |
-
width: 100%
|
31 |
-
}
|
32 |
-
|
33 |
-
.wcps-container .wcps-theme1 div.wcps-items div.wcps-items-thumb img {
|
34 |
-
-moz-border-radius: 0;
|
35 |
-
-webkit-border-radius: 0;
|
36 |
-
border-radius: 0;
|
37 |
-
-moz-box-shadow: none;
|
38 |
-
-webkit-box-shadow: none;
|
39 |
-
box-shadow: none;
|
40 |
-
margin: 0;
|
41 |
-
padding: 0;
|
42 |
-
width: 100%
|
43 |
-
}
|
44 |
-
|
45 |
-
.wcps-container .wcps-theme1 .wcps-terms {
|
46 |
-
display: none;
|
47 |
-
padding: 2px 10px 2px 25px;
|
48 |
-
text-align: center
|
49 |
-
}
|
50 |
-
|
51 |
-
.wcps-container .wcps-theme1 .wcps-items-title {
|
52 |
-
padding: 10px 12px;
|
53 |
-
text-align: left;
|
54 |
-
}
|
55 |
-
|
56 |
-
.wcps-container .wcps-theme1 .wcps-items-title a {
|
57 |
-
font-size: 16px;
|
58 |
-
font-weight: bold;
|
59 |
-
line-height: normal;
|
60 |
-
text-decoration: none;
|
61 |
-
}
|
62 |
-
|
63 |
-
.wcps-container .wcps-theme1 .wcps-items-excerpt {
|
64 |
-
font-size: 14px;
|
65 |
-
padding: 10px 12px;
|
66 |
-
text-align: left;
|
67 |
-
}
|
68 |
-
.wcps-container .wcps-theme1 .wcps-items-category {
|
69 |
-
padding: 5px 12px;
|
70 |
-
}
|
71 |
-
|
72 |
-
.wcps-container .wcps-theme1 .wcps-items-category a {
|
73 |
-
text-decoration: none;
|
74 |
-
}
|
75 |
-
|
76 |
-
.wcps-container .wcps-theme1 .wcps-items-rating {
|
77 |
-
padding: 5px 12px;
|
78 |
-
}
|
79 |
-
|
80 |
-
.wcps-container .wcps-theme1 .wcps-items-rating .star-rating{
|
81 |
-
font-size:1.5em;
|
82 |
-
}
|
83 |
-
|
84 |
-
.wcps-container .wcps-theme1 .wcps-items div.wcps-items-price {
|
85 |
-
padding: 5px 12px;
|
86 |
-
text-align: left;
|
87 |
-
}
|
88 |
-
|
89 |
-
.wcps-container .wcps-theme1 .wcps-items-price ins {
|
90 |
-
background: none repeat scroll 0 0 rgba(0, 0, 0, 0)
|
91 |
-
}
|
92 |
-
|
93 |
-
.wcps-container .wcps-theme1 .wcps-items-cart {
|
94 |
-
padding: 10px 12px;
|
95 |
-
text-align: left;
|
96 |
-
}
|
97 |
-
|
98 |
-
.wcps-container .wcps-theme1 .wcps-items div.wcps-items-cart p {
|
99 |
-
border: medium none !important;
|
100 |
-
margin: 0 !important;
|
101 |
-
padding: 0 !important
|
102 |
-
}
|
103 |
-
|
104 |
-
.wcps-container .wcps-theme1 .wcps-items div.wcps-items-cart.custom span.amount {
|
105 |
-
font-size: 15px;
|
106 |
-
line-height: 15px
|
107 |
-
}
|
108 |
-
|
109 |
-
.wcps-container .wcps-theme1 .wcps-items div.wcps-items-cart .amount, .wcps-container .wcps-theme1 div.wcps-items div.wcps-items-cart del, .wcps-container .wcps-theme1 div.wcps-items .wcps-items-cart ins, .wcps-container .wcps-theme1 div.wcps-items div.wcps-items-cart .woocommerce-price-suffix {
|
110 |
-
display: none
|
111 |
-
}
|
112 |
-
|
113 |
-
.wcps-container .wcps-theme1 .wcps-items div.wcps-items-cart.custom a.add_to_cart_button {
|
114 |
-
background: none repeat scroll 0 0 rgb(13, 225, 133);
|
115 |
-
border: medium none;
|
116 |
-
-moz-border-radius: 0;
|
117 |
-
-webkit-border-radius: 0;
|
118 |
-
border-radius: 0;
|
119 |
-
-moz-box-shadow: none;
|
120 |
-
-webkit-box-shadow: none;
|
121 |
-
box-shadow: none;
|
122 |
-
font-size: 12px;
|
123 |
-
line-height: 12px;
|
124 |
-
margin: 0;
|
125 |
-
padding: 10px 15px;
|
126 |
-
text-shadow: none
|
127 |
-
}
|
128 |
-
|
129 |
-
.wcps-container .wcps-theme1 .wcps-items div.wcps-items-cart.custom a.added_to_cart {
|
130 |
-
background: none repeat scroll 0 0 rgb(13, 225, 133);
|
131 |
-
border: medium none;
|
132 |
-
-moz-border-radius: 0;
|
133 |
-
-webkit-border-radius: 0;
|
134 |
-
border-radius: 0;
|
135 |
-
-moz-box-shadow: none;
|
136 |
-
-webkit-box-shadow: none;
|
137 |
-
box-shadow: none;
|
138 |
-
color: rgb(68, 68, 68);
|
139 |
-
font-size: 12px;
|
140 |
-
line-height: 12px;
|
141 |
-
margin-top: 15px;
|
142 |
-
padding: 10px 15px;
|
143 |
-
text-decoration: none;
|
144 |
-
text-shadow: none
|
145 |
-
}
|
146 |
-
|
147 |
-
.wcps-container .wcps-theme1 .wcps-items div.wcps-items-cart a.added {
|
148 |
-
display: none
|
149 |
-
}
|
150 |
-
|
151 |
-
.wcps-container .wcps-theme1 .owl-controls .owl-buttons div.owl-prev:hover {
|
152 |
-
background-image: url(images/arrow-prev.png);
|
153 |
-
background-color: #d5d5d5 !important
|
154 |
-
}
|
155 |
-
|
156 |
-
.wcps-container .wcps-theme1 .owl-controls .owl-buttons div.owl-next:hover {
|
157 |
-
background-image: url(images/arrow-next.png);
|
158 |
-
background-color: #d5d5d5 !important
|
159 |
-
}
|
160 |
-
|
161 |
-
.wcps-container .wcps-theme1 .owl-controls {
|
162 |
-
margin-top: 30px
|
163 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
themes/theme6/images/arrow-next.png
DELETED
Binary file
|
themes/theme6/images/arrow-prev.png
DELETED
Binary file
|
themes/theme6/images/tags.png
DELETED
Binary file
|
themes/theme6/index - Copy.php
DELETED
@@ -1,182 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/*
|
4 |
-
* @Author ParaTheme
|
5 |
-
* Copyright: 2015 ParaTheme
|
6 |
-
*/
|
7 |
-
|
8 |
-
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
-
|
10 |
-
include wcps_plugin_dir.'/templates/variables.php';
|
11 |
-
include wcps_plugin_dir.'/templates/custom-css.php';
|
12 |
-
|
13 |
-
|
14 |
-
$html.= '<div class="wcps-container '.$wcps_is_mobile.' " style="background-image:url('.$wcps_bg_img.')">';
|
15 |
-
|
16 |
-
include wcps_plugin_dir.'/templates/wcps-ribbon.php';
|
17 |
-
|
18 |
-
$html.= '<div id="wcps-'.$post_id.'" class="owl-carousel wcps-'.$wcps_themes.'">';
|
19 |
-
|
20 |
-
include wcps_plugin_dir.'/templates/query.php';
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
if ( $wp_query->have_posts() ) :
|
29 |
-
|
30 |
-
while ( $wp_query->have_posts() ) : $wp_query->the_post();
|
31 |
-
|
32 |
-
global $product;
|
33 |
-
|
34 |
-
$wcps_featured = get_post_meta( get_the_ID(), '_featured', true );
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
$wcps_thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $wcps_items_thumb_size );
|
40 |
-
|
41 |
-
$wcps_thumb_url = $wcps_thumb['0'];
|
42 |
-
|
43 |
-
if(empty($wcps_thumb_url))
|
44 |
-
{
|
45 |
-
$wcps_thumb_url = $wcps_items_empty_thumb;
|
46 |
-
}
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
$currency = get_woocommerce_currency_symbol();
|
51 |
-
|
52 |
-
$sale_price = get_post_meta( get_the_ID(), '_sale_price', true);
|
53 |
-
|
54 |
-
if($wcps_total_items_price_format=='full')
|
55 |
-
{
|
56 |
-
$price = $product->get_price_html();
|
57 |
-
}
|
58 |
-
elseif($wcps_total_items_price_format=='sale')
|
59 |
-
{
|
60 |
-
|
61 |
-
$price= $currency.get_post_meta( get_the_ID(), '_sale_price', true);
|
62 |
-
}
|
63 |
-
elseif($wcps_total_items_price_format=='regular')
|
64 |
-
{
|
65 |
-
|
66 |
-
$price = $currency.get_post_meta( get_the_ID(), '_regular_price', true);
|
67 |
-
|
68 |
-
}
|
69 |
-
else
|
70 |
-
{
|
71 |
-
$price = $product->get_price_html();
|
72 |
-
}
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
$product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' );
|
80 |
-
$cat_link = array();
|
81 |
-
$cat_name = array();
|
82 |
-
|
83 |
-
|
84 |
-
foreach($product_cats as $key => $cat)
|
85 |
-
{
|
86 |
-
|
87 |
-
$cat_link[] = get_term_link( $cat->term_id, 'product_cat' );
|
88 |
-
$cat_name[] = $cat->name;
|
89 |
-
|
90 |
-
|
91 |
-
}
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
if($wcps_items_thumb_link_to == 'product')
|
97 |
-
{
|
98 |
-
$permalink = get_permalink();
|
99 |
-
}
|
100 |
-
else if($wcps_items_thumb_link_to == 'category')
|
101 |
-
{
|
102 |
-
|
103 |
-
if(empty($cat_link[0]))
|
104 |
-
{
|
105 |
-
$permalink = get_permalink();
|
106 |
-
}
|
107 |
-
else
|
108 |
-
{
|
109 |
-
$permalink = $cat_link[0];
|
110 |
-
}
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
}
|
115 |
-
else
|
116 |
-
{
|
117 |
-
$permalink = get_permalink();
|
118 |
-
}
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
$html.= '<div class="wcps-items" >';
|
124 |
-
$html.= '<div style="max-height:'.$wcps_items_thumb_max_hieght.';" class="wcps-items-thumb"><a href="'.$permalink.'"><img alt="'.get_the_title().'" src="'.$wcps_thumb_url.'" /></a>';
|
125 |
-
|
126 |
-
if($wcps_featured=="yes" && $wcps_featured_display == 'yes')
|
127 |
-
{
|
128 |
-
$html.= '<div title="'.__('Featured Product','wcps').'" class="wcps-featured"></div>';
|
129 |
-
}
|
130 |
-
|
131 |
-
if(!empty($sale_price) && $wcps_sale_display == 'yes')
|
132 |
-
{
|
133 |
-
$html.= '<div title="'.__('Sale Product','wcps').'" class="wcps-sale"></div>';
|
134 |
-
}
|
135 |
-
|
136 |
-
$html.= '</div>';
|
137 |
-
|
138 |
-
$html.= '<div class="items-info">';
|
139 |
-
|
140 |
-
if(!empty($cat_name[0]) && $wcps_cat_display == 'yes')
|
141 |
-
{
|
142 |
-
$html.= '<div class="wcps-terms"><a href="'.$cat_link[0].'">'.$cat_name[0].'</a></div>';
|
143 |
-
}
|
144 |
-
|
145 |
-
|
146 |
-
if($wcps_items_title_display == 'yes')
|
147 |
-
{
|
148 |
-
include wcps_plugin_dir.'/templates/wcps-title.php';
|
149 |
-
}
|
150 |
-
|
151 |
-
|
152 |
-
if($wcps_items_price_display == 'yes')
|
153 |
-
{
|
154 |
-
include wcps_plugin_dir.'/templates/wcps-price.php';
|
155 |
-
}
|
156 |
-
if ( $wcps_ratings_display == 'yes' ) include wcps_plugin_dir.'/templates/wcps-ratings.php';
|
157 |
-
if($wcps_cart_display == 'yes')
|
158 |
-
{
|
159 |
-
include wcps_plugin_dir.'/templates/wcps-cart.php';
|
160 |
-
}
|
161 |
-
|
162 |
-
|
163 |
-
$html.= '</div>
|
164 |
-
</div>';
|
165 |
-
|
166 |
-
endwhile;
|
167 |
-
|
168 |
-
wp_reset_query();
|
169 |
-
|
170 |
-
else :
|
171 |
-
|
172 |
-
$html.= __('No Product to Slide','wcps');
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
endif;
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
$html.= '</div></div>';
|
181 |
-
|
182 |
-
include wcps_plugin_dir.'/templates/scripts.php';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
themes/theme6/index.php
DELETED
@@ -1,127 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/*
|
4 |
-
* @Author ParaTheme
|
5 |
-
* Copyright: 2015 ParaTheme
|
6 |
-
*/
|
7 |
-
|
8 |
-
if ( ! defined('ABSPATH')) exit; // if direct access
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
if ( $wp_query->have_posts() ) :
|
13 |
-
|
14 |
-
while ( $wp_query->have_posts() ) : $wp_query->the_post();
|
15 |
-
|
16 |
-
global $product;
|
17 |
-
|
18 |
-
$is_in_stock = $product->is_in_stock();
|
19 |
-
|
20 |
-
if ( $wcps_hide_out_of_stock=='yes' && empty($is_in_stock) ) { continue; }
|
21 |
-
|
22 |
-
$wcps_featured = get_post_meta( get_the_ID(), '_featured', true );
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
$wcps_thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $wcps_items_thumb_size );
|
28 |
-
|
29 |
-
$wcps_thumb_url = $wcps_thumb['0'];
|
30 |
-
|
31 |
-
if(empty($wcps_thumb_url))
|
32 |
-
{
|
33 |
-
$wcps_thumb_url = $wcps_items_empty_thumb;
|
34 |
-
}
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
$currency = get_woocommerce_currency_symbol();
|
39 |
-
|
40 |
-
$sale_price = get_post_meta( get_the_ID(), '_sale_price', true);
|
41 |
-
|
42 |
-
if($wcps_total_items_price_format=='full')
|
43 |
-
{
|
44 |
-
$price = $product->get_price_html();
|
45 |
-
}
|
46 |
-
elseif($wcps_total_items_price_format=='sale')
|
47 |
-
{
|
48 |
-
|
49 |
-
$price= $currency.get_post_meta( get_the_ID(), '_sale_price', true);
|
50 |
-
}
|
51 |
-
elseif($wcps_total_items_price_format=='regular')
|
52 |
-
{
|
53 |
-
|
54 |
-
$price = $currency.get_post_meta( get_the_ID(), '_regular_price', true);
|
55 |
-
|
56 |
-
}
|
57 |
-
else
|
58 |
-
{
|
59 |
-
$price = $product->get_price_html();
|
60 |
-
}
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
if($wcps_items_thumb_link_to == 'product')
|
67 |
-
{
|
68 |
-
$permalink = get_permalink();
|
69 |
-
}
|
70 |
-
else if($wcps_items_thumb_link_to == 'category')
|
71 |
-
{
|
72 |
-
|
73 |
-
if(empty($cat_link[0]))
|
74 |
-
{
|
75 |
-
$permalink = get_permalink();
|
76 |
-
}
|
77 |
-
else
|
78 |
-
{
|
79 |
-
$permalink = $cat_link[0];
|
80 |
-
}
|
81 |
-
|
82 |
-
}
|
83 |
-
else
|
84 |
-
{
|
85 |
-
$permalink = get_permalink();
|
86 |
-
}
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
$html.= '<div class="wcps-items" >';
|
92 |
-
include wcps_plugin_dir.'/templates/wcps-thumb.php';
|
93 |
-
|
94 |
-
$html.= '<div class="items-info">';
|
95 |
-
|
96 |
-
foreach($wcps_grid_items as $item_key=>$item){
|
97 |
-
|
98 |
-
if($item_key!='thumb'){
|
99 |
-
|
100 |
-
if(empty($wcps_grid_items_hide[$item_key])){
|
101 |
-
include wcps_plugin_dir.'/templates/wcps-'.$item_key.'.php';
|
102 |
-
}
|
103 |
-
|
104 |
-
}
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
}
|
109 |
-
|
110 |
-
|
111 |
-
$html.= '</div>'; // .items-info
|
112 |
-
$html.= '</div>'; // .wcps-items
|
113 |
-
|
114 |
-
endwhile;
|
115 |
-
|
116 |
-
wp_reset_query();
|
117 |
-
|
118 |
-
else :
|
119 |
-
|
120 |
-
$html.= __('No Product to Slide','wcps');
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
endif;
|
125 |
-
|
126 |
-
|
127 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
themes/theme6/style.css
DELETED
@@ -1,225 +0,0 @@
|
|
1 |
-
@charset "utf-8";
|
2 |
-
/* CSS Document */
|
3 |
-
|
4 |
-
|
5 |
-
.wcps-container .wcps-theme6 {
|
6 |
-
|
7 |
-
padding-bottom: 30px;
|
8 |
-
padding-top: 60px;
|
9 |
-
}
|
10 |
-
|
11 |
-
|
12 |
-
.wcps-container .owl-carousel .owl-item {
|
13 |
-
padding: 10px 0;
|
14 |
-
}
|
15 |
-
|
16 |
-
.wcps-container .wcps-theme6 div.wcps-items {
|
17 |
-
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
18 |
-
margin: 0 10px;
|
19 |
-
overflow: hidden;
|
20 |
-
padding: 0;
|
21 |
-
position: relative;
|
22 |
-
}
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-thumb {
|
28 |
-
|
29 |
-
overflow: hidden;
|
30 |
-
position: relative;
|
31 |
-
text-align: center;
|
32 |
-
}
|
33 |
-
|
34 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-thumb a {
|
35 |
-
color: rgb(255, 255, 255);
|
36 |
-
margin: 0;
|
37 |
-
padding: 0;
|
38 |
-
text-decoration: none;
|
39 |
-
width: 100%;
|
40 |
-
}
|
41 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-thumb img {
|
42 |
-
border-radius: 0;
|
43 |
-
box-shadow: none;
|
44 |
-
margin: 0;
|
45 |
-
padding: 0;
|
46 |
-
width: 100%;
|
47 |
-
}
|
48 |
-
|
49 |
-
|
50 |
-
.wcps-container .wcps-theme6 .items-info {
|
51 |
-
background: none repeat scroll 0 0 rgba(51, 51, 51, 0.4);
|
52 |
-
height: 100%;
|
53 |
-
padding: 0;
|
54 |
-
position: absolute;
|
55 |
-
top: 0;
|
56 |
-
transform: scale(0);
|
57 |
-
transition: all 0.4s ease 0s;
|
58 |
-
width: 100%;
|
59 |
-
}
|
60 |
-
|
61 |
-
.wcps-container .wcps-theme6 .wcps-items:hover .items-info {
|
62 |
-
|
63 |
-
transform: scale(1);
|
64 |
-
|
65 |
-
}
|
66 |
-
|
67 |
-
|
68 |
-
.wcps-container .wcps-theme6 .wcps-terms {
|
69 |
-
display: none;
|
70 |
-
padding: 2px 10px 2px 25px;
|
71 |
-
text-align: center;
|
72 |
-
}
|
73 |
-
|
74 |
-
.wcps-container .wcps-theme6 div.wcps-items-title {
|
75 |
-
font-size: 14px;
|
76 |
-
font-weight: bold;
|
77 |
-
padding: 5px 10px;
|
78 |
-
text-align: left;
|
79 |
-
vertical-align: top;
|
80 |
-
}
|
81 |
-
|
82 |
-
.wcps-container .wcps-theme6 div.wcps-items-title a {
|
83 |
-
color: rgb(255, 255, 255);
|
84 |
-
text-decoration: none;
|
85 |
-
}
|
86 |
-
|
87 |
-
.wcps-container .wcps-theme6 .wcps-items-excerpt {
|
88 |
-
color: rgb(255, 255, 255);
|
89 |
-
font-size: 14px;
|
90 |
-
padding: 10px 12px;
|
91 |
-
text-align: left;
|
92 |
-
}
|
93 |
-
|
94 |
-
.wcps-container .wcps-theme6 .wcps-items-excerpt a{
|
95 |
-
color: rgb(255, 255, 255);
|
96 |
-
|
97 |
-
}
|
98 |
-
|
99 |
-
.wcps-container .wcps-theme6 .wcps-items-category {
|
100 |
-
color: rgb(255, 255, 255);
|
101 |
-
padding: 5px 12px;
|
102 |
-
}
|
103 |
-
|
104 |
-
.wcps-container .wcps-theme6 .wcps-items-category a {
|
105 |
-
color: rgb(255, 255, 255);
|
106 |
-
text-decoration: none;
|
107 |
-
}
|
108 |
-
|
109 |
-
.wcps-container .wcps-theme6 div.wcps-items-rating {
|
110 |
-
padding: 0px 10px;
|
111 |
-
}
|
112 |
-
|
113 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-price {
|
114 |
-
display: inline-block;
|
115 |
-
margin: 5px 0;
|
116 |
-
padding: 0 10px;
|
117 |
-
text-align: left;
|
118 |
-
}
|
119 |
-
.wcps-container .wcps-theme6 div.wcps-items-price del{
|
120 |
-
|
121 |
-
}
|
122 |
-
.wcps-container .wcps-theme6 div.wcps-items-price ins {
|
123 |
-
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
124 |
-
}
|
125 |
-
|
126 |
-
.wcps-container .wcps-theme6 div.wcps-items-cart {
|
127 |
-
margin: 0 10px;
|
128 |
-
padding: 5px 0;
|
129 |
-
text-align: left;
|
130 |
-
}
|
131 |
-
|
132 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart p {
|
133 |
-
border: medium none !important;
|
134 |
-
margin: 0 !important;
|
135 |
-
padding: 0 !important;
|
136 |
-
}
|
137 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart.custom span.amount {
|
138 |
-
font-size: 15px;
|
139 |
-
line-height: 15px;
|
140 |
-
}
|
141 |
-
|
142 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart del{
|
143 |
-
|
144 |
-
}
|
145 |
-
|
146 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart del span.amount{
|
147 |
-
|
148 |
-
}
|
149 |
-
|
150 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart ins {
|
151 |
-
|
152 |
-
}
|
153 |
-
|
154 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart ins span.amount{
|
155 |
-
|
156 |
-
}
|
157 |
-
|
158 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart span.amount{
|
159 |
-
|
160 |
-
}
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart .amount,
|
166 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart del,
|
167 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart ins,
|
168 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart .woocommerce-price-suffix
|
169 |
-
{
|
170 |
-
display:none; }
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart.custom a.add_to_cart_button {
|
175 |
-
background: rgb(41, 168, 242) none repeat scroll 0 0;
|
176 |
-
border: medium none;
|
177 |
-
border-radius: 0;
|
178 |
-
box-shadow: none;
|
179 |
-
color: rgb(255, 255, 255);
|
180 |
-
font-size: 12px;
|
181 |
-
font-weight: normal;
|
182 |
-
line-height: 12px;
|
183 |
-
margin: 0;
|
184 |
-
padding: 10px 15px;
|
185 |
-
text-shadow: none;
|
186 |
-
}
|
187 |
-
|
188 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart.custom a.added_to_cart {
|
189 |
-
background: none repeat scroll 0 0 rgb(13, 225, 133);
|
190 |
-
border: medium none;
|
191 |
-
border-radius: 0;
|
192 |
-
box-shadow: none;
|
193 |
-
color: rgb(68, 68, 68);
|
194 |
-
font-size: 12px;
|
195 |
-
line-height: 12px;
|
196 |
-
margin-top: 15px;
|
197 |
-
padding: 10px 15px;
|
198 |
-
text-decoration: none;
|
199 |
-
text-shadow: none;
|
200 |
-
}
|
201 |
-
|
202 |
-
.wcps-container .wcps-theme6 div.wcps-items div.wcps-items-cart a.added {
|
203 |
-
display: none;
|
204 |
-
}
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
.wcps-container .wcps-theme6 .owl-controls .owl-buttons div.owl-prev:hover{
|
213 |
-
background-image: url("images/arrow-prev.png") ;
|
214 |
-
background-color:#d5d5d5 !important; }
|
215 |
-
|
216 |
-
|
217 |
-
.wcps-container .wcps-theme6 .owl-controls .owl-buttons div.owl-next:hover{
|
218 |
-
background-image: url("images/arrow-next.png");
|
219 |
-
background-color:#d5d5d5 !important; }
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
.wcps-container .wcps-theme6 .owl-controls {
|
224 |
-
margin-top: 30px;
|
225 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
woocommerce-products-slider.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Woocommerce Products Slider
|
4 |
-
Plugin URI: http://
|
5 |
Description: Fully responsive and mobile ready Carousel Slider for your woo-commerce product. unlimited slider anywhere via short-codes and easy admin setting.
|
6 |
-
Version: 1.12.
|
7 |
-
Author:
|
8 |
-
Author URI: http://
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
*/
|
@@ -21,23 +21,23 @@ class WoocommerceProductsSlider{
|
|
21 |
define('wcps_plugin_dir', plugin_dir_path( __FILE__ ) );
|
22 |
define('wcps_wp_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
|
23 |
define('wcps_wp_reviews', 'http://wordpress.org/support/view/plugin-reviews/woocommerce-products-slider' );
|
24 |
-
define('wcps_pro_url','http://
|
25 |
-
define('wcps_demo_url', 'http://
|
26 |
-
define('wcps_conatct_url', 'http://
|
27 |
-
define('wcps_qa_url', 'http://
|
28 |
define('wcps_plugin_name', 'Woocommerce Products Slider' );
|
29 |
-
define('wcps_plugin_version', '1.12.
|
30 |
define('wcps_customer_type', 'free' ); // pro & free
|
31 |
define('wcps_share_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
|
32 |
define('wcps_tutorial_video_url', '//www.youtube.com/embed/B0sOSp3h9fE?rel=0' );
|
33 |
-
|
34 |
-
|
35 |
-
require_once( plugin_dir_path( __FILE__ ) . 'includes/
|
36 |
-
require_once( plugin_dir_path( __FILE__ ) . 'includes/wcps-functions.php');
|
37 |
|
38 |
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-functions.php');
|
39 |
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-shortcodes.php');
|
40 |
-
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-settings.php');
|
|
|
41 |
|
42 |
|
43 |
// to work upload button
|
@@ -50,6 +50,12 @@ class WoocommerceProductsSlider{
|
|
50 |
add_action( 'admin_enqueue_scripts', array( $this, 'wcps_admin_scripts' ) );
|
51 |
|
52 |
add_action( 'plugins_loaded', array( $this, 'wcps_load_textdomain' ));
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
}
|
54 |
|
55 |
|
@@ -65,6 +71,7 @@ class WoocommerceProductsSlider{
|
|
65 |
|
66 |
public function wcps_install(){
|
67 |
|
|
|
68 |
do_action( 'wcps_action_install' );
|
69 |
|
70 |
}
|
@@ -81,7 +88,12 @@ class WoocommerceProductsSlider{
|
|
81 |
|
82 |
public function wcps_front_scripts(){
|
83 |
|
|
|
|
|
|
|
|
|
84 |
wp_enqueue_style('wcps_style', wcps_plugin_url.'assets/front/css/style.css');
|
|
|
85 |
wp_enqueue_style('font-awesome', wcps_plugin_url.'assets/global/css/font-awesome.css');
|
86 |
wp_enqueue_script('owl.carousel', plugins_url( '/assets/front/js/owl.carousel.js' , __FILE__ ) , array( 'jquery' ));
|
87 |
wp_enqueue_style('owl.carousel', wcps_plugin_url.'assets/front/css/owl.carousel.css');
|
@@ -91,8 +103,8 @@ class WoocommerceProductsSlider{
|
|
91 |
public function wcps_admin_scripts(){
|
92 |
|
93 |
wp_enqueue_script('jquery');
|
94 |
-
wp_enqueue_script('
|
95 |
-
wp_localize_script('
|
96 |
|
97 |
wp_enqueue_style('font-awesome', wcps_plugin_url.'assets/global/css/font-awesome.css');
|
98 |
wp_enqueue_style('wcps_style', wcps_plugin_url.'assets/admin/css/style.css');
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Woocommerce Products Slider
|
4 |
+
Plugin URI: http://pickplugins.com/items/woocommerce-product-slider-for-wordpress/
|
5 |
Description: Fully responsive and mobile ready Carousel Slider for your woo-commerce product. unlimited slider anywhere via short-codes and easy admin setting.
|
6 |
+
Version: 1.12.3
|
7 |
+
Author: pickplugins
|
8 |
+
Author URI: http://pickplugins.com
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
*/
|
21 |
define('wcps_plugin_dir', plugin_dir_path( __FILE__ ) );
|
22 |
define('wcps_wp_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
|
23 |
define('wcps_wp_reviews', 'http://wordpress.org/support/view/plugin-reviews/woocommerce-products-slider' );
|
24 |
+
define('wcps_pro_url','http://www.pickplugins.com/item/woocommerce-products-slider-for-wordpress/' );
|
25 |
+
define('wcps_demo_url', 'http://pickplugins.com/demo/woocommerce-products-slider/' );
|
26 |
+
define('wcps_conatct_url', 'http://pickplugins.com/contact/' );
|
27 |
+
define('wcps_qa_url', 'http://pickplugins.com/questions/' );
|
28 |
define('wcps_plugin_name', 'Woocommerce Products Slider' );
|
29 |
+
define('wcps_plugin_version', '1.12.3' );
|
30 |
define('wcps_customer_type', 'free' ); // pro & free
|
31 |
define('wcps_share_url', 'https://wordpress.org/plugins/woocommerce-products-slider/' );
|
32 |
define('wcps_tutorial_video_url', '//www.youtube.com/embed/B0sOSp3h9fE?rel=0' );
|
33 |
+
|
34 |
+
require_once( plugin_dir_path( __FILE__ ) . 'includes/meta.php');
|
35 |
+
require_once( plugin_dir_path( __FILE__ ) . 'includes/functions.php');
|
|
|
36 |
|
37 |
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-functions.php');
|
38 |
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-shortcodes.php');
|
39 |
+
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-settings.php');
|
40 |
+
require_once( plugin_dir_path( __FILE__ ) . 'includes/class-update.php');
|
41 |
|
42 |
|
43 |
// to work upload button
|
50 |
add_action( 'admin_enqueue_scripts', array( $this, 'wcps_admin_scripts' ) );
|
51 |
|
52 |
add_action( 'plugins_loaded', array( $this, 'wcps_load_textdomain' ));
|
53 |
+
|
54 |
+
|
55 |
+
register_activation_hook( __FILE__, array( $this, 'wcps_install' ) );
|
56 |
+
register_deactivation_hook( __FILE__, array( $this, 'wcps_uninstall' ) );
|
57 |
+
|
58 |
+
|
59 |
}
|
60 |
|
61 |
|
71 |
|
72 |
public function wcps_install(){
|
73 |
|
74 |
+
|
75 |
do_action( 'wcps_action_install' );
|
76 |
|
77 |
}
|
88 |
|
89 |
public function wcps_front_scripts(){
|
90 |
|
91 |
+
wp_enqueue_script('jquery');
|
92 |
+
wp_enqueue_script('wcps_js', plugins_url( '/assets/front/js/scripts.js' , __FILE__ ) , array( 'jquery' ));
|
93 |
+
wp_localize_script('wcps_js', 'wcps_ajax', array( 'wcps_ajaxurl' => admin_url( 'admin-ajax.php')));
|
94 |
+
|
95 |
wp_enqueue_style('wcps_style', wcps_plugin_url.'assets/front/css/style.css');
|
96 |
+
wp_enqueue_style('wcps_style.themes', wcps_plugin_url.'assets/global/css/style.themes.css');
|
97 |
wp_enqueue_style('font-awesome', wcps_plugin_url.'assets/global/css/font-awesome.css');
|
98 |
wp_enqueue_script('owl.carousel', plugins_url( '/assets/front/js/owl.carousel.js' , __FILE__ ) , array( 'jquery' ));
|
99 |
wp_enqueue_style('owl.carousel', wcps_plugin_url.'assets/front/css/owl.carousel.css');
|
103 |
public function wcps_admin_scripts(){
|
104 |
|
105 |
wp_enqueue_script('jquery');
|
106 |
+
wp_enqueue_script('wcps_admin_js', plugins_url( '/assets/admin/js/scripts.js' , __FILE__ ) , array( 'jquery' ));
|
107 |
+
wp_localize_script('wcps_admin_js', 'wcps_ajax', array( 'wcps_ajaxurl' => admin_url( 'admin-ajax.php')));
|
108 |
|
109 |
wp_enqueue_style('font-awesome', wcps_plugin_url.'assets/global/css/font-awesome.css');
|
110 |
wp_enqueue_style('wcps_style', wcps_plugin_url.'assets/admin/css/style.css');
|