Version Description
23/03/2022 =
Fixed: _register_controls is deprecated error
Added: Compatibility with Elementor 3.6.0
Improved: EA Advanced Tabs | Added Areal Label markup
Improved: EA Product Grid | YITH WooCommerce Wishlist support
Improved: Refactored AJAX requests for performance improvement
Fixed: EA Filterable Gallery | not working when special characters are used
Fixed: EA Woo Checkout | Shipping text not being translatable
Fixed: EA Reading Progress Bar | global color not working
Fixed: EA Event Calendar | Event Details popup not working with Jupiter X theme
Fixed: EA Gravity Forms | Title and Description alignment not working
Fixed: EA Post Timeline | Title tag, image height & text color not working
Few minor bug fixes & improvements
Download this release
Release Info
Developer | wpdevteam |
Plugin | Elementor Essential Addons |
Version | 5.0.11 |
Comparing to | |
See all releases |
Code changes from version 5.0.10 to 5.0.11
- assets/front-end/css/view/call-to-action.css +141 -1
- assets/front-end/css/view/call-to-action.min.css +1 -1
- assets/front-end/css/view/event-calendar.css +6 -0
- assets/front-end/css/view/event-calendar.min.css +1 -1
- assets/front-end/css/view/post-timeline.css +266 -2
- assets/front-end/css/view/post-timeline.min.css +1 -1
- assets/front-end/css/view/product-grid.css +559 -8
- assets/front-end/css/view/product-grid.min.css +1 -1
- assets/front-end/css/view/woo-product-gallery.css +6 -3
- assets/front-end/css/view/woo-product-gallery.min.css +1 -1
- assets/front-end/js/view/advanced-tabs.js +1 -1
- assets/front-end/js/view/advanced-tabs.min.js +1 -1
- essential_adons_elementor.php +5 -5
- includes/Classes/Bootstrap.php +9 -32
- includes/Elements/Adv_Tabs.php +17 -2
- includes/Elements/Cta_Box.php +319 -20
- includes/Elements/Filterable_Gallery.php +40 -40
- includes/Elements/GravityForms.php +2 -1
- includes/Elements/Post_Timeline.php +452 -169
- includes/Elements/Product_Grid.php +26 -0
- includes/Elements/Progress_Bar.php +1 -1
- includes/Elements/Woo_Product_Gallery.php +0 -1
- includes/Extensions/Reading_Progress.php +1 -1
- includes/Template/Eicon-Woocommerce/default.php +57 -4
- includes/Template/Post-Timeline/card.php +52 -0
- includes/Template/Post-Timeline/default.php +5 -1
- includes/Template/Woo-Product-Gallery/default.php +4 -0
- includes/Traits/Admin.php +0 -97
- includes/Traits/Ajax_Handler.php +877 -0
- includes/Traits/Elements.php +12 -9
- includes/Traits/Helper.php +2 -583
- includes/Traits/Library.php +0 -20
- languages/essential-addons-for-elementor-lite.pot +382 -354
- readme.txt +16 -1
assets/front-end/css/view/call-to-action.css
CHANGED
@@ -137,6 +137,11 @@
|
|
137 |
flex-basis: 22%;
|
138 |
}
|
139 |
|
|
|
|
|
|
|
|
|
|
|
140 |
.eael-call-to-action.cta-icon-flex .content {
|
141 |
-webkit-box-flex: 1;
|
142 |
-ms-flex-positive: 1;
|
@@ -163,6 +168,11 @@
|
|
163 |
flex-basis: 23%;
|
164 |
}
|
165 |
|
|
|
|
|
|
|
|
|
|
|
166 |
/*--- Cta Button ---*/
|
167 |
|
168 |
.eael-call-to-action .cta-button {
|
@@ -305,7 +315,7 @@
|
|
305 |
line-height: 26px;
|
306 |
}
|
307 |
|
308 |
-
.eael-call-to-action .cta-button {
|
309 |
padding: 4px 20px;
|
310 |
font-size: 12px;
|
311 |
}
|
@@ -315,3 +325,133 @@
|
|
315 |
line-height: 30px;
|
316 |
}
|
317 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
flex-basis: 22%;
|
138 |
}
|
139 |
|
140 |
+
.eael-call-to-action.cta-preset-2.cta-icon-flex .action {
|
141 |
+
-ms-flex-preferred-size: 35%;
|
142 |
+
flex-basis: 35%;
|
143 |
+
}
|
144 |
+
|
145 |
.eael-call-to-action.cta-icon-flex .content {
|
146 |
-webkit-box-flex: 1;
|
147 |
-ms-flex-positive: 1;
|
168 |
flex-basis: 23%;
|
169 |
}
|
170 |
|
171 |
+
.cta-preset-2.eael-call-to-action.cta-flex .action {
|
172 |
+
-ms-flex-preferred-size: 40%;
|
173 |
+
flex-basis: 40%;
|
174 |
+
}
|
175 |
+
|
176 |
/*--- Cta Button ---*/
|
177 |
|
178 |
.eael-call-to-action .cta-button {
|
315 |
line-height: 26px;
|
316 |
}
|
317 |
|
318 |
+
.eael-call-to-action .cta-button:not(.cta-btn-preset-2) {
|
319 |
padding: 4px 20px;
|
320 |
font-size: 12px;
|
321 |
}
|
325 |
line-height: 30px;
|
326 |
}
|
327 |
}
|
328 |
+
|
329 |
+
.eael-call-to-action.cta-preset-2 {
|
330 |
+
padding: 77px 77px 100px 85px;
|
331 |
+
border-radius: 5px;
|
332 |
+
-webkit-box-shadow: 0 25px 35px 0 rgba(0, 9, 78, 0.18);
|
333 |
+
box-shadow: 0 25px 35px 0 rgba(0, 9, 78, 0.18);
|
334 |
+
}
|
335 |
+
|
336 |
+
@media all and (max-width: 767px) {
|
337 |
+
.eael-call-to-action.cta-preset-2 {
|
338 |
+
padding: 50px;
|
339 |
+
}
|
340 |
+
}
|
341 |
+
|
342 |
+
.eael-call-to-action.cta-preset-2 .sub-title {
|
343 |
+
font-family: "Poppins", Sans-serif;
|
344 |
+
color: #fff;
|
345 |
+
font-size: 25px;
|
346 |
+
font-weight: 400;
|
347 |
+
line-height: 1.2em;
|
348 |
+
}
|
349 |
+
|
350 |
+
.eael-call-to-action.cta-preset-2 .title {
|
351 |
+
color: #FFF;
|
352 |
+
font-family: "Poppins", Sans-serif;
|
353 |
+
font-size: 35px;
|
354 |
+
font-weight: 500;
|
355 |
+
line-height: 1.2em;
|
356 |
+
}
|
357 |
+
|
358 |
+
.eael-call-to-action.cta-preset-2 p {
|
359 |
+
color: #E9DEFF;
|
360 |
+
font-family: "Poppins", Sans-serif;
|
361 |
+
font-size: 16px;
|
362 |
+
font-weight: 400;
|
363 |
+
line-height: 1.5em;
|
364 |
+
}
|
365 |
+
|
366 |
+
.eael-call-to-action.cta-preset-2 .cta-button {
|
367 |
+
color: #4D4D4D;
|
368 |
+
background: #FFF;
|
369 |
+
border-radius: 100px;
|
370 |
+
-webkit-box-shadow: 0 10px 20px 0 rgba(0, 9, 78, 0.12);
|
371 |
+
box-shadow: 0 10px 20px 0 rgba(0, 9, 78, 0.12);
|
372 |
+
font-family: "Poppins", Sans-serif;
|
373 |
+
font-size: 15px;
|
374 |
+
font-weight: 400;
|
375 |
+
line-height: 1.8em;
|
376 |
+
}
|
377 |
+
|
378 |
+
.eael-call-to-action.cta-preset-2 .cta-button.cta-secondary-button {
|
379 |
+
background: transparent;
|
380 |
+
border: 1px solid #fff;
|
381 |
+
color: #fff;
|
382 |
+
-webkit-box-shadow: none;
|
383 |
+
box-shadow: none;
|
384 |
+
}
|
385 |
+
|
386 |
+
.eael-call-to-action.cta-preset-2 .cta-button.cta-secondary-button:hover {
|
387 |
+
color: #000;
|
388 |
+
background: #fff;
|
389 |
+
}
|
390 |
+
|
391 |
+
.eael-call-to-action.cta-preset-2 .cta-button:hover {
|
392 |
+
background: #F92C8B;
|
393 |
+
color: #fff;
|
394 |
+
}
|
395 |
+
|
396 |
+
.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2 {
|
397 |
+
border-bottom-right-radius: 0;
|
398 |
+
padding-left: 70px;
|
399 |
+
}
|
400 |
+
|
401 |
+
.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2:hover .btn-icon {
|
402 |
+
background: #fff;
|
403 |
+
}
|
404 |
+
|
405 |
+
.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2:hover i {
|
406 |
+
color: #F92C8B;
|
407 |
+
}
|
408 |
+
|
409 |
+
.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2:hover svg {
|
410 |
+
fill: #F92C8B;
|
411 |
+
}
|
412 |
+
|
413 |
+
.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2 .btn-icon {
|
414 |
+
background: #F92C8B;
|
415 |
+
color: #fff;
|
416 |
+
position: absolute;
|
417 |
+
left: 0;
|
418 |
+
top: 0;
|
419 |
+
height: 100%;
|
420 |
+
width: 50px;
|
421 |
+
text-align: center;
|
422 |
+
border-radius: 50%;
|
423 |
+
font-size: 20px;
|
424 |
+
display: -webkit-box;
|
425 |
+
display: -ms-flexbox;
|
426 |
+
display: flex;
|
427 |
+
-webkit-box-pack: center;
|
428 |
+
-ms-flex-pack: center;
|
429 |
+
justify-content: center;
|
430 |
+
-webkit-box-align: center;
|
431 |
+
-ms-flex-align: center;
|
432 |
+
align-items: center;
|
433 |
+
}
|
434 |
+
|
435 |
+
.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2 svg {
|
436 |
+
fill: #fff;
|
437 |
+
}
|
438 |
+
|
439 |
+
.eael-call-to-action.cta-preset-2 .icon {
|
440 |
+
color: #fff;
|
441 |
+
}
|
442 |
+
|
443 |
+
.eael-call-to-action.cta-preset-2.cta-basic {
|
444 |
+
background-color: #8B54FF;
|
445 |
+
}
|
446 |
+
|
447 |
+
.eael-call-to-action.cta-preset-2.cta-flex {
|
448 |
+
background-color: #22CBD0;
|
449 |
+
}
|
450 |
+
|
451 |
+
.eael-call-to-action.cta-preset-2.cta-flex p {
|
452 |
+
color: #fff;
|
453 |
+
}
|
454 |
+
|
455 |
+
.eael-call-to-action.cta-preset-2.cta-icon-flex {
|
456 |
+
background-color: #8B54FF;
|
457 |
+
}
|
assets/front-end/css/view/call-to-action.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.eael-call-to-action{width:100%;height:auto;display:block;padding:30px;font-size:16px;color:#4d4d4d;font-weight:400;line-height:27px;margin:0 auto}.eael-call-to-action p{margin-bottom:10px}.eael-call-to-action .title{font-size:36px;font-weight:600;line-height:36px;margin-bottom:10px;text-transform:capitalize;font-style:normal}.elementor-widget-eael-cta-box.content-align-cta-default{text-align:left}.elementor-widget-eael-cta-box.content-align-cta-center{text-align:center}.elementor-widget-eael-cta-box.content-align-cta-right{text-align:right}@media all and (min-width: 768px)and (max-width: 1024px){.elementor-widget-eael-cta-box.content-align--tabletcta-right{text-align:right}.elementor-widget-eael-cta-box.content-align--tabletcta-center{text-align:center}.elementor-widget-eael-cta-box.content-align--tabletcta-default{text-align:left}}@media all and (max-width: 767px){.elementor-widget-eael-cta-box.content-align--mobilecta-center{text-align:center}.elementor-widget-eael-cta-box.content-align--mobilecta-right{text-align:right}.elementor-widget-eael-cta-box.content-align--mobilecta-default{text-align:left}}.eael-call-to-action.bg-lite{background:#f4f4f4}.eael-call-to-action.bg-img{background-image:url("../img/bg.jpg");background-repeat:no-repeat;background-position:center;background-size:cover;position:relative;z-index:0;color:rgba(255,255,255,.7)}.eael-call-to-action.bg-img .icon{color:#fff}.eael-cta-overlay-yes .eael-call-to-action.bg-img:after{content:"";position:absolute;width:100%;height:100%;top:0px;left:0px;z-index:-1;background:rgba(0,0,0,.8)}.eael-call-to-action.bg-img.bg-fixed{background-attachment:fixed;background-position:center center}.eael-call-to-action.bg-img .title{color:rgba(255,255,255,.9)}.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-size:80px;text-align:left;line-height:130px}.eael-call-to-action.cta-icon-flex .action{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:22px;-ms-flex-preferred-size:22%;flex-basis:22%}.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding:0px 30px}.eael-call-to-action.cta-flex .content{padding:0px 15px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.eael-call-to-action.cta-flex .action{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:25px;-ms-flex-preferred-size:23%;flex-basis:23%}.eael-call-to-action .cta-button{position:relative;display:inline-block;padding:12px 30px;background:#f9f9f9;font-size:16px;text-decoration:none;color:#4d4d4d;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;-webkit-box-shadow:0px 0px 3px -1px rgba(0,0,0,.2);-ms-box-shadow:0px 0px 3px -1px rgba(0,0,0,.2);box-shadow:0px 0px 3px -1px rgba(0,0,0,.2);margin-right:10px;margin-top:10px;z-index:0;overflow:hidden}.eael-call-to-action .cta-button:last-child{margin-right:0px}.eael-call-to-action .cta-button:focus{outline:none}.eael-call-to-action .cta-button:hover{color:#fff;background:#3f51b5;-webkit-box-shadow:0px 1px 12px 1px rgba(0,0,0,.1);-ms-box-shadow:0px 1px 12px 1px rgba(0,0,0,.1);box-shadow:0px 1px 12px 1px rgba(0,0,0,.1)}.eael-call-to-action .cta-button.effect-1:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0px;left:0px;transform:translateY(-100%);-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff}.eael-call-to-action .cta-button.effect-1:hover::after{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-call-to-action .cta-button.effect-2:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0px;left:0px;z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.eael-call-to-action .cta-button.effect-2:hover::after{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}@media only screen and (max-width: 768px){.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-call-to-action .title{font-size:28px;line-height:36px;margin-top:0px}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-size:48px;line-height:90px;text-align:center}.eael-call-to-action.cta-flex .content,.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center;padding:0px}.eael-call-to-action.cta-flex .action,.eael-call-to-action.cta-icon-flex .action{text-align:center;padding-top:0px}.eael-call-to-action .cta-button{padding:12px 25px}}@media only screen and (max-width: 360px){.eael-call-to-action{font-size:14px;line-height:26px}.eael-call-to-action .cta-button{padding:4px 20px;font-size:12px}.eael-call-to-action .title{font-size:20px;line-height:30px}}
|
1 |
+
.eael-call-to-action{width:100%;height:auto;display:block;padding:30px;font-size:16px;color:#4d4d4d;font-weight:400;line-height:27px;margin:0 auto}.eael-call-to-action p{margin-bottom:10px}.eael-call-to-action .title{font-size:36px;font-weight:600;line-height:36px;margin-bottom:10px;text-transform:capitalize;font-style:normal}.elementor-widget-eael-cta-box.content-align-cta-default{text-align:left}.elementor-widget-eael-cta-box.content-align-cta-center{text-align:center}.elementor-widget-eael-cta-box.content-align-cta-right{text-align:right}@media all and (min-width: 768px)and (max-width: 1024px){.elementor-widget-eael-cta-box.content-align--tabletcta-right{text-align:right}.elementor-widget-eael-cta-box.content-align--tabletcta-center{text-align:center}.elementor-widget-eael-cta-box.content-align--tabletcta-default{text-align:left}}@media all and (max-width: 767px){.elementor-widget-eael-cta-box.content-align--mobilecta-center{text-align:center}.elementor-widget-eael-cta-box.content-align--mobilecta-right{text-align:right}.elementor-widget-eael-cta-box.content-align--mobilecta-default{text-align:left}}.eael-call-to-action.bg-lite{background:#f4f4f4}.eael-call-to-action.bg-img{background-image:url("../img/bg.jpg");background-repeat:no-repeat;background-position:center;background-size:cover;position:relative;z-index:0;color:rgba(255,255,255,.7)}.eael-call-to-action.bg-img .icon{color:#fff}.eael-cta-overlay-yes .eael-call-to-action.bg-img:after{content:"";position:absolute;width:100%;height:100%;top:0px;left:0px;z-index:-1;background:rgba(0,0,0,.8)}.eael-call-to-action.bg-img.bg-fixed{background-attachment:fixed;background-position:center center}.eael-call-to-action.bg-img .title{color:rgba(255,255,255,.9)}.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-size:80px;text-align:left;line-height:130px}.eael-call-to-action.cta-icon-flex .action{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:22px;-ms-flex-preferred-size:22%;flex-basis:22%}.eael-call-to-action.cta-preset-2.cta-icon-flex .action{-ms-flex-preferred-size:35%;flex-basis:35%}.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding:0px 30px}.eael-call-to-action.cta-flex .content{padding:0px 15px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.eael-call-to-action.cta-flex .action{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:right;padding-top:25px;-ms-flex-preferred-size:23%;flex-basis:23%}.cta-preset-2.eael-call-to-action.cta-flex .action{-ms-flex-preferred-size:40%;flex-basis:40%}.eael-call-to-action .cta-button{position:relative;display:inline-block;padding:12px 30px;background:#f9f9f9;font-size:16px;text-decoration:none;color:#4d4d4d;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;-webkit-box-shadow:0px 0px 3px -1px rgba(0,0,0,.2);-ms-box-shadow:0px 0px 3px -1px rgba(0,0,0,.2);box-shadow:0px 0px 3px -1px rgba(0,0,0,.2);margin-right:10px;margin-top:10px;z-index:0;overflow:hidden}.eael-call-to-action .cta-button:last-child{margin-right:0px}.eael-call-to-action .cta-button:focus{outline:none}.eael-call-to-action .cta-button:hover{color:#fff;background:#3f51b5;-webkit-box-shadow:0px 1px 12px 1px rgba(0,0,0,.1);-ms-box-shadow:0px 1px 12px 1px rgba(0,0,0,.1);box-shadow:0px 1px 12px 1px rgba(0,0,0,.1)}.eael-call-to-action .cta-button.effect-1:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0px;left:0px;transform:translateY(-100%);-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff}.eael-call-to-action .cta-button.effect-1:hover::after{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-call-to-action .cta-button.effect-2:after{content:"";position:absolute;width:100%;height:100%;background:#3f51b5;top:0px;left:0px;z-index:-1;-webkit-transition:.5s;-o-transition:.5s;transition:.5s;color:#fff;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%)}.eael-call-to-action .cta-button.effect-2:hover::after{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}@media only screen and (max-width: 768px){.eael-call-to-action.cta-flex,.eael-call-to-action.cta-icon-flex{-ms-flex-wrap:wrap;flex-wrap:wrap}.eael-call-to-action .title{font-size:28px;line-height:36px;margin-top:0px}.eael-call-to-action.cta-icon-flex .icon{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-size:48px;line-height:90px;text-align:center}.eael-call-to-action.cta-flex .content,.eael-call-to-action.cta-icon-flex .content{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center;padding:0px}.eael-call-to-action.cta-flex .action,.eael-call-to-action.cta-icon-flex .action{text-align:center;padding-top:0px}.eael-call-to-action .cta-button{padding:12px 25px}}@media only screen and (max-width: 360px){.eael-call-to-action{font-size:14px;line-height:26px}.eael-call-to-action .cta-button:not(.cta-btn-preset-2){padding:4px 20px;font-size:12px}.eael-call-to-action .title{font-size:20px;line-height:30px}}.eael-call-to-action.cta-preset-2{padding:77px 77px 100px 85px;border-radius:5px;-webkit-box-shadow:0 25px 35px 0 rgba(0,9,78,.18);box-shadow:0 25px 35px 0 rgba(0,9,78,.18)}@media all and (max-width: 767px){.eael-call-to-action.cta-preset-2{padding:50px}}.eael-call-to-action.cta-preset-2 .sub-title{font-family:"Poppins",Sans-serif;color:#fff;font-size:25px;font-weight:400;line-height:1.2em}.eael-call-to-action.cta-preset-2 .title{color:#fff;font-family:"Poppins",Sans-serif;font-size:35px;font-weight:500;line-height:1.2em}.eael-call-to-action.cta-preset-2 p{color:#e9deff;font-family:"Poppins",Sans-serif;font-size:16px;font-weight:400;line-height:1.5em}.eael-call-to-action.cta-preset-2 .cta-button{color:#4d4d4d;background:#fff;border-radius:100px;-webkit-box-shadow:0 10px 20px 0 rgba(0,9,78,.12);box-shadow:0 10px 20px 0 rgba(0,9,78,.12);font-family:"Poppins",Sans-serif;font-size:15px;font-weight:400;line-height:1.8em}.eael-call-to-action.cta-preset-2 .cta-button.cta-secondary-button{background:transparent;border:1px solid #fff;color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-call-to-action.cta-preset-2 .cta-button.cta-secondary-button:hover{color:#000;background:#fff}.eael-call-to-action.cta-preset-2 .cta-button:hover{background:#f92c8b;color:#fff}.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2{border-bottom-right-radius:0;padding-left:70px}.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2:hover .btn-icon{background:#fff}.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2:hover i{color:#f92c8b}.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2:hover svg{fill:#f92c8b}.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2 .btn-icon{background:#f92c8b;color:#fff;position:absolute;left:0;top:0;height:100%;width:50px;text-align:center;border-radius:50%;font-size:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-call-to-action.cta-preset-2 .cta-button.cta-btn-preset-2 svg{fill:#fff}.eael-call-to-action.cta-preset-2 .icon{color:#fff}.eael-call-to-action.cta-preset-2.cta-basic{background-color:#8b54ff}.eael-call-to-action.cta-preset-2.cta-flex{background-color:#22cbd0}.eael-call-to-action.cta-preset-2.cta-flex p{color:#fff}.eael-call-to-action.cta-preset-2.cta-icon-flex{background-color:#8b54ff}
|
assets/front-end/css/view/event-calendar.css
CHANGED
@@ -371,6 +371,7 @@ span.fc-day-number {
|
|
371 |
-webkit-transition: all 0.3s ease-out;
|
372 |
-o-transition: all 0.3s ease-out;
|
373 |
transition: all 0.3s ease-out;
|
|
|
374 |
}
|
375 |
.eaelec-modal.eael-zoom-in .eaelec-modal-content {
|
376 |
opacity: 0;
|
@@ -399,6 +400,11 @@ span.fc-day-number {
|
|
399 |
.eaelec-modal.eael-zoom-in.eael-ec-modal-removing .eael-ec-modal-bg {
|
400 |
opacity: 0;
|
401 |
}
|
|
|
|
|
|
|
|
|
|
|
402 |
@media (min-width: 768px) and (max-width: 1024px) {
|
403 |
.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar {
|
404 |
margin-bottom: 12px;
|
371 |
-webkit-transition: all 0.3s ease-out;
|
372 |
-o-transition: all 0.3s ease-out;
|
373 |
transition: all 0.3s ease-out;
|
374 |
+
display: none;
|
375 |
}
|
376 |
.eaelec-modal.eael-zoom-in .eaelec-modal-content {
|
377 |
opacity: 0;
|
400 |
.eaelec-modal.eael-zoom-in.eael-ec-modal-removing .eael-ec-modal-bg {
|
401 |
opacity: 0;
|
402 |
}
|
403 |
+
.eaelec-modal.eael-ec-popup-ready {
|
404 |
+
display: -webkit-box;
|
405 |
+
display: -ms-flexbox;
|
406 |
+
display: flex;
|
407 |
+
}
|
408 |
@media (min-width: 768px) and (max-width: 1024px) {
|
409 |
.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar {
|
410 |
margin-bottom: 12px;
|
assets/front-end/css/view/event-calendar.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.eael-event-calendar-wrapper{font-family:Segoe UI}.eael-event-calendar-wrapper .fc-row table{margin:0px !important}.eael-event-calendar-wrapper .fc table{margin:auto;overflow:auto}.eael-event-calendar-wrapper .fc-view table thead:first-child tr:first-child td{border-top:1px solid #ddd !important;border-bottom:none !important}.eael-event-calendar-wrapper .fc-day-grid-event{margin-top:2px;padding:8px;font-size:12px;border-left-width:5px}.eael-event-calendar-wrapper .fc-day.fc-today{background:transparent}.eael-event-calendar-wrapper .fc-day-top.fc-today .fc-day-number{font-weight:bold}.eael-event-calendar-wrapper .fc-row table thead:first-child tr:first-child th{font-size:14px}.eael-event-calendar-wrapper .fc-day-number{font-size:14px;float:center !important}.eael-event-calendar-wrapper .eaelec-modal{position:fixed;left:0;top:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:-1}.eael-event-calendar-wrapper .eaelec-modal .eael-ec-modal-bg{position:absolute;left:0;top:0;height:100%;width:100%;background:#000;opacity:0;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.eael-event-calendar-wrapper .eaelec-modal.eael-ec-popup-ready{z-index:99999;opacity:1}.eael-event-calendar-wrapper .eaelec-modal-content{position:relative;margin:auto;border:1px solid #888;max-width:900px;-webkit-box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);background-color:#fefefe;padding:20px 0;width:100%;border-radius:10px}.eael-event-calendar-wrapper .eaelec-modal-header{padding:0px 30px;color:#fff;border-color:#090;overflow:auto;margin-top:8px}.eael-event-calendar-wrapper .eaelec-modal-header h2{color:#242424;margin:0;padding:0}.eael-event-calendar-wrapper .eaelec-modal-header .eaelec-event-popup-date{color:#555;padding-top:2px;display:inline-block;text-transform:capitalize}.eael-event-calendar-wrapper .eaelec-modal-header .eaelec-event-popup-date i{color:#5725ff}.eael-event-calendar-wrapper .eaelec-modal-close{position:absolute;right:-15px;top:-18px;font-size:24px;z-index:9999;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;overflow:visible;border:2px solid #fff;background:#fff;text-align:center;-webkit-box-shadow:2px 0px 12px 3px rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:2px 0px 12px 3px rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);color:#000 !important;height:40px;width:40px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%}.eael-event-calendar-wrapper .eaelec-modal-close>span{font-size:20px}.eael-event-calendar-wrapper .eaelec-modal-close:hover,.eael-event-calendar-wrapper .eaelec-modal-close:focus{color:#fff;text-decoration:none;cursor:pointer}.eael-event-calendar-wrapper .eaelec-modal-body{padding:0 10px 0 35px;margin:10px 0;color:#555;height:300px;overflow-y:auto;word-break:break-word}.eael-event-calendar-wrapper .eaelec-modal-body::-webkit-scrollbar{width:6px}.eael-event-calendar-wrapper .eaelec-modal-body::-webkit-scrollbar-thumb{background:#aaa;border-radius:10px}.eael-event-calendar-wrapper .eaelec-modal-footer{padding:0px 10px 0 35px;color:#fff;border:0px solid red}.eael-event-calendar-wrapper .eaelec-event-date-start,.eael-event-calendar-wrapper .eaelec-event-date-end{font-size:15px}@media(max-width: 575px){.eael-event-calendar-wrapper .fc-toolbar{margin:0 !important;padding:0 !important}.eael-event-calendar-wrapper .fc-toolbar .fc-center{width:100% !important;margin:0 !important;padding:0 !important}.eael-event-calendar-wrapper .fc-toolbar h2{font-size:16px !important;width:100% !important;text-align:center !important;padding:5px !important}.eael-event-calendar-wrapper .fc-ltr .fc-axis{font-size:12px !important}.eael-event-calendar-wrapper .fc-row table thead:first-child tr:first-child th{font-weight:normal !important;font-size:12px !important;padding:5px !important}}.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar .fc-center h2{font-size:22px}.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar .fc-left .fc-button .fc-icon{font-size:13px}.eael-event-calendar-wrapper .eael-event-completed{text-decoration:line-through}.fc-toolbar.fc-header-toolbar .fc-button-group button:not(:first-child){margin-left:5px}.fc-toolbar.fc-header-toolbar button.fc-timeGridWeek-button,.fc-toolbar.fc-header-toolbar button.fc-timeGridDay-button,.fc-toolbar.fc-header-toolbar button.fc-listWeek-button,.fc-toolbar.fc-header-toolbar button.fc-listMonth-button,.fc-toolbar.fc-header-toolbar button.fc-dayGridMonth-button{position:relative}.fc-toolbar.fc-header-toolbar button.fc-timeGridWeek-button:before,.fc-toolbar.fc-header-toolbar button.fc-timeGridDay-button:before,.fc-toolbar.fc-header-toolbar button.fc-listWeek-button:before,.fc-toolbar.fc-header-toolbar button.fc-listMonth-button:before,.fc-toolbar.fc-header-toolbar button.fc-dayGridMonth-button:before{font-family:"Font Awesome 5 Free";font-weight:900;font-size:13px;display:inline-block;padding-right:5px;padding-left:0;-webkit-font-smoothing:antialiased}.fc-toolbar.fc-header-toolbar button.fc-timeGridWeek-button:before{content:"";left:8px}.fc-toolbar.fc-header-toolbar button.fc-timeGridDay-button:before{content:"";left:21px}.fc-toolbar.fc-header-toolbar button.fc-dayGridMonth-button:before{content:""}.fc-toolbar.fc-header-toolbar button.fc-listWeek-button:before,.fc-toolbar.fc-header-toolbar button.fc-listMonth-button:before{content:""}.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary{-webkit-box-shadow:none;box-shadow:none;height:auto;width:auto;float:none;font-size:13px;font-weight:400;color:#5e5e5e;border-radius:3px;text-transform:capitalize;background:#f7f7fb;text-shadow:none;line-height:19px;padding:8px 12px;border:none}.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary.fc-state-active,.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary:hover,.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary:visited,.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary:focus{background:#5725ff;color:#fff;-webkit-box-shadow:none;box-shadow:none}.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary.fc-button-active{background:#5725ff;color:#fff}th.fc-widget-header>span{padding:14px;display:block;font-size:16px;color:#424344}span.fc-day-number{padding:17px;display:block}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:12px 2px 2px 2px;display:block;border-bottom:0px solid}.eael-event-calendar-wrapper .fc-view .fc-body thead:first-child tr:first-child td{border-bottom:3px solid transparent}.eael-event-calendar-wrapper .fc-view table thead:first-child tr:first-child td{border-top:1px solid #dfdfe9}.fc-unthemed .fc-timeGridDay-view .fc-event,.fc-unthemed .fc-timeGridWeek-view .fc-event{border-left:1px solid;border-color:#4d4d4d !important}.fc-unthemed .fc-timeGridDay-view .fc-event .fc-time,.fc-unthemed .fc-timeGridWeek-view .fc-event .fc-time{padding-left:3px}.fc-unthemed .fc-timeGridDay-view .fc-bg table tbody tr>td,.fc-unthemed .fc-timeGridWeek-view .fc-bg table tbody tr>td{padding-left:1px}.fc-unthemed .fc-timeGridDay-view .fc-time-grid .fc-event .fc-content,.fc-unthemed .fc-timeGridWeek-view .fc-time-grid .fc-event .fc-content{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end}.fc-unthemed .fc-timeGridWeek-view .fc-time-grid .fc-event .fc-content{display:inherit}.fc-unthemed .fc-listWeek-view .fc-list-table tr.fc-list-item,.fc-unthemed .fc-listMonth-view .fc-list-table tr.fc-list-item{cursor:pointer}.fc-unthemed .fc-listWeek-view .fc-list-table tr td,.fc-unthemed .fc-listMonth-view .fc-list-table tr td{padding-bottom:10px;padding-top:10px}.fc-unthemed .fc-dayGridMonth-view .fc-day-grid-event .fc-time{font-weight:400}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#dfdfe9}.fc-unthemed a.fc-day-grid-event,.fc-unthemed .fc-event{color:#707070;font-size:14px;background:#fff;border-radius:5px;font-weight:400;margin:1px;border:none}.fc-unthemed a.fc-day-grid-event .fc-day-grid-event .fc-time,.fc-unthemed .fc-event .fc-day-grid-event .fc-time{font-weight:normal}.fc-unthemed .fc-time-grid .fc-event{min-height:20px}.fc-unthemed .fc-time-grid .fc-event .fc-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;width:100%}.fc-unthemed .fc-time-grid .fc-event .fc-content .fc-title{white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.fc-unthemed .fc-event:hover{color:#707070}.eaelec-modal.eael-zoom-in{opacity:0;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.eaelec-modal.eael-zoom-in .eaelec-modal-content{opacity:0;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5)}.eaelec-modal.eael-zoom-in.eael-ec-popup-ready .eael-ec-modal-bg{opacity:.7}.eaelec-modal.eael-zoom-in.eael-ec-popup-ready .eaelec-modal-content{opacity:1;-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}.eaelec-modal.eael-zoom-in.eael-ec-modal-removing .eaelec-modal-content{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);opacity:0}.eaelec-modal.eael-zoom-in.eael-ec-modal-removing .eael-ec-modal-bg{opacity:0}@media(min-width: 768px)and (max-width: 1024px){.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar{margin-bottom:12px}.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar .fc-center h2{font-size:22px}.eael-event-calendar-wrapper .fc-right .fc-button-group .fc-button.fc-button-primary:before{font-size:15px}.eael-event-calendar-wrapper .fc-timeGridWeek-view a .fc-content{display:inherit !important}.eael-event-calendar-wrapper .fc-day-header.fc-widget-header span{font-size:15px}.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar .fc-button-group button:not(:first-child){margin-left:5px}.eael-event-calendar-wrapper .eaelec-modal-body{height:200px}}@media only screen and (max-width: 767px){.eael-event-calendar-wrapper .fc-dayGridMonth-view .fc-day-grid-event{padding:8px 0px 8px 0px !important}.eael-event-calendar-wrapper .fc-dayGridMonth-view .fc-day-grid-event .fc-content{font-size:12px}.fc-right,.fc-left{width:100%;text-align:center}.fc-left{text-align:center}.fc-right{margin-bottom:10px}.fc-right .fc-button-group .fc-button.fc-button-primary{font-size:11px}.fc-right .fc-button-group .fc-button.fc-button-primary:before{font-size:11px;padding-left:0}.fc-center{text-align:center}.fc-toolbar.fc-header-toolbar{display:inline-block;width:100%}.fc-toolbar.fc-header-toolbar .fc-button-group button.fc-button.fc-button-primary{margin-left:5px;font-size:12px}th.fc-widget-header>span{padding:0;font-size:14px}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:0;margin:0;font-size:10px}.fc-basic-view .fc-body .fc-row{min-height:2em}.eael-event-calendar-wrapper .eaelec-modal-body{height:100px}}
|
1 |
+
.eael-event-calendar-wrapper{font-family:Segoe UI}.eael-event-calendar-wrapper .fc-row table{margin:0px !important}.eael-event-calendar-wrapper .fc table{margin:auto;overflow:auto}.eael-event-calendar-wrapper .fc-view table thead:first-child tr:first-child td{border-top:1px solid #ddd !important;border-bottom:none !important}.eael-event-calendar-wrapper .fc-day-grid-event{margin-top:2px;padding:8px;font-size:12px;border-left-width:5px}.eael-event-calendar-wrapper .fc-day.fc-today{background:transparent}.eael-event-calendar-wrapper .fc-day-top.fc-today .fc-day-number{font-weight:bold}.eael-event-calendar-wrapper .fc-row table thead:first-child tr:first-child th{font-size:14px}.eael-event-calendar-wrapper .fc-day-number{font-size:14px;float:center !important}.eael-event-calendar-wrapper .eaelec-modal{position:fixed;left:0;top:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:-1}.eael-event-calendar-wrapper .eaelec-modal .eael-ec-modal-bg{position:absolute;left:0;top:0;height:100%;width:100%;background:#000;opacity:0;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.eael-event-calendar-wrapper .eaelec-modal.eael-ec-popup-ready{z-index:99999;opacity:1}.eael-event-calendar-wrapper .eaelec-modal-content{position:relative;margin:auto;border:1px solid #888;max-width:900px;-webkit-box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);background-color:#fefefe;padding:20px 0;width:100%;border-radius:10px}.eael-event-calendar-wrapper .eaelec-modal-header{padding:0px 30px;color:#fff;border-color:#090;overflow:auto;margin-top:8px}.eael-event-calendar-wrapper .eaelec-modal-header h2{color:#242424;margin:0;padding:0}.eael-event-calendar-wrapper .eaelec-modal-header .eaelec-event-popup-date{color:#555;padding-top:2px;display:inline-block;text-transform:capitalize}.eael-event-calendar-wrapper .eaelec-modal-header .eaelec-event-popup-date i{color:#5725ff}.eael-event-calendar-wrapper .eaelec-modal-close{position:absolute;right:-15px;top:-18px;font-size:24px;z-index:9999;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;overflow:visible;border:2px solid #fff;background:#fff;text-align:center;-webkit-box-shadow:2px 0px 12px 3px rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);box-shadow:2px 0px 12px 3px rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);color:#000 !important;height:40px;width:40px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%}.eael-event-calendar-wrapper .eaelec-modal-close>span{font-size:20px}.eael-event-calendar-wrapper .eaelec-modal-close:hover,.eael-event-calendar-wrapper .eaelec-modal-close:focus{color:#fff;text-decoration:none;cursor:pointer}.eael-event-calendar-wrapper .eaelec-modal-body{padding:0 10px 0 35px;margin:10px 0;color:#555;height:300px;overflow-y:auto;word-break:break-word}.eael-event-calendar-wrapper .eaelec-modal-body::-webkit-scrollbar{width:6px}.eael-event-calendar-wrapper .eaelec-modal-body::-webkit-scrollbar-thumb{background:#aaa;border-radius:10px}.eael-event-calendar-wrapper .eaelec-modal-footer{padding:0px 10px 0 35px;color:#fff;border:0px solid red}.eael-event-calendar-wrapper .eaelec-event-date-start,.eael-event-calendar-wrapper .eaelec-event-date-end{font-size:15px}@media(max-width: 575px){.eael-event-calendar-wrapper .fc-toolbar{margin:0 !important;padding:0 !important}.eael-event-calendar-wrapper .fc-toolbar .fc-center{width:100% !important;margin:0 !important;padding:0 !important}.eael-event-calendar-wrapper .fc-toolbar h2{font-size:16px !important;width:100% !important;text-align:center !important;padding:5px !important}.eael-event-calendar-wrapper .fc-ltr .fc-axis{font-size:12px !important}.eael-event-calendar-wrapper .fc-row table thead:first-child tr:first-child th{font-weight:normal !important;font-size:12px !important;padding:5px !important}}.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar .fc-center h2{font-size:22px}.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar .fc-left .fc-button .fc-icon{font-size:13px}.eael-event-calendar-wrapper .eael-event-completed{text-decoration:line-through}.fc-toolbar.fc-header-toolbar .fc-button-group button:not(:first-child){margin-left:5px}.fc-toolbar.fc-header-toolbar button.fc-timeGridWeek-button,.fc-toolbar.fc-header-toolbar button.fc-timeGridDay-button,.fc-toolbar.fc-header-toolbar button.fc-listWeek-button,.fc-toolbar.fc-header-toolbar button.fc-listMonth-button,.fc-toolbar.fc-header-toolbar button.fc-dayGridMonth-button{position:relative}.fc-toolbar.fc-header-toolbar button.fc-timeGridWeek-button:before,.fc-toolbar.fc-header-toolbar button.fc-timeGridDay-button:before,.fc-toolbar.fc-header-toolbar button.fc-listWeek-button:before,.fc-toolbar.fc-header-toolbar button.fc-listMonth-button:before,.fc-toolbar.fc-header-toolbar button.fc-dayGridMonth-button:before{font-family:"Font Awesome 5 Free";font-weight:900;font-size:13px;display:inline-block;padding-right:5px;padding-left:0;-webkit-font-smoothing:antialiased}.fc-toolbar.fc-header-toolbar button.fc-timeGridWeek-button:before{content:"";left:8px}.fc-toolbar.fc-header-toolbar button.fc-timeGridDay-button:before{content:"";left:21px}.fc-toolbar.fc-header-toolbar button.fc-dayGridMonth-button:before{content:""}.fc-toolbar.fc-header-toolbar button.fc-listWeek-button:before,.fc-toolbar.fc-header-toolbar button.fc-listMonth-button:before{content:""}.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary{-webkit-box-shadow:none;box-shadow:none;height:auto;width:auto;float:none;font-size:13px;font-weight:400;color:#5e5e5e;border-radius:3px;text-transform:capitalize;background:#f7f7fb;text-shadow:none;line-height:19px;padding:8px 12px;border:none}.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary.fc-state-active,.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary:hover,.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary:visited,.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary:focus{background:#5725ff;color:#fff;-webkit-box-shadow:none;box-shadow:none}.fc-toolbar.fc-header-toolbar button.fc-button.fc-button-primary.fc-button-active{background:#5725ff;color:#fff}th.fc-widget-header>span{padding:14px;display:block;font-size:16px;color:#424344}span.fc-day-number{padding:17px;display:block}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:12px 2px 2px 2px;display:block;border-bottom:0px solid}.eael-event-calendar-wrapper .fc-view .fc-body thead:first-child tr:first-child td{border-bottom:3px solid transparent}.eael-event-calendar-wrapper .fc-view table thead:first-child tr:first-child td{border-top:1px solid #dfdfe9}.fc-unthemed .fc-timeGridDay-view .fc-event,.fc-unthemed .fc-timeGridWeek-view .fc-event{border-left:1px solid;border-color:#4d4d4d !important}.fc-unthemed .fc-timeGridDay-view .fc-event .fc-time,.fc-unthemed .fc-timeGridWeek-view .fc-event .fc-time{padding-left:3px}.fc-unthemed .fc-timeGridDay-view .fc-bg table tbody tr>td,.fc-unthemed .fc-timeGridWeek-view .fc-bg table tbody tr>td{padding-left:1px}.fc-unthemed .fc-timeGridDay-view .fc-time-grid .fc-event .fc-content,.fc-unthemed .fc-timeGridWeek-view .fc-time-grid .fc-event .fc-content{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end}.fc-unthemed .fc-timeGridWeek-view .fc-time-grid .fc-event .fc-content{display:inherit}.fc-unthemed .fc-listWeek-view .fc-list-table tr.fc-list-item,.fc-unthemed .fc-listMonth-view .fc-list-table tr.fc-list-item{cursor:pointer}.fc-unthemed .fc-listWeek-view .fc-list-table tr td,.fc-unthemed .fc-listMonth-view .fc-list-table tr td{padding-bottom:10px;padding-top:10px}.fc-unthemed .fc-dayGridMonth-view .fc-day-grid-event .fc-time{font-weight:400}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#dfdfe9}.fc-unthemed a.fc-day-grid-event,.fc-unthemed .fc-event{color:#707070;font-size:14px;background:#fff;border-radius:5px;font-weight:400;margin:1px;border:none}.fc-unthemed a.fc-day-grid-event .fc-day-grid-event .fc-time,.fc-unthemed .fc-event .fc-day-grid-event .fc-time{font-weight:normal}.fc-unthemed .fc-time-grid .fc-event{min-height:20px}.fc-unthemed .fc-time-grid .fc-event .fc-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%;width:100%}.fc-unthemed .fc-time-grid .fc-event .fc-content .fc-title{white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.fc-unthemed .fc-event:hover{color:#707070}.eaelec-modal.eael-zoom-in{opacity:0;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out;display:none}.eaelec-modal.eael-zoom-in .eaelec-modal-content{opacity:0;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5)}.eaelec-modal.eael-zoom-in.eael-ec-popup-ready .eael-ec-modal-bg{opacity:.7}.eaelec-modal.eael-zoom-in.eael-ec-popup-ready .eaelec-modal-content{opacity:1;-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}.eaelec-modal.eael-zoom-in.eael-ec-modal-removing .eaelec-modal-content{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);opacity:0}.eaelec-modal.eael-zoom-in.eael-ec-modal-removing .eael-ec-modal-bg{opacity:0}.eaelec-modal.eael-ec-popup-ready{display:-webkit-box;display:-ms-flexbox;display:flex}@media(min-width: 768px)and (max-width: 1024px){.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar{margin-bottom:12px}.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar .fc-center h2{font-size:22px}.eael-event-calendar-wrapper .fc-right .fc-button-group .fc-button.fc-button-primary:before{font-size:15px}.eael-event-calendar-wrapper .fc-timeGridWeek-view a .fc-content{display:inherit !important}.eael-event-calendar-wrapper .fc-day-header.fc-widget-header span{font-size:15px}.eael-event-calendar-wrapper .fc-toolbar.fc-header-toolbar .fc-button-group button:not(:first-child){margin-left:5px}.eael-event-calendar-wrapper .eaelec-modal-body{height:200px}}@media only screen and (max-width: 767px){.eael-event-calendar-wrapper .fc-dayGridMonth-view .fc-day-grid-event{padding:8px 0px 8px 0px !important}.eael-event-calendar-wrapper .fc-dayGridMonth-view .fc-day-grid-event .fc-content{font-size:12px}.fc-right,.fc-left{width:100%;text-align:center}.fc-left{text-align:center}.fc-right{margin-bottom:10px}.fc-right .fc-button-group .fc-button.fc-button-primary{font-size:11px}.fc-right .fc-button-group .fc-button.fc-button-primary:before{font-size:11px;padding-left:0}.fc-center{text-align:center}.fc-toolbar.fc-header-toolbar{display:inline-block;width:100%}.fc-toolbar.fc-header-toolbar .fc-button-group button.fc-button.fc-button-primary{margin-left:5px;font-size:12px}th.fc-widget-header>span{padding:0;font-size:14px}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:0;margin:0;font-size:10px}.fc-basic-view .fc-body .fc-row{min-height:2em}.eael-event-calendar-wrapper .eaelec-modal-body{height:100px}}
|
assets/front-end/css/view/post-timeline.css
CHANGED
@@ -132,7 +132,7 @@
|
|
132 |
width: 100%;
|
133 |
}
|
134 |
|
135 |
-
.eael-timeline-post-title
|
136 |
color: #fff;
|
137 |
font-size: 20px;
|
138 |
font-weight: bold;
|
@@ -141,6 +141,8 @@
|
|
141 |
padding: 0 25px;
|
142 |
text-align: left;
|
143 |
text-transform: uppercase;
|
|
|
|
|
144 |
}
|
145 |
|
146 |
.eael-timeline-post-excerpt {
|
@@ -283,7 +285,7 @@
|
|
283 |
bottom: 50px;
|
284 |
}
|
285 |
|
286 |
-
.eael-timeline-post-title
|
287 |
font-size: 0.8em;
|
288 |
line-height: 1.2em;
|
289 |
}
|
@@ -358,3 +360,265 @@
|
|
358 |
.rtl .eael-timeline-post {
|
359 |
direction: ltr;
|
360 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
width: 100%;
|
133 |
}
|
134 |
|
135 |
+
.eael-timeline-post-title * {
|
136 |
color: #fff;
|
137 |
font-size: 20px;
|
138 |
font-weight: bold;
|
141 |
padding: 0 25px;
|
142 |
text-align: left;
|
143 |
text-transform: uppercase;
|
144 |
+
margin-bottom: 15px;
|
145 |
+
display: block;
|
146 |
}
|
147 |
|
148 |
.eael-timeline-post-excerpt {
|
285 |
bottom: 50px;
|
286 |
}
|
287 |
|
288 |
+
.eael-timeline-post-title * {
|
289 |
font-size: 0.8em;
|
290 |
line-height: 1.2em;
|
291 |
}
|
360 |
.rtl .eael-timeline-post {
|
361 |
direction: ltr;
|
362 |
}
|
363 |
+
|
364 |
+
.eael-post-timeline.timeline-layout-card {
|
365 |
+
margin: -20px;
|
366 |
+
overflow: unset;
|
367 |
+
}
|
368 |
+
|
369 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post {
|
370 |
+
width: 100%;
|
371 |
+
padding: 20px;
|
372 |
+
}
|
373 |
+
|
374 |
+
@media only screen and (min-width: 992px) {
|
375 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(odd) .eael-timeline-post-inner::after {
|
376 |
+
border-right: none;
|
377 |
+
left: auto !important;
|
378 |
+
}
|
379 |
+
}
|
380 |
+
|
381 |
+
@media only screen and (max-width: 992px) {
|
382 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post {
|
383 |
+
width: 100% !important;
|
384 |
+
margin: 0;
|
385 |
+
}
|
386 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-bullet, .eael-post-timeline.timeline-layout-card .eael-timeline-post:after, .eael-post-timeline.timeline-layout-card .eael-timeline-post:before,
|
387 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-post-inner:after {
|
388 |
+
display: block;
|
389 |
+
}
|
390 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:after {
|
391 |
+
left: 7% !important;
|
392 |
+
-webkit-transform: translateX(-7%) !important;
|
393 |
+
-ms-transform: translateX(-7%) !important;
|
394 |
+
transform: translateX(-7%) !important;
|
395 |
+
}
|
396 |
+
}
|
397 |
+
|
398 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:last-child::after {
|
399 |
+
display: none !important;
|
400 |
+
}
|
401 |
+
|
402 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:after {
|
403 |
+
left: 50%;
|
404 |
+
-webkit-transform: translateX(-50%);
|
405 |
+
-ms-transform: translateX(-50%);
|
406 |
+
transform: translateX(-50%);
|
407 |
+
right: auto;
|
408 |
+
top: 40px;
|
409 |
+
}
|
410 |
+
|
411 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-bullet {
|
412 |
+
left: 50%;
|
413 |
+
-webkit-transform: translateX(-50%);
|
414 |
+
-ms-transform: translateX(-50%);
|
415 |
+
transform: translateX(-50%);
|
416 |
+
right: auto;
|
417 |
+
top: 40px;
|
418 |
+
}
|
419 |
+
|
420 |
+
@media only screen and (max-width: 992px) {
|
421 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-bullet {
|
422 |
+
left: 7%;
|
423 |
+
-webkit-transform: translateX(-50%);
|
424 |
+
-ms-transform: translateX(-50%);
|
425 |
+
transform: translateX(-50%);
|
426 |
+
}
|
427 |
+
}
|
428 |
+
|
429 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-last-child(2)::after {
|
430 |
+
height: 100%;
|
431 |
+
}
|
432 |
+
|
433 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n):after {
|
434 |
+
display: block;
|
435 |
+
}
|
436 |
+
|
437 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after {
|
438 |
+
top: 15px;
|
439 |
+
left: -12px;
|
440 |
+
border-left: none;
|
441 |
+
}
|
442 |
+
|
443 |
+
@media only screen and (min-width: 992px) {
|
444 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner {
|
445 |
+
float: right;
|
446 |
+
}
|
447 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n) time {
|
448 |
+
left: auto;
|
449 |
+
right: calc(100% + 85px);
|
450 |
+
text-align: right;
|
451 |
+
font-size: 1em;
|
452 |
+
}
|
453 |
+
}
|
454 |
+
|
455 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-clear {
|
456 |
+
clear: right;
|
457 |
+
}
|
458 |
+
|
459 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner {
|
460 |
+
width: 46%;
|
461 |
+
height: auto;
|
462 |
+
float: none;
|
463 |
+
margin: 0;
|
464 |
+
background: #2315ab;
|
465 |
+
border: none;
|
466 |
+
-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
|
467 |
+
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
|
468 |
+
}
|
469 |
+
|
470 |
+
@media only screen and (max-width: 992px) {
|
471 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner {
|
472 |
+
width: 90%;
|
473 |
+
float: right;
|
474 |
+
padding-bottom: 0;
|
475 |
+
}
|
476 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner:after {
|
477 |
+
display: block;
|
478 |
+
top: 15px;
|
479 |
+
left: -12px;
|
480 |
+
border-left: none;
|
481 |
+
}
|
482 |
+
}
|
483 |
+
|
484 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner:hover .eael-timeline-post-excerpt {
|
485 |
+
top: 0;
|
486 |
+
}
|
487 |
+
|
488 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner:after {
|
489 |
+
top: 15px;
|
490 |
+
right: -12px;
|
491 |
+
border-left-color: #2315ab;
|
492 |
+
border-right-color: #2315ab;
|
493 |
+
border-width: 12px;
|
494 |
+
}
|
495 |
+
|
496 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-image {
|
497 |
+
opacity: 1;
|
498 |
+
height: 200px;
|
499 |
+
background-repeat: no-repeat;
|
500 |
+
background-size: cover;
|
501 |
+
background-position: center center;
|
502 |
+
}
|
503 |
+
|
504 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-content {
|
505 |
+
padding: 30px;
|
506 |
+
}
|
507 |
+
|
508 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-title {
|
509 |
+
bottom: 0;
|
510 |
+
}
|
511 |
+
|
512 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-title * {
|
513 |
+
margin-top: 0;
|
514 |
+
padding: 0;
|
515 |
+
}
|
516 |
+
|
517 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-excerpt p {
|
518 |
+
padding: 0;
|
519 |
+
margin-top: 0;
|
520 |
+
}
|
521 |
+
|
522 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-excerpt,
|
523 |
+
.eael-post-timeline.timeline-layout-card .eael-timeline-post-title {
|
524 |
+
position: relative;
|
525 |
+
opacity: 1 !important;
|
526 |
+
}
|
527 |
+
|
528 |
+
.eael-post-timeline.timeline-layout-card time {
|
529 |
+
position: absolute;
|
530 |
+
left: calc(100% + 85px);
|
531 |
+
top: 10px;
|
532 |
+
font-size: 1em;
|
533 |
+
padding: 5px 10px;
|
534 |
+
text-align: left;
|
535 |
+
opacity: 1;
|
536 |
+
height: auto;
|
537 |
+
width: -webkit-max-content;
|
538 |
+
width: -moz-max-content;
|
539 |
+
width: max-content;
|
540 |
+
border-radius: 5px;
|
541 |
+
}
|
542 |
+
|
543 |
+
.eael-post-timeline.timeline-layout-card time:before {
|
544 |
+
content: none;
|
545 |
+
}
|
546 |
+
|
547 |
+
@media only screen and (max-width: 992px) {
|
548 |
+
.eael-post-timeline.timeline-layout-card time {
|
549 |
+
position: relative;
|
550 |
+
left: 0;
|
551 |
+
top: 0;
|
552 |
+
margin: 20px;
|
553 |
+
display: inline-block;
|
554 |
+
font-size: 12px;
|
555 |
+
padding: 2px 10px;
|
556 |
+
}
|
557 |
+
}
|
558 |
+
|
559 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post-inner:after,
|
560 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after {
|
561 |
+
top: 50%;
|
562 |
+
-webkit-transform: translateY(-50%);
|
563 |
+
-ms-transform: translateY(-50%);
|
564 |
+
transform: translateY(-50%);
|
565 |
+
}
|
566 |
+
|
567 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post .eael-timeline-bullet {
|
568 |
+
top: 50%;
|
569 |
+
-webkit-transform: translate(-50%, -50%);
|
570 |
+
-ms-transform: translate(-50%, -50%);
|
571 |
+
transform: translate(-50%, -50%);
|
572 |
+
}
|
573 |
+
|
574 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post:after {
|
575 |
+
top: 0;
|
576 |
+
}
|
577 |
+
|
578 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post:first-child:after {
|
579 |
+
top: 50%;
|
580 |
+
height: 50%;
|
581 |
+
}
|
582 |
+
|
583 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post:last-child:after {
|
584 |
+
display: block !important;
|
585 |
+
height: 50%;
|
586 |
+
}
|
587 |
+
|
588 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle time {
|
589 |
+
top: 50%;
|
590 |
+
-webkit-transform: translateY(-50%);
|
591 |
+
-ms-transform: translateY(-50%);
|
592 |
+
transform: translateY(-50%);
|
593 |
+
}
|
594 |
+
|
595 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post-inner:after,
|
596 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after {
|
597 |
+
top: auto;
|
598 |
+
bottom: 20px;
|
599 |
+
}
|
600 |
+
|
601 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post .eael-timeline-bullet {
|
602 |
+
top: auto;
|
603 |
+
bottom: 40px;
|
604 |
+
}
|
605 |
+
|
606 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post:after {
|
607 |
+
top: 0;
|
608 |
+
}
|
609 |
+
|
610 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post:first-child:after {
|
611 |
+
height: 40px;
|
612 |
+
top: auto;
|
613 |
+
bottom: 0;
|
614 |
+
}
|
615 |
+
|
616 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post:last-child:after {
|
617 |
+
display: block !important;
|
618 |
+
height: calc(100% - 40px);
|
619 |
+
}
|
620 |
+
|
621 |
+
.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom time {
|
622 |
+
bottom: 10px;
|
623 |
+
top: auto;
|
624 |
+
}
|
assets/front-end/css/view/post-timeline.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.eael-post-timeline{margin-bottom:0;min-height:100%;overflow:hidden;position:relative}.eael-timeline-column{width:50%;margin-left:0;float:left;margin-top:0 !important}.eael-timeline-post{position:relative}.eael-timeline-post:after{background-color:rgba(83,85,86,.2);content:"";width:2px;height:245px;position:absolute;right:0;top:70px}.eael-timeline-post:nth-child(2n):after{display:none}.eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;border-radius:50%;-webkit-box-shadow:0 1px 0 1px rgba(0,0,0,.1);box-shadow:0 1px 0 1px rgba(0,0,0,.1);content:"";height:20px;position:absolute;right:-9px;top:60px;width:20px;z-index:3;cursor:pointer}.eael-timeline-post:nth-child(2n) .eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;border-radius:50%;bottom:36px;content:"";height:20px;left:-11px;position:absolute;top:300px;width:20px;z-index:3}.eael-timeline-post-inner{background:-o-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 rgba(0,0,0,0);background:linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 rgba(0,0,0,0);border:8px solid #e5eaed;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.15);box-shadow:0 1px 3px 0 rgba(0,0,0,.15);float:right;margin:30px 40px 30px auto;position:relative;height:320px;width:calc(100% - 40px)}.eael-timeline-post:nth-child(even) .eael-timeline-post-inner{float:left;margin-left:40px}.eael-timeline-post-inner:after{border-color:transparent transparent transparent #e5eaed;border-style:solid;border-width:15px;content:"";height:0;position:absolute;right:-36px;top:17px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after{border-color:transparent #e5eaed transparent transparent;border-style:solid;border-width:15px;content:"";height:0;left:-36px;position:absolute;top:257px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after{border-left-color:transparent !important}.eael-timeline-post p{margin:1.6rem 0 0 0;font-size:.9em;line-height:1.6em}.eael-timeline-post-image{background-size:cover;background-position:center center;background-repeat:no-repeat;display:block;height:100%;overflow:hidden;position:relative;opacity:1;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-title{bottom:40px;position:absolute;width:100%}.eael-timeline-post-title h2{color:#fff;font-size:20px;font-weight:bold;letter-spacing:1px;line-height:24px;padding:0 25px;text-align:left;text-transform:uppercase}.eael-timeline-post-excerpt{opacity:0;position:absolute;top:0;left:0;right:0;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-excerpt p{color:#fff;font-size:14px;padding:25px}.eael-timeline-post-inner:hover .eael-timeline-post-excerpt{opacity:1;top:10px}.eael-timeline-post-inner:hover .eael-timeline-post-image{opacity:.3}.eael-timeline-post time{opacity:0;background-color:rgba(0,0,0,.7);color:#fff;font-size:10px;border-radius:20px;position:absolute;right:-97px;width:100px;height:30px;line-height:30px;text-align:center;top:50px;z-index:4;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.eael-timeline-post:nth-child(2n) time{background-color:rgba(0,0,0,.7);border-radius:20px;color:#fff;font-size:10px;height:30px;left:-99px;line-height:30px;position:absolute;text-align:center;top:290px;width:100px;z-index:4}.eael-timeline-post time:before{border-bottom:5px solid rgba(0,0,0,.7);border-left:5px solid transparent;border-right:5px solid transparent;content:"";height:0;left:45px;position:absolute;top:-5px;width:0}.eael-timeline-post:hover time{opacity:1}.eael-timeline-post::after{height:100%}.eael-post-timeline .eael-timeline-post:nth-last-child(2)::after{height:245px}.eael-post-timeline .eael-timeline-post:last-child::after{display:none}.eael-load-more-button-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}@media only screen and (max-width: 1366px){.eael-timeline-post-title h2{font-size:.8em}.eael-timeline-post-excerpt p{font-size:13px}}@media only screen and (max-width: 1169px){.eael-timeline-post-inner{height:320px}}@media only screen and (max-width: 992px){.eael-post-timeline{margin-left:0}.eael-timeline-bullet,.eael-timeline-post:after,.eael-timeline-post:before,.eael-timeline-post-inner:after{display:none}.eael-timeline-post{display:inline-block;float:left !important;width:50% !important;margin:15px auto}.eael-timeline-post-inner{height:320px;padding-bottom:30px}.eael-timeline-post-title{bottom:50px}.eael-timeline-post-title h2{font-size:.8em;line-height:1.2em}.eael-timeline-post .eael-timeline-post-inner{margin:0 10px auto 0;width:90%}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{margin:0 auto 0 10px;width:90%}.eael-timeline-post-excerpt{opacity:0 !important}.eael-timeline-post-image{opacity:.3}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{background-color:#fff;border-radius:0;color:#444;font-size:12px;text-transform:uppercase;left:0;opacity:1;padding-top:3px;top:275px;width:100%}time:before{display:none}}@media only screen and (max-width: 767px){.eael-timeline-post{display:block;float:none !important;margin:20px auto;width:100% !important}.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{display:block;float:none;margin:0 auto}}@media only screen and (max-width: 479px){.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{height:250px;margin:0 auto;width:95%}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{top:205px}}.rtl .eael-timeline-post{direction:ltr}
|
1 |
+
.eael-post-timeline{margin-bottom:0;min-height:100%;overflow:hidden;position:relative}.eael-timeline-column{width:50%;margin-left:0;float:left;margin-top:0 !important}.eael-timeline-post{position:relative}.eael-timeline-post:after{background-color:rgba(83,85,86,.2);content:"";width:2px;height:245px;position:absolute;right:0;top:70px}.eael-timeline-post:nth-child(2n):after{display:none}.eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;border-radius:50%;-webkit-box-shadow:0 1px 0 1px rgba(0,0,0,.1);box-shadow:0 1px 0 1px rgba(0,0,0,.1);content:"";height:20px;position:absolute;right:-9px;top:60px;width:20px;z-index:3;cursor:pointer}.eael-timeline-post:nth-child(2n) .eael-timeline-bullet{background-color:#9fa9af;border:5px solid #fff;border-radius:50%;bottom:36px;content:"";height:20px;left:-11px;position:absolute;top:300px;width:20px;z-index:3}.eael-timeline-post-inner{background:-o-linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 rgba(0,0,0,0);background:linear-gradient(45deg, #3f3f46 0%, #05abe0 100%) repeat scroll 0 0 rgba(0,0,0,0);border:8px solid #e5eaed;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.15);box-shadow:0 1px 3px 0 rgba(0,0,0,.15);float:right;margin:30px 40px 30px auto;position:relative;height:320px;width:calc(100% - 40px)}.eael-timeline-post:nth-child(even) .eael-timeline-post-inner{float:left;margin-left:40px}.eael-timeline-post-inner:after{border-color:transparent transparent transparent #e5eaed;border-style:solid;border-width:15px;content:"";height:0;position:absolute;right:-36px;top:17px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after{border-color:transparent #e5eaed transparent transparent;border-style:solid;border-width:15px;content:"";height:0;left:-36px;position:absolute;top:257px;width:0}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after{border-left-color:transparent !important}.eael-timeline-post p{margin:1.6rem 0 0 0;font-size:.9em;line-height:1.6em}.eael-timeline-post-image{background-size:cover;background-position:center center;background-repeat:no-repeat;display:block;height:100%;overflow:hidden;position:relative;opacity:1;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-title{bottom:40px;position:absolute;width:100%}.eael-timeline-post-title *{color:#fff;font-size:20px;font-weight:bold;letter-spacing:1px;line-height:24px;padding:0 25px;text-align:left;text-transform:uppercase;margin-bottom:15px;display:block}.eael-timeline-post-excerpt{opacity:0;position:absolute;top:0;left:0;right:0;-webkit-transition:all .3s;-o-transition:all .3s;transition:all .3s}.eael-timeline-post-excerpt p{color:#fff;font-size:14px;padding:25px}.eael-timeline-post-inner:hover .eael-timeline-post-excerpt{opacity:1;top:10px}.eael-timeline-post-inner:hover .eael-timeline-post-image{opacity:.3}.eael-timeline-post time{opacity:0;background-color:rgba(0,0,0,.7);color:#fff;font-size:10px;border-radius:20px;position:absolute;right:-97px;width:100px;height:30px;line-height:30px;text-align:center;top:50px;z-index:4;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.eael-timeline-post:nth-child(2n) time{background-color:rgba(0,0,0,.7);border-radius:20px;color:#fff;font-size:10px;height:30px;left:-99px;line-height:30px;position:absolute;text-align:center;top:290px;width:100px;z-index:4}.eael-timeline-post time:before{border-bottom:5px solid rgba(0,0,0,.7);border-left:5px solid transparent;border-right:5px solid transparent;content:"";height:0;left:45px;position:absolute;top:-5px;width:0}.eael-timeline-post:hover time{opacity:1}.eael-timeline-post::after{height:100%}.eael-post-timeline .eael-timeline-post:nth-last-child(2)::after{height:245px}.eael-post-timeline .eael-timeline-post:last-child::after{display:none}.eael-load-more-button-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}@media only screen and (max-width: 1366px){.eael-timeline-post-title h2{font-size:.8em}.eael-timeline-post-excerpt p{font-size:13px}}@media only screen and (max-width: 1169px){.eael-timeline-post-inner{height:320px}}@media only screen and (max-width: 992px){.eael-post-timeline{margin-left:0}.eael-timeline-bullet,.eael-timeline-post:after,.eael-timeline-post:before,.eael-timeline-post-inner:after{display:none}.eael-timeline-post{display:inline-block;float:left !important;width:50% !important;margin:15px auto}.eael-timeline-post-inner{height:320px;padding-bottom:30px}.eael-timeline-post-title{bottom:50px}.eael-timeline-post-title *{font-size:.8em;line-height:1.2em}.eael-timeline-post .eael-timeline-post-inner{margin:0 10px auto 0;width:90%}.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{margin:0 auto 0 10px;width:90%}.eael-timeline-post-excerpt{opacity:0 !important}.eael-timeline-post-image{opacity:.3}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{background-color:#fff;border-radius:0;color:#444;font-size:12px;text-transform:uppercase;left:0;opacity:1;padding-top:3px;top:275px;width:100%}time:before{display:none}}@media only screen and (max-width: 767px){.eael-timeline-post{display:block;float:none !important;margin:20px auto;width:100% !important}.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{display:block;float:none;margin:0 auto}}@media only screen and (max-width: 479px){.eael-timeline-post .eael-timeline-post-inner,.eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{height:250px;margin:0 auto;width:95%}.eael-timeline-post time,.eael-timeline-post:nth-child(2n) time{top:205px}}.rtl .eael-timeline-post{direction:ltr}.eael-post-timeline.timeline-layout-card{margin:-20px;overflow:unset}.eael-post-timeline.timeline-layout-card .eael-timeline-post{width:100%;padding:20px}@media only screen and (min-width: 992px){.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(odd) .eael-timeline-post-inner::after{border-right:none;left:auto !important}}@media only screen and (max-width: 992px){.eael-post-timeline.timeline-layout-card .eael-timeline-post{width:100% !important;margin:0}.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-bullet,.eael-post-timeline.timeline-layout-card .eael-timeline-post:after,.eael-post-timeline.timeline-layout-card .eael-timeline-post:before,.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-post-inner:after{display:block}.eael-post-timeline.timeline-layout-card .eael-timeline-post:after{left:7% !important;-webkit-transform:translateX(-7%) !important;-ms-transform:translateX(-7%) !important;transform:translateX(-7%) !important}}.eael-post-timeline.timeline-layout-card .eael-timeline-post:last-child::after{display:none !important}.eael-post-timeline.timeline-layout-card .eael-timeline-post:after{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);right:auto;top:40px}.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-bullet{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);right:auto;top:40px}@media only screen and (max-width: 992px){.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-bullet{left:7%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-last-child(2)::after{height:100%}.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n):after{display:block}.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after{top:15px;left:-12px;border-left:none}@media only screen and (min-width: 992px){.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner{float:right}.eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n) time{left:auto;right:calc(100% + 85px);text-align:right;font-size:1em}}.eael-post-timeline.timeline-layout-card .eael-timeline-post .eael-timeline-clear{clear:right}.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner{width:46%;height:auto;float:none;margin:0;background:#2315ab;border:none;-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,.08);box-shadow:0px 0px 20px 0px rgba(0,0,0,.08)}@media only screen and (max-width: 992px){.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner{width:90%;float:right;padding-bottom:0}.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner:after{display:block;top:15px;left:-12px;border-left:none}}.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner:hover .eael-timeline-post-excerpt{top:0}.eael-post-timeline.timeline-layout-card .eael-timeline-post-inner:after{top:15px;right:-12px;border-left-color:#2315ab;border-right-color:#2315ab;border-width:12px}.eael-post-timeline.timeline-layout-card .eael-timeline-post-image{opacity:1;height:200px;background-repeat:no-repeat;background-size:cover;background-position:center center}.eael-post-timeline.timeline-layout-card .eael-timeline-content{padding:30px}.eael-post-timeline.timeline-layout-card .eael-timeline-post-title{bottom:0}.eael-post-timeline.timeline-layout-card .eael-timeline-post-title *{margin-top:0;padding:0}.eael-post-timeline.timeline-layout-card .eael-timeline-post-excerpt p{padding:0;margin-top:0}.eael-post-timeline.timeline-layout-card .eael-timeline-post-excerpt,.eael-post-timeline.timeline-layout-card .eael-timeline-post-title{position:relative;opacity:1 !important}.eael-post-timeline.timeline-layout-card time{position:absolute;left:calc(100% + 85px);top:10px;font-size:1em;padding:5px 10px;text-align:left;opacity:1;height:auto;width:-webkit-max-content;width:-moz-max-content;width:max-content;border-radius:5px}.eael-post-timeline.timeline-layout-card time:before{content:none}@media only screen and (max-width: 992px){.eael-post-timeline.timeline-layout-card time{position:relative;left:0;top:0;margin:20px;display:inline-block;font-size:12px;padding:2px 10px}}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post-inner:after,.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post .eael-timeline-bullet{top:50%;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post:after{top:0}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post:first-child:after{top:50%;height:50%}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle .eael-timeline-post:last-child:after{display:block !important;height:50%}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-middle time{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post-inner:after,.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after{top:auto;bottom:20px}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post .eael-timeline-bullet{top:auto;bottom:40px}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post:after{top:0}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post:first-child:after{height:40px;top:auto;bottom:0}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom .eael-timeline-post:last-child:after{display:block !important;height:calc(100% - 40px)}.eael-post-timeline.timeline-layout-card.eael-post-timeline-arrow-bottom time{bottom:10px;top:auto}
|
assets/front-end/css/view/product-grid.css
CHANGED
@@ -684,6 +684,28 @@
|
|
684 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus {
|
685 |
outline: none;
|
686 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,
|
688 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,
|
689 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before {
|
@@ -707,6 +729,72 @@
|
|
707 |
color: #333;
|
708 |
background-color: transparent;
|
709 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
710 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,
|
711 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product {
|
712 |
border: 1px solid #eee;
|
@@ -719,10 +807,12 @@
|
|
719 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,
|
720 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
721 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,
|
|
|
722 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,
|
723 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,
|
724 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
725 |
-
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart
|
|
|
726 |
visibility: hidden;
|
727 |
-webkit-transition: none;
|
728 |
-o-transition: none;
|
@@ -736,10 +826,12 @@
|
|
736 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,
|
737 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,
|
738 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,
|
|
|
739 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,
|
740 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,
|
741 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,
|
742 |
-
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart
|
|
|
743 |
visibility: visible;
|
744 |
}
|
745 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product,
|
@@ -754,6 +846,10 @@
|
|
754 |
-webkit-box-shadow: none;
|
755 |
box-shadow: none;
|
756 |
}
|
|
|
|
|
|
|
|
|
757 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,
|
758 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a {
|
759 |
text-decoration: none;
|
@@ -791,15 +887,23 @@
|
|
791 |
-webkit-transform: translateY(-50%);
|
792 |
-ms-transform: translateY(-50%);
|
793 |
transform: translateY(-50%);
|
|
|
|
|
|
|
|
|
|
|
|
|
794 |
}
|
795 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,
|
796 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,
|
797 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
798 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,
|
|
|
799 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,
|
800 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,
|
801 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
802 |
-
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart
|
|
|
803 |
display: -webkit-inline-box;
|
804 |
display: -ms-inline-flexbox;
|
805 |
display: inline-flex;
|
@@ -835,10 +939,12 @@
|
|
835 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,
|
836 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,
|
837 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,
|
|
|
838 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,
|
839 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,
|
840 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,
|
841 |
-
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus
|
|
|
842 |
outline: none;
|
843 |
}
|
844 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
@@ -905,6 +1011,74 @@
|
|
905 |
margin: 0;
|
906 |
padding: 0;
|
907 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
908 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,
|
909 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title {
|
910 |
font-size: 16px;
|
@@ -1063,6 +1237,26 @@
|
|
1063 |
.eael-post-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before {
|
1064 |
content: "\f00c";
|
1065 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1066 |
.eael-product-grid.eael-product-preset-5 ul.products li.product .image-wrap img, .eael-product-grid.eael-product-preset-6 ul.products li.product .image-wrap img, .eael-product-grid.eael-product-preset-7 ul.products li.product .image-wrap img, .eael-product-grid.eael-product-preset-8 ul.products li.product .image-wrap img,
|
1067 |
.eael-post-grid.eael-product-preset-5 ul.products li.product .image-wrap img,
|
1068 |
.eael-post-grid.eael-product-preset-6 ul.products li.product .image-wrap img,
|
@@ -1071,6 +1265,83 @@
|
|
1071 |
-webkit-backface-visibility: hidden;
|
1072 |
backface-visibility: hidden;
|
1073 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1074 |
.eael-wcpc-modal {
|
1075 |
position: fixed;
|
1076 |
top: 50px;
|
@@ -1467,6 +1738,30 @@
|
|
1467 |
-ms-flex: 1;
|
1468 |
flex: 1;
|
1469 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1470 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li:not(:last-child), .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li:not(:last-child) {
|
1471 |
border-right: 1px solid #fff;
|
1472 |
}
|
@@ -1490,6 +1785,15 @@
|
|
1490 |
-webkit-box-direction: normal;
|
1491 |
-ms-flex-direction: column;
|
1492 |
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1493 |
}
|
1494 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a:hover, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a:hover {
|
1495 |
background-color: transparent;
|
@@ -1498,6 +1802,22 @@
|
|
1498 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a i {
|
1499 |
line-height: normal;
|
1500 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1501 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style {
|
1502 |
display: -webkit-box;
|
1503 |
display: -ms-flexbox;
|
@@ -1515,6 +1835,30 @@
|
|
1515 |
top: auto;
|
1516 |
bottom: -100px;
|
1517 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1518 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a {
|
1519 |
position: relative;
|
1520 |
width: 42px;
|
@@ -1571,6 +1915,40 @@
|
|
1571 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before {
|
1572 |
content: "\f00c";
|
1573 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1574 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style {
|
1575 |
display: -webkit-box;
|
1576 |
display: -ms-flexbox;
|
@@ -1591,6 +1969,30 @@
|
|
1591 |
bottom: -24px;
|
1592 |
margin: 0 5%;
|
1593 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1594 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a {
|
1595 |
position: relative;
|
1596 |
width: 42px;
|
@@ -1648,9 +2050,39 @@
|
|
1648 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before {
|
1649 |
content: "\f00c";
|
1650 |
}
|
1651 |
-
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external {
|
1652 |
-
|
1653 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1654 |
}
|
1655 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style {
|
1656 |
background: white;
|
@@ -1671,6 +2103,30 @@
|
|
1671 |
-ms-flex-align: center;
|
1672 |
align-items: center;
|
1673 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1674 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a {
|
1675 |
position: relative;
|
1676 |
width: 42px;
|
@@ -1725,6 +2181,40 @@
|
|
1725 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before {
|
1726 |
content: "\f00c";
|
1727 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1728 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap li, .eael-product-grid.masonry .eael-product-wrap .icons-wrap li {
|
1729 |
display: inline-block;
|
1730 |
margin: 0;
|
@@ -1799,7 +2289,13 @@
|
|
1799 |
.eael-product-grid.grid.eael-product-preset-6 .product.outofstock .icons-wrap .button, .eael-product-grid.grid.eael-product-preset-7 .product.outofstock .icons-wrap .button, .eael-product-grid.grid.eael-product-preset-8 .product.outofstock .icons-wrap .button, .eael-product-grid.masonry.eael-product-preset-6 .product.outofstock .icons-wrap .button, .eael-product-grid.masonry.eael-product-preset-7 .product.outofstock .icons-wrap .button, .eael-product-grid.masonry.eael-product-preset-8 .product.outofstock .icons-wrap .button {
|
1800 |
display: none;
|
1801 |
}
|
1802 |
-
.eael-product-grid.grid.eael-product-preset-6 .icons-wrap .button.product_type_grouped,
|
|
|
|
|
|
|
|
|
|
|
|
|
1803 |
display: none;
|
1804 |
}
|
1805 |
.eael-product-grid.list .woocommerce ul.products li.product {
|
@@ -1894,12 +2390,64 @@
|
|
1894 |
filter: drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));
|
1895 |
background-color: #ffffff;
|
1896 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1897 |
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-cart a {
|
1898 |
padding: 11px 15px !important;
|
|
|
1899 |
}
|
1900 |
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a {
|
1901 |
margin: 2px;
|
1902 |
padding: 10.5px 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1903 |
}
|
1904 |
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 {
|
1905 |
display: -webkit-box;
|
@@ -2231,3 +2779,6 @@
|
|
2231 |
-ms-transform: none;
|
2232 |
transform: none;
|
2233 |
}
|
|
|
|
|
|
684 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus {
|
685 |
outline: none;
|
686 |
}
|
687 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product.button.product_type_external, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product.button.product_type_external,
|
688 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product.button.product_type_external,
|
689 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product.button.product_type_external {
|
690 |
+
padding: 0;
|
691 |
+
margin: 0;
|
692 |
+
font-size: 0px;
|
693 |
+
}
|
694 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product.button.product_type_external:before, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product.button.product_type_external:before,
|
695 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product.button.product_type_external:before,
|
696 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product.button.product_type_external:before {
|
697 |
+
content: "\f0c1";
|
698 |
+
display: block;
|
699 |
+
font-family: "Font Awesome 5 Free";
|
700 |
+
font-size: 18px;
|
701 |
+
font-weight: 900;
|
702 |
+
-webkit-transform: translate(-50%, -50%);
|
703 |
+
-ms-transform: translate(-50%, -50%);
|
704 |
+
transform: translate(-50%, -50%);
|
705 |
+
top: 50%;
|
706 |
+
left: 50%;
|
707 |
+
position: absolute;
|
708 |
+
}
|
709 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,
|
710 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,
|
711 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before {
|
729 |
color: #333;
|
730 |
background-color: transparent;
|
731 |
}
|
732 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist,
|
733 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist,
|
734 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist {
|
735 |
+
margin: 0 auto;
|
736 |
+
}
|
737 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist,
|
738 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist,
|
739 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist {
|
740 |
+
margin: 0 15px 15px 15px;
|
741 |
+
padding: 7px;
|
742 |
+
color: #fff;
|
743 |
+
background-color: #333;
|
744 |
+
}
|
745 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,
|
746 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,
|
747 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span {
|
748 |
+
display: none;
|
749 |
+
}
|
750 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,
|
751 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,
|
752 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a {
|
753 |
+
font-size: 0;
|
754 |
+
}
|
755 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,
|
756 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,
|
757 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i {
|
758 |
+
display: none;
|
759 |
+
}
|
760 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,
|
761 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,
|
762 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after {
|
763 |
+
content: "\f004";
|
764 |
+
font-weight: 900;
|
765 |
+
font-family: "Font Awesome 5 Free";
|
766 |
+
font-size: 18px;
|
767 |
+
text-rendering: auto;
|
768 |
+
-webkit-font-smoothing: antialiased;
|
769 |
+
vertical-align: middle;
|
770 |
+
margin: 0;
|
771 |
+
padding: 0;
|
772 |
+
}
|
773 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a,
|
774 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a,
|
775 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a {
|
776 |
+
font-size: 0;
|
777 |
+
vertical-align: middle;
|
778 |
+
display: inline-block;
|
779 |
+
color: inherit;
|
780 |
+
}
|
781 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a i, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a i,
|
782 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a i,
|
783 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a i {
|
784 |
+
display: none;
|
785 |
+
}
|
786 |
+
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a:after, .eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a:after,
|
787 |
+
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a:after,
|
788 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a:after {
|
789 |
+
content: "\f004";
|
790 |
+
font-family: "Font Awesome 5 Free";
|
791 |
+
font-size: 18px;
|
792 |
+
text-rendering: auto;
|
793 |
+
-webkit-font-smoothing: antialiased;
|
794 |
+
vertical-align: middle;
|
795 |
+
margin: 0;
|
796 |
+
padding: 0;
|
797 |
+
}
|
798 |
.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,
|
799 |
.eael-post-grid.eael-product-simple .woocommerce ul.products li.product {
|
800 |
border: 1px solid #eee;
|
807 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,
|
808 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
809 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,
|
810 |
+
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist,
|
811 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,
|
812 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,
|
813 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,
|
814 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,
|
815 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist {
|
816 |
visibility: hidden;
|
817 |
-webkit-transition: none;
|
818 |
-o-transition: none;
|
826 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,
|
827 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,
|
828 |
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,
|
829 |
+
.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .add-to-whishlist,
|
830 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,
|
831 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,
|
832 |
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,
|
833 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,
|
834 |
+
.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .add-to-whishlist {
|
835 |
visibility: visible;
|
836 |
}
|
837 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product,
|
846 |
-webkit-box-shadow: none;
|
847 |
box-shadow: none;
|
848 |
}
|
849 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product.outofstock .button,
|
850 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product.outofstock .button {
|
851 |
+
display: none;
|
852 |
+
}
|
853 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,
|
854 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a {
|
855 |
text-decoration: none;
|
887 |
-webkit-transform: translateY(-50%);
|
888 |
-ms-transform: translateY(-50%);
|
889 |
transform: translateY(-50%);
|
890 |
+
display: -webkit-box;
|
891 |
+
display: -ms-flexbox;
|
892 |
+
display: flex;
|
893 |
+
-webkit-box-pack: center;
|
894 |
+
-ms-flex-pack: center;
|
895 |
+
justify-content: center;
|
896 |
}
|
897 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,
|
898 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,
|
899 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
900 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,
|
901 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a,
|
902 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,
|
903 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,
|
904 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
905 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,
|
906 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a {
|
907 |
display: -webkit-inline-box;
|
908 |
display: -ms-inline-flexbox;
|
909 |
display: inline-flex;
|
939 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,
|
940 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,
|
941 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,
|
942 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a:focus,
|
943 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,
|
944 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,
|
945 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,
|
946 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,
|
947 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a:focus {
|
948 |
outline: none;
|
949 |
}
|
950 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,
|
1011 |
margin: 0;
|
1012 |
padding: 0;
|
1013 |
}
|
1014 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay.button.product_type_external,
|
1015 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay.button.product_type_external {
|
1016 |
+
padding: 0;
|
1017 |
+
margin: 0;
|
1018 |
+
font-size: 0px;
|
1019 |
+
}
|
1020 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay.button.product_type_external:before,
|
1021 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay.button.product_type_external:before {
|
1022 |
+
content: "\f0c1";
|
1023 |
+
display: block;
|
1024 |
+
font-family: "Font Awesome 5 Free";
|
1025 |
+
font-size: 18px;
|
1026 |
+
font-weight: 900;
|
1027 |
+
-webkit-transform: translate(-50%, -50%);
|
1028 |
+
-ms-transform: translate(-50%, -50%);
|
1029 |
+
transform: translate(-50%, -50%);
|
1030 |
+
top: 50%;
|
1031 |
+
left: 50%;
|
1032 |
+
position: absolute;
|
1033 |
+
}
|
1034 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist,
|
1035 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist {
|
1036 |
+
margin: 0;
|
1037 |
+
padding: 0;
|
1038 |
+
}
|
1039 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,
|
1040 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span {
|
1041 |
+
display: none;
|
1042 |
+
}
|
1043 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,
|
1044 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a {
|
1045 |
+
font-size: 0;
|
1046 |
+
}
|
1047 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,
|
1048 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i {
|
1049 |
+
display: none;
|
1050 |
+
}
|
1051 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,
|
1052 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after {
|
1053 |
+
content: "\f004";
|
1054 |
+
font-weight: 900;
|
1055 |
+
font-family: "Font Awesome 5 Free";
|
1056 |
+
font-size: 18px;
|
1057 |
+
text-rendering: auto;
|
1058 |
+
-webkit-font-smoothing: antialiased;
|
1059 |
+
vertical-align: middle;
|
1060 |
+
margin: 0;
|
1061 |
+
padding: 0;
|
1062 |
+
}
|
1063 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a,
|
1064 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a {
|
1065 |
+
font-size: 0;
|
1066 |
+
}
|
1067 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a i,
|
1068 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a i {
|
1069 |
+
display: none;
|
1070 |
+
}
|
1071 |
+
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a:after,
|
1072 |
+
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a:after {
|
1073 |
+
content: "\f004";
|
1074 |
+
font-family: "Font Awesome 5 Free";
|
1075 |
+
font-size: 18px;
|
1076 |
+
text-rendering: auto;
|
1077 |
+
-webkit-font-smoothing: antialiased;
|
1078 |
+
vertical-align: middle;
|
1079 |
+
margin: 0;
|
1080 |
+
padding: 0;
|
1081 |
+
}
|
1082 |
.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,
|
1083 |
.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title {
|
1084 |
font-size: 16px;
|
1237 |
.eael-post-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before {
|
1238 |
content: "\f00c";
|
1239 |
}
|
1240 |
+
.eael-product-grid.eael-product-default.button.product_type_external,
|
1241 |
+
.eael-post-grid.eael-product-default.button.product_type_external {
|
1242 |
+
padding: 0;
|
1243 |
+
margin: 0;
|
1244 |
+
font-size: 0px;
|
1245 |
+
}
|
1246 |
+
.eael-product-grid.eael-product-default.button.product_type_external:before,
|
1247 |
+
.eael-post-grid.eael-product-default.button.product_type_external:before {
|
1248 |
+
content: "\f0c1";
|
1249 |
+
display: block;
|
1250 |
+
font-family: "Font Awesome 5 Free";
|
1251 |
+
font-size: 18px;
|
1252 |
+
font-weight: 900;
|
1253 |
+
-webkit-transform: translate(-50%, -50%);
|
1254 |
+
-ms-transform: translate(-50%, -50%);
|
1255 |
+
transform: translate(-50%, -50%);
|
1256 |
+
top: 50%;
|
1257 |
+
left: 50%;
|
1258 |
+
position: absolute;
|
1259 |
+
}
|
1260 |
.eael-product-grid.eael-product-preset-5 ul.products li.product .image-wrap img, .eael-product-grid.eael-product-preset-6 ul.products li.product .image-wrap img, .eael-product-grid.eael-product-preset-7 ul.products li.product .image-wrap img, .eael-product-grid.eael-product-preset-8 ul.products li.product .image-wrap img,
|
1261 |
.eael-post-grid.eael-product-preset-5 ul.products li.product .image-wrap img,
|
1262 |
.eael-post-grid.eael-product-preset-6 ul.products li.product .image-wrap img,
|
1265 |
-webkit-backface-visibility: hidden;
|
1266 |
backface-visibility: hidden;
|
1267 |
}
|
1268 |
+
.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist, .eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist, .eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist, .eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist,
|
1269 |
+
.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist,
|
1270 |
+
.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist,
|
1271 |
+
.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist,
|
1272 |
+
.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist {
|
1273 |
+
margin: 15px;
|
1274 |
+
padding: 7px;
|
1275 |
+
color: #fff;
|
1276 |
+
background-color: #333;
|
1277 |
+
}
|
1278 |
+
.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists span, .eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists span, .eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists span, .eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists span,
|
1279 |
+
.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists span,
|
1280 |
+
.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists span,
|
1281 |
+
.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists span,
|
1282 |
+
.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists span {
|
1283 |
+
display: none;
|
1284 |
+
}
|
1285 |
+
.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a, .eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a, .eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a, .eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a,
|
1286 |
+
.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a,
|
1287 |
+
.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a,
|
1288 |
+
.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a,
|
1289 |
+
.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a {
|
1290 |
+
font-size: 0;
|
1291 |
+
}
|
1292 |
+
.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a i, .eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a i, .eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a i, .eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a i,
|
1293 |
+
.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a i,
|
1294 |
+
.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a i,
|
1295 |
+
.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a i,
|
1296 |
+
.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a i {
|
1297 |
+
display: none;
|
1298 |
+
}
|
1299 |
+
.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a:after, .eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a:after, .eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a:after, .eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a:after,
|
1300 |
+
.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a:after,
|
1301 |
+
.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a:after,
|
1302 |
+
.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a:after,
|
1303 |
+
.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a:after {
|
1304 |
+
content: "\f004";
|
1305 |
+
font-weight: 900;
|
1306 |
+
font-family: "Font Awesome 5 Free";
|
1307 |
+
font-size: 18px;
|
1308 |
+
text-rendering: auto;
|
1309 |
+
-webkit-font-smoothing: antialiased;
|
1310 |
+
vertical-align: middle;
|
1311 |
+
margin: 0;
|
1312 |
+
padding: 0;
|
1313 |
+
}
|
1314 |
+
.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a, .eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a, .eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a, .eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a,
|
1315 |
+
.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a,
|
1316 |
+
.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a,
|
1317 |
+
.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a,
|
1318 |
+
.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a {
|
1319 |
+
font-size: 0;
|
1320 |
+
vertical-align: middle;
|
1321 |
+
display: inline-block;
|
1322 |
+
color: inherit;
|
1323 |
+
}
|
1324 |
+
.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a i, .eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a i, .eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a i, .eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a i,
|
1325 |
+
.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a i,
|
1326 |
+
.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a i,
|
1327 |
+
.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a i,
|
1328 |
+
.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a i {
|
1329 |
+
display: none;
|
1330 |
+
}
|
1331 |
+
.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a:after, .eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a:after, .eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a:after, .eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a:after,
|
1332 |
+
.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a:after,
|
1333 |
+
.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a:after,
|
1334 |
+
.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a:after,
|
1335 |
+
.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a:after {
|
1336 |
+
content: "\f004";
|
1337 |
+
font-family: "Font Awesome 5 Free";
|
1338 |
+
font-size: 18px;
|
1339 |
+
text-rendering: auto;
|
1340 |
+
-webkit-font-smoothing: antialiased;
|
1341 |
+
vertical-align: middle;
|
1342 |
+
margin: 0;
|
1343 |
+
padding: 0;
|
1344 |
+
}
|
1345 |
.eael-wcpc-modal {
|
1346 |
position: fixed;
|
1347 |
top: 50px;
|
1738 |
-ms-flex: 1;
|
1739 |
flex: 1;
|
1740 |
}
|
1741 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist {
|
1742 |
+
margin: 0;
|
1743 |
+
padding: 0;
|
1744 |
+
}
|
1745 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span {
|
1746 |
+
display: none;
|
1747 |
+
}
|
1748 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a {
|
1749 |
+
font-size: 0;
|
1750 |
+
}
|
1751 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i {
|
1752 |
+
display: none;
|
1753 |
+
}
|
1754 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after {
|
1755 |
+
content: "\f004";
|
1756 |
+
font-weight: 900;
|
1757 |
+
font-family: "Font Awesome 5 Free";
|
1758 |
+
font-size: 18px;
|
1759 |
+
text-rendering: auto;
|
1760 |
+
-webkit-font-smoothing: antialiased;
|
1761 |
+
vertical-align: middle;
|
1762 |
+
margin: 0;
|
1763 |
+
padding: 0;
|
1764 |
+
}
|
1765 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li:not(:last-child), .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li:not(:last-child) {
|
1766 |
border-right: 1px solid #fff;
|
1767 |
}
|
1785 |
-webkit-box-direction: normal;
|
1786 |
-ms-flex-direction: column;
|
1787 |
flex-direction: column;
|
1788 |
+
min-height: 42px;
|
1789 |
+
-ms-flex-line-pack: center;
|
1790 |
+
align-content: center;
|
1791 |
+
-webkit-box-pack: center;
|
1792 |
+
-ms-flex-pack: center;
|
1793 |
+
justify-content: center;
|
1794 |
+
}
|
1795 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.added_to_cart, .eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.button.add_to_cart_button, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.added_to_cart, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.button.add_to_cart_button {
|
1796 |
+
padding: 0 !important;
|
1797 |
}
|
1798 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a:hover, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a:hover {
|
1799 |
background-color: transparent;
|
1802 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a i {
|
1803 |
line-height: normal;
|
1804 |
}
|
1805 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist {
|
1806 |
+
font-size: 0;
|
1807 |
+
}
|
1808 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist i {
|
1809 |
+
display: none;
|
1810 |
+
}
|
1811 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist:after, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist:after {
|
1812 |
+
content: "\f004";
|
1813 |
+
font-family: "Font Awesome 5 Free";
|
1814 |
+
font-size: 18px;
|
1815 |
+
text-rendering: auto;
|
1816 |
+
-webkit-font-smoothing: antialiased;
|
1817 |
+
vertical-align: middle;
|
1818 |
+
margin: 0;
|
1819 |
+
padding: 0;
|
1820 |
+
}
|
1821 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style {
|
1822 |
display: -webkit-box;
|
1823 |
display: -ms-flexbox;
|
1835 |
top: auto;
|
1836 |
bottom: -100px;
|
1837 |
}
|
1838 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist {
|
1839 |
+
margin: 0;
|
1840 |
+
padding: 0;
|
1841 |
+
}
|
1842 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span {
|
1843 |
+
display: none;
|
1844 |
+
}
|
1845 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a {
|
1846 |
+
font-size: 0;
|
1847 |
+
}
|
1848 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i {
|
1849 |
+
display: none;
|
1850 |
+
}
|
1851 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after {
|
1852 |
+
content: "\f004";
|
1853 |
+
font-weight: 900;
|
1854 |
+
font-family: "Font Awesome 5 Free";
|
1855 |
+
font-size: 18px;
|
1856 |
+
text-rendering: auto;
|
1857 |
+
-webkit-font-smoothing: antialiased;
|
1858 |
+
vertical-align: middle;
|
1859 |
+
margin: 0;
|
1860 |
+
padding: 0;
|
1861 |
+
}
|
1862 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a {
|
1863 |
position: relative;
|
1864 |
width: 42px;
|
1915 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before {
|
1916 |
content: "\f00c";
|
1917 |
}
|
1918 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.product_type_external, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.product_type_external {
|
1919 |
+
padding: 0;
|
1920 |
+
margin: 0;
|
1921 |
+
font-size: 0px;
|
1922 |
+
}
|
1923 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.product_type_external:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.product_type_external:before {
|
1924 |
+
content: "\f0c1";
|
1925 |
+
display: block;
|
1926 |
+
font-family: "Font Awesome 5 Free";
|
1927 |
+
font-size: 18px;
|
1928 |
+
font-weight: 900;
|
1929 |
+
-webkit-transform: translate(-50%, -50%);
|
1930 |
+
-ms-transform: translate(-50%, -50%);
|
1931 |
+
transform: translate(-50%, -50%);
|
1932 |
+
top: 50%;
|
1933 |
+
left: 50%;
|
1934 |
+
position: absolute;
|
1935 |
+
}
|
1936 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist {
|
1937 |
+
font-size: 0;
|
1938 |
+
}
|
1939 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist i {
|
1940 |
+
display: none;
|
1941 |
+
}
|
1942 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist:after, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist:after {
|
1943 |
+
content: "\f004";
|
1944 |
+
font-family: "Font Awesome 5 Free";
|
1945 |
+
font-size: 18px;
|
1946 |
+
text-rendering: auto;
|
1947 |
+
-webkit-font-smoothing: antialiased;
|
1948 |
+
vertical-align: middle;
|
1949 |
+
margin: 0;
|
1950 |
+
padding: 0;
|
1951 |
+
}
|
1952 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style {
|
1953 |
display: -webkit-box;
|
1954 |
display: -ms-flexbox;
|
1969 |
bottom: -24px;
|
1970 |
margin: 0 5%;
|
1971 |
}
|
1972 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist {
|
1973 |
+
margin: 0;
|
1974 |
+
padding: 0;
|
1975 |
+
}
|
1976 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span {
|
1977 |
+
display: none;
|
1978 |
+
}
|
1979 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a {
|
1980 |
+
font-size: 0;
|
1981 |
+
}
|
1982 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i {
|
1983 |
+
display: none;
|
1984 |
+
}
|
1985 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after {
|
1986 |
+
content: "\f004";
|
1987 |
+
font-weight: 900;
|
1988 |
+
font-family: "Font Awesome 5 Free";
|
1989 |
+
font-size: 18px;
|
1990 |
+
text-rendering: auto;
|
1991 |
+
-webkit-font-smoothing: antialiased;
|
1992 |
+
vertical-align: middle;
|
1993 |
+
margin: 0;
|
1994 |
+
padding: 0;
|
1995 |
+
}
|
1996 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a {
|
1997 |
position: relative;
|
1998 |
width: 42px;
|
2050 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before {
|
2051 |
content: "\f00c";
|
2052 |
}
|
2053 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.product_type_external, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.product_type_external {
|
2054 |
+
padding: 0;
|
2055 |
+
margin: 0;
|
2056 |
+
font-size: 0px;
|
2057 |
+
}
|
2058 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.product_type_external:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.product_type_external:before {
|
2059 |
+
content: "\f0c1";
|
2060 |
+
display: block;
|
2061 |
+
font-family: "Font Awesome 5 Free";
|
2062 |
+
font-size: 18px;
|
2063 |
+
font-weight: 900;
|
2064 |
+
-webkit-transform: translate(-50%, -50%);
|
2065 |
+
-ms-transform: translate(-50%, -50%);
|
2066 |
+
transform: translate(-50%, -50%);
|
2067 |
+
top: 50%;
|
2068 |
+
left: 50%;
|
2069 |
+
position: absolute;
|
2070 |
+
}
|
2071 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist {
|
2072 |
+
font-size: 0;
|
2073 |
+
}
|
2074 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist i {
|
2075 |
+
display: none;
|
2076 |
+
}
|
2077 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist:after, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist:after {
|
2078 |
+
content: "\f004";
|
2079 |
+
font-family: "Font Awesome 5 Free";
|
2080 |
+
font-size: 18px;
|
2081 |
+
text-rendering: auto;
|
2082 |
+
-webkit-font-smoothing: antialiased;
|
2083 |
+
vertical-align: middle;
|
2084 |
+
margin: 0;
|
2085 |
+
padding: 0;
|
2086 |
}
|
2087 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style {
|
2088 |
background: white;
|
2103 |
-ms-flex-align: center;
|
2104 |
align-items: center;
|
2105 |
}
|
2106 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist {
|
2107 |
+
margin: 0;
|
2108 |
+
padding: 0;
|
2109 |
+
}
|
2110 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span {
|
2111 |
+
display: none;
|
2112 |
+
}
|
2113 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a {
|
2114 |
+
font-size: 0;
|
2115 |
+
}
|
2116 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i {
|
2117 |
+
display: none;
|
2118 |
+
}
|
2119 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after {
|
2120 |
+
content: "\f004";
|
2121 |
+
font-weight: 900;
|
2122 |
+
font-family: "Font Awesome 5 Free";
|
2123 |
+
font-size: 18px;
|
2124 |
+
text-rendering: auto;
|
2125 |
+
-webkit-font-smoothing: antialiased;
|
2126 |
+
vertical-align: middle;
|
2127 |
+
margin: 0;
|
2128 |
+
padding: 0;
|
2129 |
+
}
|
2130 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a {
|
2131 |
position: relative;
|
2132 |
width: 42px;
|
2181 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before {
|
2182 |
content: "\f00c";
|
2183 |
}
|
2184 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.product_type_external, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.product_type_external {
|
2185 |
+
padding: 0;
|
2186 |
+
margin: 10px 2px 0;
|
2187 |
+
font-size: 0px;
|
2188 |
+
}
|
2189 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.product_type_external:before, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.product_type_external:before {
|
2190 |
+
content: "\f0c1";
|
2191 |
+
display: block;
|
2192 |
+
font-family: "Font Awesome 5 Free";
|
2193 |
+
font-size: 18px;
|
2194 |
+
font-weight: 900;
|
2195 |
+
-webkit-transform: translate(-50%, -50%);
|
2196 |
+
-ms-transform: translate(-50%, -50%);
|
2197 |
+
transform: translate(-50%, -50%);
|
2198 |
+
top: 50%;
|
2199 |
+
left: 50%;
|
2200 |
+
position: absolute;
|
2201 |
+
}
|
2202 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist {
|
2203 |
+
font-size: 0;
|
2204 |
+
}
|
2205 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist i, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist i {
|
2206 |
+
display: none;
|
2207 |
+
}
|
2208 |
+
.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist:after, .eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist:after {
|
2209 |
+
content: "\f004";
|
2210 |
+
font-family: "Font Awesome 5 Free";
|
2211 |
+
font-size: 18px;
|
2212 |
+
text-rendering: auto;
|
2213 |
+
-webkit-font-smoothing: antialiased;
|
2214 |
+
vertical-align: middle;
|
2215 |
+
margin: 0;
|
2216 |
+
padding: 0;
|
2217 |
+
}
|
2218 |
.eael-product-grid.grid .eael-product-wrap .icons-wrap li, .eael-product-grid.masonry .eael-product-wrap .icons-wrap li {
|
2219 |
display: inline-block;
|
2220 |
margin: 0;
|
2289 |
.eael-product-grid.grid.eael-product-preset-6 .product.outofstock .icons-wrap .button, .eael-product-grid.grid.eael-product-preset-7 .product.outofstock .icons-wrap .button, .eael-product-grid.grid.eael-product-preset-8 .product.outofstock .icons-wrap .button, .eael-product-grid.masonry.eael-product-preset-6 .product.outofstock .icons-wrap .button, .eael-product-grid.masonry.eael-product-preset-7 .product.outofstock .icons-wrap .button, .eael-product-grid.masonry.eael-product-preset-8 .product.outofstock .icons-wrap .button {
|
2290 |
display: none;
|
2291 |
}
|
2292 |
+
.eael-product-grid.grid.eael-product-preset-6 .icons-wrap .button.product_type_grouped,
|
2293 |
+
.eael-product-grid.grid.eael-product-preset-6 .icons-wrap .button.product_type_external, .eael-product-grid.grid.eael-product-preset-7 .icons-wrap .button.product_type_grouped,
|
2294 |
+
.eael-product-grid.grid.eael-product-preset-7 .icons-wrap .button.product_type_external, .eael-product-grid.grid.eael-product-preset-8 .icons-wrap .button.product_type_grouped,
|
2295 |
+
.eael-product-grid.grid.eael-product-preset-8 .icons-wrap .button.product_type_external, .eael-product-grid.masonry.eael-product-preset-6 .icons-wrap .button.product_type_grouped,
|
2296 |
+
.eael-product-grid.masonry.eael-product-preset-6 .icons-wrap .button.product_type_external, .eael-product-grid.masonry.eael-product-preset-7 .icons-wrap .button.product_type_grouped,
|
2297 |
+
.eael-product-grid.masonry.eael-product-preset-7 .icons-wrap .button.product_type_external, .eael-product-grid.masonry.eael-product-preset-8 .icons-wrap .button.product_type_grouped,
|
2298 |
+
.eael-product-grid.masonry.eael-product-preset-8 .icons-wrap .button.product_type_external {
|
2299 |
display: none;
|
2300 |
}
|
2301 |
.eael-product-grid.list .woocommerce ul.products li.product {
|
2390 |
filter: drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));
|
2391 |
background-color: #ffffff;
|
2392 |
}
|
2393 |
+
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist {
|
2394 |
+
margin: 0;
|
2395 |
+
padding: 0;
|
2396 |
+
}
|
2397 |
+
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span {
|
2398 |
+
display: none;
|
2399 |
+
}
|
2400 |
+
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a {
|
2401 |
+
font-size: 0;
|
2402 |
+
}
|
2403 |
+
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i {
|
2404 |
+
display: none;
|
2405 |
+
}
|
2406 |
+
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after {
|
2407 |
+
content: "\f004";
|
2408 |
+
font-weight: 900;
|
2409 |
+
font-family: "Font Awesome 5 Free";
|
2410 |
+
font-size: 18px;
|
2411 |
+
text-rendering: auto;
|
2412 |
+
-webkit-font-smoothing: antialiased;
|
2413 |
+
vertical-align: middle;
|
2414 |
+
margin: 0;
|
2415 |
+
padding: 0;
|
2416 |
+
}
|
2417 |
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-cart a {
|
2418 |
padding: 11px 15px !important;
|
2419 |
+
width: auto;
|
2420 |
}
|
2421 |
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a {
|
2422 |
margin: 2px;
|
2423 |
padding: 10.5px 10px;
|
2424 |
+
width: 42px;
|
2425 |
+
height: 42px;
|
2426 |
+
display: -webkit-box;
|
2427 |
+
display: -ms-flexbox;
|
2428 |
+
display: flex;
|
2429 |
+
-webkit-box-pack: center;
|
2430 |
+
-ms-flex-pack: center;
|
2431 |
+
justify-content: center;
|
2432 |
+
-webkit-box-align: center;
|
2433 |
+
-ms-flex-align: center;
|
2434 |
+
align-items: center;
|
2435 |
+
}
|
2436 |
+
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a.add_to_wishlist {
|
2437 |
+
font-size: 0;
|
2438 |
+
}
|
2439 |
+
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a.add_to_wishlist i {
|
2440 |
+
display: none;
|
2441 |
+
}
|
2442 |
+
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a.add_to_wishlist:after {
|
2443 |
+
content: "\f004";
|
2444 |
+
font-family: "Font Awesome 5 Free";
|
2445 |
+
font-size: 18px;
|
2446 |
+
text-rendering: auto;
|
2447 |
+
-webkit-font-smoothing: antialiased;
|
2448 |
+
vertical-align: middle;
|
2449 |
+
margin: 0;
|
2450 |
+
padding: 0;
|
2451 |
}
|
2452 |
.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 {
|
2453 |
display: -webkit-box;
|
2779 |
-ms-transform: none;
|
2780 |
transform: none;
|
2781 |
}
|
2782 |
+
.theme-twentytwentyone .eael-product-default .woocommerce ul.products li.product .button {
|
2783 |
+
margin: 0 auto;
|
2784 |
+
}
|
assets/front-end/css/view/product-grid.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.table-responsive{width:100%;overflow-x:auto;overflow-y:hidden}.eael-wcpc-wrapper img{display:block;margin:auto}.eael-wcpc-wrapper th i{padding-right:10px;color:#dcdcdc}.eael-wcpc-wrapper .wcpc-table-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-wcpc-wrapper .wcpc-table-header .wcpc-title{word-break:break-word}.eael-wcpc-wrapper .elementor-icon{font-size:20px;margin-right:10px}.eael-wcpc-wrapper table td{text-align:center}.eael-wcpc-wrapper.custom{--h-bg: #2d1e87;--h-text-clr: #fff;--h-border-clr: #b6aaff;--text-clr: #707070;--text-bold-clr: #252525;--btn-bg: #6752e5;--btn-bg-hover: #ff9582;--btn-text: #fff;--image-bg: #6b55ec;--container-bg: #fff;--icon-color: #c3ccdc;background:var(--container-bg);overflow-x:scroll}.eael-wcpc-wrapper.custom table{border-collapse:collapse;border-spacing:0;max-width:none}.eael-wcpc-wrapper.custom table .icon{width:16px;margin-right:6px;fill:var(--icon-color)}.eael-wcpc-wrapper.custom table th,.eael-wcpc-wrapper.custom table td{padding:15px;border:1px solid var(--h-border-clr);border-collapse:collapse}.eael-wcpc-wrapper.custom table th.first-th{border:none;padding-left:5px}.eael-wcpc-wrapper.custom table th{color:var(--text-bold-clr);font-weight:normal;max-width:160px;border-left-width:2px;border-collapse:collapse;vertical-align:middle}.eael-wcpc-wrapper.custom table th div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-wcpc-wrapper.custom table td{color:var(--text-clr);text-align:center}.eael-wcpc-wrapper.custom table tr.title{background:var(--h-bg);color:var(--h-text-clr)}.eael-wcpc-wrapper.custom table tr.title th,.eael-wcpc-wrapper.custom table tr.title td{font-size:20px;color:inherit;border:none;border-left:1px solid var(--h-border-clr);border-right:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom table tr.image td{vertical-align:middle;border:none}.eael-wcpc-wrapper.custom table .button{border-radius:5px;background:var(--btn-bg);color:var(--btn-text)}.eael-wcpc-wrapper.custom table .button:hover{background:var(--btn-bg-hover)}.eael-wcpc-wrapper.custom.theme-1 table tr.image td{background:var(--image-bg);border-left:1px solid var(--h-border-clr);border-right:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom.theme-2{--h-bg: #ff9453;--h-border-clr: #f4ede9;--btn-bg: #ff9453;--btn-bg-hover: #6752e5;--even-row-bg: #fbf8f7}.eael-wcpc-wrapper.custom.theme-2 table tr:nth-of-type(even):not(.title){background:var(--even-row-bg)}.eael-wcpc-wrapper.custom.theme-3{--container-bg: #f9fafc;--btn-bg: #ff907e;--btn-bg-hover: #ff907e;--even-row-bg: #f5f5f8;--h-odd-row-bg: #fdfdff;--first-img-bg: linear-gradient(-130deg, #ffd0b0 0%, #ff907e 100%);--second-img-bg: linear-gradient(-130deg, #ada0ff 0%, #7561f2 100%);--third-img-bg: linear-gradient(-130deg, #6fffac 0%, #23d56e 100%);--firt-btn-bg: #ff907e;--second-btn-bg: #7561f2;--third-btn-bg: #23d56e;padding:20px}.eael-wcpc-wrapper.custom.theme-3 table{-webkit-border-horizontal-spacing:10px}.eael-wcpc-wrapper.custom.theme-3 table tr:nth-of-type(even):not(.title){background:var(--even-row-bg)}.eael-wcpc-wrapper.custom.theme-3 table th,.eael-wcpc-wrapper.custom.theme-3 table td{border:none;-webkit-box-sizing:border-box;box-sizing:border-box}.eael-wcpc-wrapper.custom.theme-3 table tr.title td.featured,.eael-wcpc-wrapper.custom.theme-3 table tr:nth-of-type(odd) td.featured{-webkit-box-shadow:18px 0 10px -10px rgba(86,79,127,.06),-18px 0 10px -10px rgba(86,79,127,.06);box-shadow:18px 0 10px -10px rgba(86,79,127,.06),-18px 0 10px -10px rgba(86,79,127,.06)}.eael-wcpc-wrapper.custom.theme-3 table tr.title{background:initial;color:initial}.eael-wcpc-wrapper.custom.theme-3 table tr.title th,.eael-wcpc-wrapper.custom.theme-3 table tr.title td{color:initial;border-left:none;border-right:none}.eael-wcpc-wrapper.custom.theme-3 table tr.image td{background:initial;border-left:none;border-right:none;padding:0}.eael-wcpc-wrapper.custom.theme-3 table tr.image td span{display:block;width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;border-top-left-radius:10px;border-top-right-radius:10px}.eael-wcpc-wrapper.custom.theme-3 table tr.image td>span{padding:20px}.eael-wcpc-wrapper.custom.theme-3 table tr.image td span.inner{padding:0}.eael-wcpc-wrapper.custom.theme-3 table tr.image td.featured span{padding:10px;background:#fff}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+1) .img-inner{background:var(--first-img-bg)}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+2) .img-inner{background:var(--second-img-bg)}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+3) .img-inner{background:var(--third-img-bg)}.eael-wcpc-wrapper.custom.theme-4{--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--text-clr: #707070;--text-bold-clr: #252525;--btn-bg: #613de6;--btn-bg-hover: #ff9582;--btn-text: #fff;--image-bg: none;--container-bg: #f9fafc}.eael-wcpc-wrapper.custom.theme-4 table{background:#fff}.eael-wcpc-wrapper.custom.theme-4 table th.first-th{background:var(--container-bg)}.eael-wcpc-wrapper.custom.theme-4 table tr.title th,.eael-wcpc-wrapper.custom.theme-4 table tr.title td{font-size:20px;color:inherit;border:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom.theme-4 table tr.image td{position:relative;border:1px solid var(--h-border-clr);overflow:hidden}.eael-wcpc-wrapper.custom.theme-4 table tr.image .ribbon{position:absolute;left:-44px;top:10px;background:var(--btn-bg);color:var(--btn-text);padding:3px 50px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center}.eael-wcpc-wrapper.custom.theme-4 table tr.image .product-title,.eael-wcpc-wrapper.custom.theme-4 table tr.image .woocommerce-Price-amount{font-size:18px;font-weight:bold}.eael-wcpc-wrapper.custom.theme-4 table tr.image .product-title{color:var(--text-bold-clr);margin:0 auto 10px}.eael-wcpc-wrapper.custom.theme-4 table tr.image .woocommerce-Price-amount{color:var(--btn-bg)}.eael-wcpc-wrapper.custom.theme-5{--first-row-color: #fff;--first-col-bg: #6a3ee8;--second-col-bg: #3e5ae8;--third-col-bg: #15e9c9;--first-img-bg: #f4f0ff;--second-img-bg: #eaedff;--third-img-bg: #e5fffb;--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--first-btn-bg: #6a3ee8;--second-btn-bg: #3e5ae8;--third-btn-bg: #15e9c9;--image-bg: none}.eael-wcpc-wrapper.custom.theme-5 table th{border:none}.eael-wcpc-wrapper.custom.theme-5 table th.first-th{background:var(--container-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+1) .button{background:var(--first-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+1) .button:hover{background:#5827e5}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+2) .button{background:var(--second-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+2) .button:hover{background:#2747e5}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+3) .button{background:var(--third-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+3) .button:hover{background:#13d2b5}.eael-wcpc-wrapper.custom.theme-5 table tr.title th,.eael-wcpc-wrapper.custom.theme-5 table tr.title td{font-size:20px;color:inherit;border:none}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+1){background:var(--first-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+2){background:var(--second-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+3){background:var(--third-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+1){background:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+2){background:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+3){background:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td,.eael-wcpc-wrapper.custom.theme-5 table tr.title td{border:none;border-right:2px solid var(--first-row-color);color:var(--first-row-color)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:last-child,.eael-wcpc-wrapper.custom.theme-5 table tr.title td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6{--container-bg: #f0eff6;--first-row-color: #fff;--first-col-bg: #fd907b;--second-col-bg: #7f6cf4;--third-col-bg: #3ae281;--first-img-bg: #f4f0ff;--second-img-bg: #eaedff;--third-img-bg: #e5fffb;--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--image-bg: none}.eael-wcpc-wrapper.custom.theme-6 table tr.title th,.eael-wcpc-wrapper.custom.theme-6 table tr.title td{border-left:0;border-right:0}.eael-wcpc-wrapper.custom.theme-6 table tr.title td{color:#fff}.eael-wcpc-wrapper.custom.theme-6 table tr,.eael-wcpc-wrapper.custom.theme-6 table th,.eael-wcpc-wrapper.custom.theme-6 table td{border:none}.eael-wcpc-wrapper.custom.theme-6 table td{color:#fff;border-right:20px solid #fff}.eael-wcpc-wrapper.custom.theme-6 table td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1){background:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2){background:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3){background:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) th,.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td{background:#f7f6fa}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+1){background:#fec1b5}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+2){background:#b7adf9}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+3){background:#91efb8}.eael-wcpc-wrapper.custom.theme-6 table tr.image td,.eael-wcpc-wrapper.custom.theme-6 table tr.title td{border:none;border-right:20px solid #fff}.eael-wcpc-wrapper.custom.theme-6 table tr.image td:last-child,.eael-wcpc-wrapper.custom.theme-6 table tr.title td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6 table .button{background:#fff}.eael-wcpc-wrapper.custom.theme-6 table .button:hover{background:#fff}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1) .button{color:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1) .button:hover{color:#fb3c17}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2) .button{color:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2) .button:hover{color:#2f11e9}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3) .button{color:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3) .button:hover{color:#179f51}.eael-wcpc-wrapper.custom.theme-6 .img-inner{display:block;background:rgba(228,228,228,.45);border-radius:6px}@media screen and (min-width: 769px){.eael-wcpc-wrapper:not(.theme-4) tr.image td{padding:10px}.theme-4 tr.image td{padding:50px 10px}}.eael-product-grid .woocommerce ul.products,.eael-post-grid .woocommerce ul.products{display:grid;grid-gap:25px;margin:0 0 15px 0;padding:0 !important}.eael-product-grid .woocommerce ul.products:before,.eael-product-grid .woocommerce ul.products:after,.eael-post-grid .woocommerce ul.products:before,.eael-post-grid .woocommerce ul.products:after{display:none}.eael-product-grid .woocommerce ul.products .product,.eael-post-grid .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;cursor:pointer;color:#fff;background-color:#333;margin:15px}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare:hover,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare:hover{color:#fff;background-color:#333}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare-loader,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare-loader{display:none;width:1.5rem}.eael-product-grid .woocommerce ul.products .product .star-rating,.eael-post-grid .woocommerce ul.products .product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-grid .woocommerce ul.products .product .star-rating:before,.eael-post-grid .woocommerce ul.products .product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-grid .woocommerce ul.products .product .star-rating span,.eael-post-grid .woocommerce ul.products .product .star-rating span{display:inline-block}.eael-product-grid .woocommerce ul.products .product .star-rating span:before,.eael-post-grid .woocommerce ul.products .product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid .woocommerce ul.products li.product,.eael-post-grid .woocommerce ul.products li.product{width:100%}.eael-product-grid .woocommerce ul.products.products[class*=columns-] li.product,.eael-post-grid .woocommerce ul.products.products[class*=columns-] li.product{width:100%}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product{position:relative;float:left;display:block;overflow:hidden;text-align:center;padding:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a{text-decoration:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product img{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:auto;margin:auto;max-width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .outofstock-badge,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;border-radius:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.product_type_variable:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.product_type_variable:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button:focus,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button:focus,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before{content:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare{color:#fff;background-color:#333}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:transparent}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product{border:1px solid #eee}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product{border:1px solid transparent}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{visibility:hidden;-webkit-transition:none;-o-transition:none;transition:none}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover{border:1px solid #eee}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart{visibility:visible}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product{position:relative;float:left;overflow:hidden;text-align:center;padding:0 0 15px 0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a{text-decoration:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:100%;height:auto;margin:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay{position:relative;overflow:hidden;line-height:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap{position:absolute;top:50%;left:0;right:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;line-height:38px;text-align:center;color:#fff;background-color:#333;width:38px;height:38px;border-style:none;border-radius:50%;vertical-align:middle;padding:0;margin:0 5px;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);opacity:0;-webkit-transition:opacity 300ms,-webkit-transform 200ms;transition:opacity 300ms,-webkit-transform 200ms;-o-transition:transform 200ms,opacity 300ms;transition:transform 200ms,opacity 300ms;transition:transform 200ms,opacity 300ms,-webkit-transform 200ms}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus{outline:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after{content:"";font-size:14px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0;font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.product_type_variable:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.product_type_variable:after{content:""}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after{content:"";display:inline-block;font-weight:normal;font-family:"Font Awesome 5 Free";font-size:14px;line-height:38px;color:#fff;height:auto;width:auto;position:relative;top:0;left:0;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after{content:"";font-family:"Font Awesome 5 Free";font-size:14px;line-height:38px;font-weight:900;color:#fff;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:9;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .eael-wc-compare{padding:5px !important}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .eael-wc-compare,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-product-grid.eael-product-default .woocommerce ul.products li.product,.eael-post-grid.eael-product-default .woocommerce ul.products li.product{overflow:visible !important}.eael-product-grid.eael-product-default .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-default .woocommerce ul.products li.product .onsale{line-height:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.eael-product-default .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-default .woocommerce ul.products li.product .outofstock-badge{min-height:3.746em;min-width:3.746em;padding:.502em;font-size:13px;font-weight:700;position:absolute;text-align:center;line-height:1.25;top:-0.5em;left:-0.5em;margin:0;border-radius:50%;background-color:#ff2a13;color:#fff;font-size:.857em;z-index:9}.eael-product-grid.eael-product-default .button.add_to_cart_button::before,.eael-post-grid.eael-product-default .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.eael-product-preset-5 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-7 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-8 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-5 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-7 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-8 ul.products li.product .image-wrap img{-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-wcpc-modal{position:fixed;top:50px;right:0;bottom:50px;left:0;margin-left:auto;margin-right:auto;width:1080px;max-width:90%;background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:9999999}.modal__content{width:100%;height:100%;overflow:hidden auto}.wcpc-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:10;background:rgba(0,0,0,.5);pointer-events:none}.wcpc-overlay,.eael-wcpc-modal{visibility:hidden;opacity:0;-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease}.close-modal{position:absolute;top:-10px;right:-10px;cursor:pointer;display:block;border-radius:50%;color:#fff;background:#000;font-size:30px;font-weight:bold;text-align:center;line-height:23px;-webkit-box-shadow:-1px 0px 3px 0 #000;box-shadow:-1px 0px 3px 0 #000;-webkit-transition:-webkit-transform 300ms ease;transition:-webkit-transform 300ms ease;-o-transition:transform 300ms ease;transition:transform 300ms ease;transition:transform 300ms ease, -webkit-transform 300ms ease}.eael-wcpc-wrapper .eael-wc-remove,.eael-wcpc-wrapper.custom .eael-wc-remove{cursor:pointer;-webkit-transition:all 400ms ease;-o-transition:all 400ms ease;transition:all 400ms ease}.eael-wcpc-wrapper .eael-wc-remove.disable,.eael-wcpc-wrapper.custom .eael-wc-remove.disable{color:#a0a0a0 !important;-webkit-transform:scale(1) !important;-ms-transform:scale(1) !important;transform:scale(1) !important}.eael-wcpc-wrapper .eael-wc-remove:hover,.eael-wcpc-wrapper.custom .eael-wc-remove:hover{color:red;-webkit-transform:scale(2);-ms-transform:scale(2);transform:scale(2)}.eael-wcpc-wrapper .remove-row,.eael-wcpc-wrapper.custom .remove-row{border:none}.eael-wcpc-wrapper .remove-row th,.eael-wcpc-wrapper .remove-row td,.eael-wcpc-wrapper.custom .remove-row th,.eael-wcpc-wrapper.custom .remove-row td{border:none;text-align:center}.eael-product-grid .woocommerce ul.products li.product a img{margin-bottom:0;display:block;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid .woocommerce ul.products li.product .woocommerce-loop-product__title{letter-spacing:normal;font-weight:700;text-transform:capitalize}.eael-product-grid .woocommerce ul.products li.product ins{background:transparent}.eael-product-grid .woocommerce ul.products li.product .button{text-transform:capitalize;border:none;letter-spacing:normal;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid .woocommerce ul.products li.product .button:hover,.eael-product-grid .woocommerce ul.products li.product .button:visited{text-decoration:none}.eael-product-grid .woocommerce ul.products li.product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-grid .woocommerce ul.products li.product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-grid .woocommerce ul.products li.product .star-rating span{display:inline-block}.eael-product-grid .woocommerce ul.products li.product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid .eael-woo-pagination ul{display:inline-block;text-align:center;white-space:nowrap;padding:0;clear:both;border:0;margin:1px;width:auto}.eael-product-grid .eael-woo-pagination ul li{display:inline-block;margin:0 5px 5px 0;padding:0;float:left;overflow:hidden}.eael-product-grid .eael-woo-pagination ul li .page-numbers{margin:0;text-decoration:none;color:#000000bd;line-height:1;font-size:1em;font-weight:normal;padding:.75em;display:block;min-width:2.5em;-webkit-box-sizing:inherit;box-sizing:inherit;border:none}.eael-product-grid .eael-woo-pagination ul li .page-numbers.current,.eael-product-grid .eael-woo-pagination ul li .page-numbers:hover,.eael-product-grid .eael-woo-pagination ul li .page-numbers:focus{color:#fff;background:#000000bd}.eael-product-grid .woocommerce ul.products .product{overflow-y:auto}.eael-product-grid .eael-load-more-button-wrap{clear:both;margin-top:40px}.eael-product-grid .eael-product-wrap .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;display:inline-table;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2.outofstock{line-height:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2.right{left:auto;right:5px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3.right{left:auto;right:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:10px solid #23a454;content:""}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.right{left:auto;right:0}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.right:after{right:auto;left:-15px;border-left:0;border-right:10px solid #23a454}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-39px;top:-10px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5.right{left:auto;right:-35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.eael-product-grid .eael-product-wrap .eael-product-title h2{font-size:20px;line-height:1.2em;color:#252525;font-weight:500;margin:0 0 8px;padding:0}.eael-product-grid .eael-product-wrap .eael-product-title h2:before{content:none}.eael-product-grid .eael-product-wrap .eael-product-price{font-size:18px;line-height:1.2em;color:#ff7a80;font-weight:600;margin-bottom:10px}.eael-product-grid .eael-product-wrap .star-rating{margin:0 auto 10px}.eael-product-grid .eael-product-wrap a.button.add_to_cart_button.added{display:none !important}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.box-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.box-style{bottom:30px;visibility:visible;opacity:1}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.block-box-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.block-box-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.block-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.grid .eael-product-wrap .product-image-wrap,.eael-product-grid.masonry .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden}.eael-product-grid.grid .eael-product-wrap .icons-wrap,.eael-product-grid.masonry .eael-product-wrap .icons-wrap{padding:0;list-style:none;position:absolute;z-index:9;display:block;top:50%;left:0;right:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:0;visibility:hidden;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin:0 auto;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;width:100%;top:auto;bottom:-50px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li:not(:last-child),.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li:not(:last-child){border-right:1px solid #fff}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a{position:relative;background-color:transparent;margin:0;padding:10px 5px;font-size:15px;line-height:1.2em;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a:hover,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a:hover{background-color:transparent;color:#000}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a i{line-height:normal}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:auto;bottom:-100px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:visible;opacity:1;top:auto;bottom:-24px;margin:0 5%}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button{padding:0;margin:0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external{width:auto;height:auto}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style{background:#fff;width:100%;top:auto;bottom:-50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a{position:relative;width:42px;height:42px;margin:10px 2px 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button{padding:0;margin:10px 2px 0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap li,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a{display:block;position:absolute;color:#000;width:100%;height:100%;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a:hover,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px;line-height:42px}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a svg,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-grid.grid .eael-product-wrap .product-details-wrap,.eael-product-grid.masonry .eael-product-wrap .product-details-wrap{padding:10px}.eael-product-grid.masonry .woocommerce ul.products{display:block}@media(min-width: 766px){.eael-product-grid.masonry .woocommerce ul.products{margin:0 -1% !important}}.eael-product-grid.masonry .woocommerce ul.products:before,.eael-product-grid.masonry .woocommerce ul.products:after{display:table;content:" "}.eael-product-grid.masonry .woocommerce ul.products li.product{float:left;margin:15px 0}@media(min-width: 766px){.eael-product-grid.masonry .woocommerce ul.products li.product{margin:1%}}.eael-product-grid.grid.eael-product-preset-8 .product-image-wrap,.eael-product-grid.masonry.eael-product-preset-8 .product-image-wrap{overflow:inherit}.eael-product-grid.grid.eael-product-preset-8 .product-details-wrap>div:first-child,.eael-product-grid.masonry.eael-product-preset-8 .product-details-wrap>div:first-child{margin-top:20px}.eael-product-grid.grid.eael-product-preset-5 ul.products,.eael-product-grid.grid.eael-product-preset-6 ul.products,.eael-product-grid.grid.eael-product-preset-7 ul.products,.eael-product-grid.grid.eael-product-preset-8 ul.products,.eael-product-grid.masonry.eael-product-preset-5 ul.products,.eael-product-grid.masonry.eael-product-preset-6 ul.products,.eael-product-grid.masonry.eael-product-preset-7 ul.products,.eael-product-grid.masonry.eael-product-preset-8 ul.products{padding:0;margin:0;list-style:none}.eael-product-grid.grid.eael-product-preset-5 ul.products li.product,.eael-product-grid.grid.eael-product-preset-6 ul.products li.product,.eael-product-grid.grid.eael-product-preset-7 ul.products li.product,.eael-product-grid.grid.eael-product-preset-8 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-5 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-6 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-7 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-8 ul.products li.product{text-align:center;border:1px solid #000;overflow:hidden}.eael-product-grid.grid.eael-product-preset-5 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-6 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-7 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-8 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-5 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-6 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-7 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-8 ul.products li.product.first{clear:none}.eael-product-grid.grid.eael-product-preset-6 .product.outofstock .icons-wrap .button,.eael-product-grid.grid.eael-product-preset-7 .product.outofstock .icons-wrap .button,.eael-product-grid.grid.eael-product-preset-8 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-6 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-7 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-8 .product.outofstock .icons-wrap .button{display:none}.eael-product-grid.grid.eael-product-preset-6 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-7 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-8 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-6 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-7 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-8 .icons-wrap .button.product_type_grouped{display:none}.eael-product-grid.list .woocommerce ul.products li.product{overflow:hidden}.eael-product-grid.list .woocommerce ul.products li.product .woocommerce-loop-product__link img{margin-bottom:0}.eael-product-grid.list .woocommerce ul.products li.product .star-rating{margin:0 auto 10px 0}.eael-product-grid.list .eael-product-list-preset-2 .eael-product-wrap{padding:20px}.eael-product-grid.list .eael-product-list-preset-2 .eael-product-wrap .product-details-wrap{padding:0 0 0 25px}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap{padding:0;background-color:transparent}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .product-details-wrap{padding:0 0 0 25px}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .title-wrap,.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .price-wrap{margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid}.eael-product-grid.list .eael-product-list-preset-4 .eael-product-wrap{padding:0}.eael-product-grid.list .eael-product-list-preset-4 .eael-product-wrap .product-details-wrap{padding:20px;margin-left:20px}.eael-product-grid.list .eael-product-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-grid.list .eael-product-wrap:hover .icons-wrap.box-style{-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);visibility:visible;opacity:1}.eael-product-grid.list .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.list .eael-product-wrap .icons-wrap{padding:0;margin:0;list-style:none;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;height:50px;width:100%;top:auto;bottom:-50px}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li a{position:relative}.eael-product-grid.list .eael-product-wrap .icons-wrap.box-style li{width:42px;height:42px;-webkit-filter:drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));filter:drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));background-color:#fff}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-cart a{padding:11px 15px !important}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a{margin:2px;padding:10.5px 10px}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li:not(:first-child) a{border-left-width:0 !important}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li.add-to-cart a{padding:8.5px 10px;margin:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li a{border:2px solid #ddd}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li a.eael-wc-compare.eael-wc-compare-icon{margin:2px}.eael-product-grid.list .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0;vertical-align:top}.eael-product-grid.list .eael-product-wrap .icons-wrap li a{display:block;color:#000;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s;background:#ffebcd;padding:9px 10px;font-size:15px;line-height:1.4em;font-weight:700;cursor:pointer}.eael-product-grid.list .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-grid.list .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px}.eael-product-grid.list .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-grid.list .eael-product-wrap .icons-wrap li a.button{font-size:15px;line-height:1.4em}.eael-product-grid.list .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden;width:45%;margin:0}.eael-product-grid.list .eael-product-wrap .product-details-wrap{width:55%;padding:25px;text-align:left !important}.eael-product-grid.list .eael-product-wrap .eael-product-price{margin-bottom:5px}.eael-product-grid.list .eael-product-wrap .eael-product-excerpt p{margin:0 0 10px}@media only screen and (min-width: 1025px){.eael-product-grid-column-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48%}.eael-product-grid-column-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-grid-column-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23%}.eael-product-grid-column-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18%}.eael-product-grid-column-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 1024px)and (min-width: 766px){.eael-product-grid-column-tablet-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-tablet-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-tablet-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-tablet-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-tablet-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-tablet-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-tablet-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-tablet-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-tablet-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-tablet-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48%}.eael-product-grid-column-tablet-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-grid-column-tablet-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23%}.eael-product-grid-column-tablet-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18%}.eael-product-grid-column-tablet-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 767px){.eael-product-grid-column-mobile-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-mobile-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-mobile-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-mobile-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-mobile-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-mobile-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap,.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{width:100%}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap{margin-bottom:15px}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{padding:0;margin:0}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap,.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{width:100%}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap{margin-bottom:15px}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{padding:0;margin:0}.eael-product-grid-column-mobile-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-mobile-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48% !important;margin:1%}.eael-product-grid-column-mobile-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333% !important;margin:1%}.eael-product-grid-column-mobile-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23% !important;margin:1%}.eael-product-grid-column-mobile-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18% !important;margin:1%}.eael-product-grid-column-mobile-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667% !important;margin:1%}}.eael-product-loader{position:relative}.eael-product-loader::after{border-radius:50%;width:50px;height:50px;position:absolute;content:"";border-top:4px solid rgba(0,0,0,.2);border-right:4px solid rgba(0,0,0,.2);border-bottom:4px solid rgba(0,0,0,.2);border-left:4px solid #000;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-animation:loaderSpin 1.1s infinite linear;animation:loaderSpin 1.1s infinite linear;left:48%;top:40%;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link{position:unset;display:unset}.eael-product-grid .woocommerce ul.products li.product .ast-shop-product-out-of-stock{display:none}.theme-blocksy .button:before{-ms-filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";-webkit-filter:none !important;filter:none !important;opacity:1;z-index:0;bottom:0 !important;right:0;line-height:1.2em}.theme-blocksy .button:hover{-webkit-transform:none;-ms-transform:none;transform:none}
|
1 |
+
.table-responsive{width:100%;overflow-x:auto;overflow-y:hidden}.eael-wcpc-wrapper img{display:block;margin:auto}.eael-wcpc-wrapper th i{padding-right:10px;color:#dcdcdc}.eael-wcpc-wrapper .wcpc-table-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-wcpc-wrapper .wcpc-table-header .wcpc-title{word-break:break-word}.eael-wcpc-wrapper .elementor-icon{font-size:20px;margin-right:10px}.eael-wcpc-wrapper table td{text-align:center}.eael-wcpc-wrapper.custom{--h-bg: #2d1e87;--h-text-clr: #fff;--h-border-clr: #b6aaff;--text-clr: #707070;--text-bold-clr: #252525;--btn-bg: #6752e5;--btn-bg-hover: #ff9582;--btn-text: #fff;--image-bg: #6b55ec;--container-bg: #fff;--icon-color: #c3ccdc;background:var(--container-bg);overflow-x:scroll}.eael-wcpc-wrapper.custom table{border-collapse:collapse;border-spacing:0;max-width:none}.eael-wcpc-wrapper.custom table .icon{width:16px;margin-right:6px;fill:var(--icon-color)}.eael-wcpc-wrapper.custom table th,.eael-wcpc-wrapper.custom table td{padding:15px;border:1px solid var(--h-border-clr);border-collapse:collapse}.eael-wcpc-wrapper.custom table th.first-th{border:none;padding-left:5px}.eael-wcpc-wrapper.custom table th{color:var(--text-bold-clr);font-weight:normal;max-width:160px;border-left-width:2px;border-collapse:collapse;vertical-align:middle}.eael-wcpc-wrapper.custom table th div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-wcpc-wrapper.custom table td{color:var(--text-clr);text-align:center}.eael-wcpc-wrapper.custom table tr.title{background:var(--h-bg);color:var(--h-text-clr)}.eael-wcpc-wrapper.custom table tr.title th,.eael-wcpc-wrapper.custom table tr.title td{font-size:20px;color:inherit;border:none;border-left:1px solid var(--h-border-clr);border-right:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom table tr.image td{vertical-align:middle;border:none}.eael-wcpc-wrapper.custom table .button{border-radius:5px;background:var(--btn-bg);color:var(--btn-text)}.eael-wcpc-wrapper.custom table .button:hover{background:var(--btn-bg-hover)}.eael-wcpc-wrapper.custom.theme-1 table tr.image td{background:var(--image-bg);border-left:1px solid var(--h-border-clr);border-right:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom.theme-2{--h-bg: #ff9453;--h-border-clr: #f4ede9;--btn-bg: #ff9453;--btn-bg-hover: #6752e5;--even-row-bg: #fbf8f7}.eael-wcpc-wrapper.custom.theme-2 table tr:nth-of-type(even):not(.title){background:var(--even-row-bg)}.eael-wcpc-wrapper.custom.theme-3{--container-bg: #f9fafc;--btn-bg: #ff907e;--btn-bg-hover: #ff907e;--even-row-bg: #f5f5f8;--h-odd-row-bg: #fdfdff;--first-img-bg: linear-gradient(-130deg, #ffd0b0 0%, #ff907e 100%);--second-img-bg: linear-gradient(-130deg, #ada0ff 0%, #7561f2 100%);--third-img-bg: linear-gradient(-130deg, #6fffac 0%, #23d56e 100%);--firt-btn-bg: #ff907e;--second-btn-bg: #7561f2;--third-btn-bg: #23d56e;padding:20px}.eael-wcpc-wrapper.custom.theme-3 table{-webkit-border-horizontal-spacing:10px}.eael-wcpc-wrapper.custom.theme-3 table tr:nth-of-type(even):not(.title){background:var(--even-row-bg)}.eael-wcpc-wrapper.custom.theme-3 table th,.eael-wcpc-wrapper.custom.theme-3 table td{border:none;-webkit-box-sizing:border-box;box-sizing:border-box}.eael-wcpc-wrapper.custom.theme-3 table tr.title td.featured,.eael-wcpc-wrapper.custom.theme-3 table tr:nth-of-type(odd) td.featured{-webkit-box-shadow:18px 0 10px -10px rgba(86,79,127,.06),-18px 0 10px -10px rgba(86,79,127,.06);box-shadow:18px 0 10px -10px rgba(86,79,127,.06),-18px 0 10px -10px rgba(86,79,127,.06)}.eael-wcpc-wrapper.custom.theme-3 table tr.title{background:initial;color:initial}.eael-wcpc-wrapper.custom.theme-3 table tr.title th,.eael-wcpc-wrapper.custom.theme-3 table tr.title td{color:initial;border-left:none;border-right:none}.eael-wcpc-wrapper.custom.theme-3 table tr.image td{background:initial;border-left:none;border-right:none;padding:0}.eael-wcpc-wrapper.custom.theme-3 table tr.image td span{display:block;width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;border-top-left-radius:10px;border-top-right-radius:10px}.eael-wcpc-wrapper.custom.theme-3 table tr.image td>span{padding:20px}.eael-wcpc-wrapper.custom.theme-3 table tr.image td span.inner{padding:0}.eael-wcpc-wrapper.custom.theme-3 table tr.image td.featured span{padding:10px;background:#fff}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+1) .img-inner{background:var(--first-img-bg)}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+2) .img-inner{background:var(--second-img-bg)}.eael-wcpc-wrapper.custom.theme-3 table tr.image td:nth-of-type(3n+3) .img-inner{background:var(--third-img-bg)}.eael-wcpc-wrapper.custom.theme-4{--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--text-clr: #707070;--text-bold-clr: #252525;--btn-bg: #613de6;--btn-bg-hover: #ff9582;--btn-text: #fff;--image-bg: none;--container-bg: #f9fafc}.eael-wcpc-wrapper.custom.theme-4 table{background:#fff}.eael-wcpc-wrapper.custom.theme-4 table th.first-th{background:var(--container-bg)}.eael-wcpc-wrapper.custom.theme-4 table tr.title th,.eael-wcpc-wrapper.custom.theme-4 table tr.title td{font-size:20px;color:inherit;border:1px solid var(--h-border-clr)}.eael-wcpc-wrapper.custom.theme-4 table tr.image td{position:relative;border:1px solid var(--h-border-clr);overflow:hidden}.eael-wcpc-wrapper.custom.theme-4 table tr.image .ribbon{position:absolute;left:-44px;top:10px;background:var(--btn-bg);color:var(--btn-text);padding:3px 50px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center}.eael-wcpc-wrapper.custom.theme-4 table tr.image .product-title,.eael-wcpc-wrapper.custom.theme-4 table tr.image .woocommerce-Price-amount{font-size:18px;font-weight:bold}.eael-wcpc-wrapper.custom.theme-4 table tr.image .product-title{color:var(--text-bold-clr);margin:0 auto 10px}.eael-wcpc-wrapper.custom.theme-4 table tr.image .woocommerce-Price-amount{color:var(--btn-bg)}.eael-wcpc-wrapper.custom.theme-5{--first-row-color: #fff;--first-col-bg: #6a3ee8;--second-col-bg: #3e5ae8;--third-col-bg: #15e9c9;--first-img-bg: #f4f0ff;--second-img-bg: #eaedff;--third-img-bg: #e5fffb;--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--first-btn-bg: #6a3ee8;--second-btn-bg: #3e5ae8;--third-btn-bg: #15e9c9;--image-bg: none}.eael-wcpc-wrapper.custom.theme-5 table th{border:none}.eael-wcpc-wrapper.custom.theme-5 table th.first-th{background:var(--container-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+1) .button{background:var(--first-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+1) .button:hover{background:#5827e5}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+2) .button{background:var(--second-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+2) .button:hover{background:#2747e5}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+3) .button{background:var(--third-btn-bg)}.eael-wcpc-wrapper.custom.theme-5 table td:nth-of-type(3n+3) .button:hover{background:#13d2b5}.eael-wcpc-wrapper.custom.theme-5 table tr.title th,.eael-wcpc-wrapper.custom.theme-5 table tr.title td{font-size:20px;color:inherit;border:none}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+1){background:var(--first-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+2){background:var(--second-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:nth-of-type(3n+3){background:var(--third-img-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+1){background:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+2){background:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.title td:nth-of-type(3n+3){background:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td,.eael-wcpc-wrapper.custom.theme-5 table tr.title td{border:none;border-right:2px solid var(--first-row-color);color:var(--first-row-color)}.eael-wcpc-wrapper.custom.theme-5 table tr.image td:last-child,.eael-wcpc-wrapper.custom.theme-5 table tr.title td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6{--container-bg: #f0eff6;--first-row-color: #fff;--first-col-bg: #fd907b;--second-col-bg: #7f6cf4;--third-col-bg: #3ae281;--first-img-bg: #f4f0ff;--second-img-bg: #eaedff;--third-img-bg: #e5fffb;--h-bg: none;--h-text-clr: #707070;--h-border-clr: #e8ebf0;--image-bg: none}.eael-wcpc-wrapper.custom.theme-6 table tr.title th,.eael-wcpc-wrapper.custom.theme-6 table tr.title td{border-left:0;border-right:0}.eael-wcpc-wrapper.custom.theme-6 table tr.title td{color:#fff}.eael-wcpc-wrapper.custom.theme-6 table tr,.eael-wcpc-wrapper.custom.theme-6 table th,.eael-wcpc-wrapper.custom.theme-6 table td{border:none}.eael-wcpc-wrapper.custom.theme-6 table td{color:#fff;border-right:20px solid #fff}.eael-wcpc-wrapper.custom.theme-6 table td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1){background:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2){background:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3){background:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) th,.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td{background:#f7f6fa}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+1){background:#fec1b5}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+2){background:#b7adf9}.eael-wcpc-wrapper.custom.theme-6 table tr:nth-of-type(even) td:nth-of-type(3n+3){background:#91efb8}.eael-wcpc-wrapper.custom.theme-6 table tr.image td,.eael-wcpc-wrapper.custom.theme-6 table tr.title td{border:none;border-right:20px solid #fff}.eael-wcpc-wrapper.custom.theme-6 table tr.image td:last-child,.eael-wcpc-wrapper.custom.theme-6 table tr.title td:last-child{border-right:none}.eael-wcpc-wrapper.custom.theme-6 table .button{background:#fff}.eael-wcpc-wrapper.custom.theme-6 table .button:hover{background:#fff}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1) .button{color:var(--first-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+1) .button:hover{color:#fb3c17}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2) .button{color:var(--second-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+2) .button:hover{color:#2f11e9}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3) .button{color:var(--third-col-bg)}.eael-wcpc-wrapper.custom.theme-6 table td:nth-of-type(3n+3) .button:hover{color:#179f51}.eael-wcpc-wrapper.custom.theme-6 .img-inner{display:block;background:rgba(228,228,228,.45);border-radius:6px}@media screen and (min-width: 769px){.eael-wcpc-wrapper:not(.theme-4) tr.image td{padding:10px}.theme-4 tr.image td{padding:50px 10px}}.eael-product-grid .woocommerce ul.products,.eael-post-grid .woocommerce ul.products{display:grid;grid-gap:25px;margin:0 0 15px 0;padding:0 !important}.eael-product-grid .woocommerce ul.products:before,.eael-product-grid .woocommerce ul.products:after,.eael-post-grid .woocommerce ul.products:before,.eael-post-grid .woocommerce ul.products:after{display:none}.eael-product-grid .woocommerce ul.products .product,.eael-post-grid .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around;cursor:pointer;color:#fff;background-color:#333;margin:15px}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare:hover,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare:hover{color:#fff;background-color:#333}.eael-product-grid .woocommerce ul.products .product .eael-wc-compare-loader,.eael-post-grid .woocommerce ul.products .product .eael-wc-compare-loader{display:none;width:1.5rem}.eael-product-grid .woocommerce ul.products .product .star-rating,.eael-post-grid .woocommerce ul.products .product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-grid .woocommerce ul.products .product .star-rating:before,.eael-post-grid .woocommerce ul.products .product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-grid .woocommerce ul.products .product .star-rating span,.eael-post-grid .woocommerce ul.products .product .star-rating span{display:inline-block}.eael-product-grid .woocommerce ul.products .product .star-rating span:before,.eael-post-grid .woocommerce ul.products .product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid .woocommerce ul.products li.product,.eael-post-grid .woocommerce ul.products li.product{width:100%}.eael-product-grid .woocommerce ul.products.products[class*=columns-] li.product,.eael-post-grid .woocommerce ul.products.products[class*=columns-] li.product{width:100%}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product{position:relative;float:left;display:block;overflow:hidden;text-align:center;padding:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a{text-decoration:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product img,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product img,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product img{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:auto;margin:auto;max-width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .outofstock-badge,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;border-radius:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.product_type_variable:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.product_type_variable:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button:focus,.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button:focus,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button:focus,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button.add_to_cart_button:focus,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button:focus,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product.button.product_type_external,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product.button.product_type_external,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product.button.product_type_external,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product.button.product_type_external{padding:0;margin:0;font-size:0px}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product.button.product_type_external:before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product.button.product_type_external:before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product.button.product_type_external:before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product.button.product_type_external:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .button::before,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button::before{content:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare{color:#fff;background-color:#333}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:transparent}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist{margin:0 auto}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist{margin:0 15px 15px 15px;padding:7px;color:#fff;background-color:#333}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span{display:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a{font-size:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i{display:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a{font-size:0;vertical-align:middle;display:inline-block;color:inherit}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a i,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a i,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a i,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a i{display:none}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a:after,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a:after,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product .add-to-whishlist a:after,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist a:after{content:"";font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-simple .woocommerce ul.products li.product,.eael-post-grid.eael-product-simple .woocommerce ul.products li.product{border:1px solid #eee}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product{border:1px solid transparent}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product .add-to-whishlist{visibility:hidden;-webkit-transition:none;-o-transition:none;transition:none}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover{border:1px solid #eee}.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,.eael-product-grid.eael-product-reveal .woocommerce ul.products li.product:hover .add-to-whishlist,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .eael-wc-compare,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .button.add_to_cart_button,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover a.added_to_cart,.eael-post-grid.eael-product-reveal .woocommerce ul.products li.product:hover .add-to-whishlist{visibility:visible}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product{position:relative;float:left;overflow:hidden;text-align:center;padding:0 0 15px 0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product.outofstock .button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product.outofstock .button{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a{text-decoration:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product a:hover,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product img,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product img{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:100%;height:auto;margin:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay{position:relative;overflow:hidden;line-height:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .button-wrap{position:absolute;top:50%;left:0;right:0;text-align:center;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;line-height:38px;text-align:center;color:#fff;background-color:#333;width:38px;height:38px;border-style:none;border-radius:50%;vertical-align:middle;padding:0;margin:0 5px;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);opacity:0;-webkit-transition:opacity 300ms,-webkit-transform 200ms;transition:opacity 300ms,-webkit-transform 200ms;-o-transition:transform 200ms,opacity 300ms;transition:transform 200ms,opacity 300ms;transition:transform 200ms,opacity 300ms,-webkit-transform 200ms}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .eael-wc-compare:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .product-link:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:focus,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a:focus{outline:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:before{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button:after{content:"";font-size:14px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0;font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.product_type_variable:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.product_type_variable:after{content:""}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:before{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add_to_cart_button.loading:after{content:"";display:inline-block;font-weight:normal;font-family:"Font Awesome 5 Free";font-size:14px;line-height:38px;color:#fff;height:auto;width:auto;position:relative;top:0;left:0;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .added_to_cart:after{content:"";font-family:"Font Awesome 5 Free";font-size:14px;line-height:38px;font-weight:900;color:#fff;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay.button.product_type_external,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay.button.product_type_external{padding:0;margin:0;font-size:0px}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay.button.product_type_external:before,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay.button.product_type_external:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist{margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists span{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a{font-size:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a i,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a i{display:none}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a:after,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .overlay .add-to-whishlist a:after{content:"";font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:9;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price del,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .price ins,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product .eael-wc-compare{padding:5px !important}.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .eael-wc-compare,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-product-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .eael-wc-compare,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay a,.eael-post-grid.eael-product-overlay .woocommerce ul.products li.product:hover .overlay .add_to_cart_button{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.eael-product-grid.eael-product-default .woocommerce ul.products li.product,.eael-post-grid.eael-product-default .woocommerce ul.products li.product{overflow:visible !important}.eael-product-grid.eael-product-default .woocommerce ul.products li.product .onsale,.eael-post-grid.eael-product-default .woocommerce ul.products li.product .onsale{line-height:inherit;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.eael-product-default .woocommerce ul.products li.product .outofstock-badge,.eael-post-grid.eael-product-default .woocommerce ul.products li.product .outofstock-badge{min-height:3.746em;min-width:3.746em;padding:.502em;font-size:13px;font-weight:700;position:absolute;text-align:center;line-height:1.25;top:-0.5em;left:-0.5em;margin:0;border-radius:50%;background-color:#ff2a13;color:#fff;font-size:.857em;z-index:9}.eael-product-grid.eael-product-default .button.add_to_cart_button::before,.eael-post-grid.eael-product-default .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before,.eael-post-grid.eael-product-default .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.eael-product-default.button.product_type_external,.eael-post-grid.eael-product-default.button.product_type_external{padding:0;margin:0;font-size:0px}.eael-product-grid.eael-product-default.button.product_type_external:before,.eael-post-grid.eael-product-default.button.product_type_external:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.eael-product-preset-5 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-7 ul.products li.product .image-wrap img,.eael-product-grid.eael-product-preset-8 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-5 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-7 ul.products li.product .image-wrap img,.eael-post-grid.eael-product-preset-8 ul.products li.product .image-wrap img{-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist,.eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist,.eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist,.eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist,.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist,.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist,.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist,.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist{margin:15px;padding:7px;color:#fff;background-color:#333}.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists span,.eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists span,.eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists span,.eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists span,.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists span,.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists span,.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists span,.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists span{display:none}.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a,.eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a,.eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a,.eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a,.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a,.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a,.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a,.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a{font-size:0}.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a i,.eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a i,.eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a i,.eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a i,.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a i,.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a i,.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a i,.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a i{display:none}.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a:after,.eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a:after,.eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a:after,.eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a:after,.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist.exists a:after,.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist.exists a:after,.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist.exists a:after,.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist.exists a:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a,.eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a,.eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a,.eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a,.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a,.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a,.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a,.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a{font-size:0;vertical-align:middle;display:inline-block;color:inherit}.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a i,.eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a i,.eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a i,.eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a i,.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a i,.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a i,.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a i,.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a i{display:none}.eael-product-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a:after,.eael-product-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a:after,.eael-product-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a:after,.eael-product-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a:after,.eael-post-grid.eael-product-preset-5 .yith-wcwl-add-to-wishlist a:after,.eael-post-grid.eael-product-preset-6 .yith-wcwl-add-to-wishlist a:after,.eael-post-grid.eael-product-preset-7 .yith-wcwl-add-to-wishlist a:after,.eael-post-grid.eael-product-preset-8 .yith-wcwl-add-to-wishlist a:after{content:"";font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-wcpc-modal{position:fixed;top:50px;right:0;bottom:50px;left:0;margin-left:auto;margin-right:auto;width:1080px;max-width:90%;background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:9999999}.modal__content{width:100%;height:100%;overflow:hidden auto}.wcpc-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;z-index:10;background:rgba(0,0,0,.5);pointer-events:none}.wcpc-overlay,.eael-wcpc-modal{visibility:hidden;opacity:0;-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease}.close-modal{position:absolute;top:-10px;right:-10px;cursor:pointer;display:block;border-radius:50%;color:#fff;background:#000;font-size:30px;font-weight:bold;text-align:center;line-height:23px;-webkit-box-shadow:-1px 0px 3px 0 #000;box-shadow:-1px 0px 3px 0 #000;-webkit-transition:-webkit-transform 300ms ease;transition:-webkit-transform 300ms ease;-o-transition:transform 300ms ease;transition:transform 300ms ease;transition:transform 300ms ease, -webkit-transform 300ms ease}.eael-wcpc-wrapper .eael-wc-remove,.eael-wcpc-wrapper.custom .eael-wc-remove{cursor:pointer;-webkit-transition:all 400ms ease;-o-transition:all 400ms ease;transition:all 400ms ease}.eael-wcpc-wrapper .eael-wc-remove.disable,.eael-wcpc-wrapper.custom .eael-wc-remove.disable{color:#a0a0a0 !important;-webkit-transform:scale(1) !important;-ms-transform:scale(1) !important;transform:scale(1) !important}.eael-wcpc-wrapper .eael-wc-remove:hover,.eael-wcpc-wrapper.custom .eael-wc-remove:hover{color:red;-webkit-transform:scale(2);-ms-transform:scale(2);transform:scale(2)}.eael-wcpc-wrapper .remove-row,.eael-wcpc-wrapper.custom .remove-row{border:none}.eael-wcpc-wrapper .remove-row th,.eael-wcpc-wrapper .remove-row td,.eael-wcpc-wrapper.custom .remove-row th,.eael-wcpc-wrapper.custom .remove-row td{border:none;text-align:center}.eael-product-grid .woocommerce ul.products li.product a img{margin-bottom:0;display:block;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-grid .woocommerce ul.products li.product .woocommerce-loop-product__title{letter-spacing:normal;font-weight:700;text-transform:capitalize}.eael-product-grid .woocommerce ul.products li.product ins{background:transparent}.eael-product-grid .woocommerce ul.products li.product .button{text-transform:capitalize;border:none;letter-spacing:normal;-webkit-box-shadow:none;box-shadow:none}.eael-product-grid .woocommerce ul.products li.product .button:hover,.eael-product-grid .woocommerce ul.products li.product .button:visited{text-decoration:none}.eael-product-grid .woocommerce ul.products li.product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-grid .woocommerce ul.products li.product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-grid .woocommerce ul.products li.product .star-rating span{display:inline-block}.eael-product-grid .woocommerce ul.products li.product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-grid .eael-woo-pagination ul{display:inline-block;text-align:center;white-space:nowrap;padding:0;clear:both;border:0;margin:1px;width:auto}.eael-product-grid .eael-woo-pagination ul li{display:inline-block;margin:0 5px 5px 0;padding:0;float:left;overflow:hidden}.eael-product-grid .eael-woo-pagination ul li .page-numbers{margin:0;text-decoration:none;color:#000000bd;line-height:1;font-size:1em;font-weight:normal;padding:.75em;display:block;min-width:2.5em;-webkit-box-sizing:inherit;box-sizing:inherit;border:none}.eael-product-grid .eael-woo-pagination ul li .page-numbers.current,.eael-product-grid .eael-woo-pagination ul li .page-numbers:hover,.eael-product-grid .eael-woo-pagination ul li .page-numbers:focus{color:#fff;background:#000000bd}.eael-product-grid .woocommerce ul.products .product{overflow-y:auto}.eael-product-grid .eael-load-more-button-wrap{clear:both;margin-top:40px}.eael-product-grid .eael-product-wrap .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;display:inline-table;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2.outofstock{line-height:normal;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-2.right{left:auto;right:5px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-3.right{left:auto;right:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:10px solid #23a454;content:""}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.right{left:auto;right:0}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-4.right:after{right:auto;left:-15px;border-left:0;border-right:10px solid #23a454}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-39px;top:-10px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid .eael-product-wrap .eael-onsale.sale-preset-5.right{left:auto;right:-35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.eael-product-grid .eael-product-wrap .eael-product-title h2{font-size:20px;line-height:1.2em;color:#252525;font-weight:500;margin:0 0 8px;padding:0}.eael-product-grid .eael-product-wrap .eael-product-title h2:before{content:none}.eael-product-grid .eael-product-wrap .eael-product-price{font-size:18px;line-height:1.2em;color:#ff7a80;font-weight:600;margin-bottom:10px}.eael-product-grid .eael-product-wrap .star-rating{margin:0 auto 10px}.eael-product-grid .eael-product-wrap a.button.add_to_cart_button.added{display:none !important}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.box-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.box-style{bottom:30px;visibility:visible;opacity:1}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.block-box-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.block-box-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.grid .eael-product-wrap:hover .icons-wrap.block-style,.eael-product-grid.masonry .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.grid .eael-product-wrap .product-image-wrap,.eael-product-grid.masonry .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden}.eael-product-grid.grid .eael-product-wrap .icons-wrap,.eael-product-grid.masonry .eael-product-wrap .icons-wrap{padding:0;list-style:none;position:absolute;z-index:9;display:block;top:50%;left:0;right:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:0;visibility:hidden;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin:0 auto;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;width:100%;top:auto;bottom:-50px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist{margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li:not(:last-child),.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li:not(:last-child){border-right:1px solid #fff}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li.add-to-cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a{position:relative;background-color:transparent;margin:0;padding:10px 5px;font-size:15px;line-height:1.2em;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:42px;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.added_to_cart,.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.button.add_to_cart_button{padding:0 !important}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a:hover,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a:hover{background-color:transparent;color:#000}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a i{line-height:normal}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist i{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-style li a.add_to_wishlist:after{content:"";font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:auto;bottom:-100px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist{margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.product_type_external,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.product_type_external{padding:0;margin:0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.button.product_type_external:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.button.product_type_external:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist i{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.box-style li a.add_to_wishlist:after{content:"";font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:visible;opacity:1;top:auto;bottom:-24px;margin:0 5%}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist{margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button{padding:0;margin:0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.product_type_external,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.product_type_external{padding:0;margin:0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.button.product_type_external:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.button.product_type_external:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist i{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.over-box-style li a.add_to_wishlist:after{content:"";font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style{background:#fff;width:100%;top:auto;bottom:-50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist{margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a{position:relative;width:42px;height:42px;margin:10px 2px 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a i{line-height:1rem}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button{padding:0;margin:10px 2px 0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.product_type_external,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.product_type_external{padding:0;margin:10px 2px 0;font-size:0px}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.button.product_type_external:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.product_type_external:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist{font-size:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist i{display:none}.eael-product-grid.grid .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist:after,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.add_to_wishlist:after{content:"";font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap li,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a{display:block;position:absolute;color:#000;width:100%;height:100%;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a:hover,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a i,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px;line-height:42px}.eael-product-grid.grid .eael-product-wrap .icons-wrap li a svg,.eael-product-grid.masonry .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-grid.grid .eael-product-wrap .product-details-wrap,.eael-product-grid.masonry .eael-product-wrap .product-details-wrap{padding:10px}.eael-product-grid.masonry .woocommerce ul.products{display:block}@media(min-width: 766px){.eael-product-grid.masonry .woocommerce ul.products{margin:0 -1% !important}}.eael-product-grid.masonry .woocommerce ul.products:before,.eael-product-grid.masonry .woocommerce ul.products:after{display:table;content:" "}.eael-product-grid.masonry .woocommerce ul.products li.product{float:left;margin:15px 0}@media(min-width: 766px){.eael-product-grid.masonry .woocommerce ul.products li.product{margin:1%}}.eael-product-grid.grid.eael-product-preset-8 .product-image-wrap,.eael-product-grid.masonry.eael-product-preset-8 .product-image-wrap{overflow:inherit}.eael-product-grid.grid.eael-product-preset-8 .product-details-wrap>div:first-child,.eael-product-grid.masonry.eael-product-preset-8 .product-details-wrap>div:first-child{margin-top:20px}.eael-product-grid.grid.eael-product-preset-5 ul.products,.eael-product-grid.grid.eael-product-preset-6 ul.products,.eael-product-grid.grid.eael-product-preset-7 ul.products,.eael-product-grid.grid.eael-product-preset-8 ul.products,.eael-product-grid.masonry.eael-product-preset-5 ul.products,.eael-product-grid.masonry.eael-product-preset-6 ul.products,.eael-product-grid.masonry.eael-product-preset-7 ul.products,.eael-product-grid.masonry.eael-product-preset-8 ul.products{padding:0;margin:0;list-style:none}.eael-product-grid.grid.eael-product-preset-5 ul.products li.product,.eael-product-grid.grid.eael-product-preset-6 ul.products li.product,.eael-product-grid.grid.eael-product-preset-7 ul.products li.product,.eael-product-grid.grid.eael-product-preset-8 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-5 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-6 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-7 ul.products li.product,.eael-product-grid.masonry.eael-product-preset-8 ul.products li.product{text-align:center;border:1px solid #000;overflow:hidden}.eael-product-grid.grid.eael-product-preset-5 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-6 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-7 ul.products li.product.first,.eael-product-grid.grid.eael-product-preset-8 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-5 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-6 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-7 ul.products li.product.first,.eael-product-grid.masonry.eael-product-preset-8 ul.products li.product.first{clear:none}.eael-product-grid.grid.eael-product-preset-6 .product.outofstock .icons-wrap .button,.eael-product-grid.grid.eael-product-preset-7 .product.outofstock .icons-wrap .button,.eael-product-grid.grid.eael-product-preset-8 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-6 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-7 .product.outofstock .icons-wrap .button,.eael-product-grid.masonry.eael-product-preset-8 .product.outofstock .icons-wrap .button{display:none}.eael-product-grid.grid.eael-product-preset-6 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-6 .icons-wrap .button.product_type_external,.eael-product-grid.grid.eael-product-preset-7 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-7 .icons-wrap .button.product_type_external,.eael-product-grid.grid.eael-product-preset-8 .icons-wrap .button.product_type_grouped,.eael-product-grid.grid.eael-product-preset-8 .icons-wrap .button.product_type_external,.eael-product-grid.masonry.eael-product-preset-6 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-6 .icons-wrap .button.product_type_external,.eael-product-grid.masonry.eael-product-preset-7 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-7 .icons-wrap .button.product_type_external,.eael-product-grid.masonry.eael-product-preset-8 .icons-wrap .button.product_type_grouped,.eael-product-grid.masonry.eael-product-preset-8 .icons-wrap .button.product_type_external{display:none}.eael-product-grid.list .woocommerce ul.products li.product{overflow:hidden}.eael-product-grid.list .woocommerce ul.products li.product .woocommerce-loop-product__link img{margin-bottom:0}.eael-product-grid.list .woocommerce ul.products li.product .star-rating{margin:0 auto 10px 0}.eael-product-grid.list .eael-product-list-preset-2 .eael-product-wrap{padding:20px}.eael-product-grid.list .eael-product-list-preset-2 .eael-product-wrap .product-details-wrap{padding:0 0 0 25px}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap{padding:0;background-color:transparent}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .product-details-wrap{padding:0 0 0 25px}.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .title-wrap,.eael-product-grid.list .eael-product-list-preset-3 .eael-product-wrap .price-wrap{margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid}.eael-product-grid.list .eael-product-list-preset-4 .eael-product-wrap{padding:0}.eael-product-grid.list .eael-product-list-preset-4 .eael-product-wrap .product-details-wrap{padding:20px;margin-left:20px}.eael-product-grid.list .eael-product-wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-grid.list .eael-product-wrap:hover .icons-wrap.box-style{-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);visibility:visible;opacity:1}.eael-product-grid.list .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-grid.list .eael-product-wrap .icons-wrap{padding:0;margin:0;list-style:none;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;height:50px;width:100%;top:auto;bottom:-50px}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-grid.list .eael-product-wrap .icons-wrap.block-style li a{position:relative}.eael-product-grid.list .eael-product-wrap .icons-wrap.box-style li{width:42px;height:42px;-webkit-filter:drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));filter:drop-shadow(0px 15px 10px rgba(61, 70, 79, 0.12));background-color:#fff}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist{margin:0;padding:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists span{display:none}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a{font-size:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a i{display:none}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-whishlist .yith-wcwl-add-to-wishlist.exists a:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li.add-to-cart a{padding:11px 15px !important;width:auto}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a{margin:2px;padding:10.5px 10px;width:42px;height:42px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a.add_to_wishlist{font-size:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a.add_to_wishlist i{display:none}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style li a.add_to_wishlist:after{content:"";font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li:not(:first-child) a{border-left-width:0 !important}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li.add-to-cart a{padding:8.5px 10px;margin:0}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li a{border:2px solid #ddd}.eael-product-grid.list .eael-product-wrap .icons-wrap.details-block-style-2 li a.eael-wc-compare.eael-wc-compare-icon{margin:2px}.eael-product-grid.list .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0;vertical-align:top}.eael-product-grid.list .eael-product-wrap .icons-wrap li a{display:block;color:#000;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s;background:#ffebcd;padding:9px 10px;font-size:15px;line-height:1.4em;font-weight:700;cursor:pointer}.eael-product-grid.list .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-grid.list .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px}.eael-product-grid.list .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-grid.list .eael-product-wrap .icons-wrap li a.button{font-size:15px;line-height:1.4em}.eael-product-grid.list .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden;width:45%;margin:0}.eael-product-grid.list .eael-product-wrap .product-details-wrap{width:55%;padding:25px;text-align:left !important}.eael-product-grid.list .eael-product-wrap .eael-product-price{margin-bottom:5px}.eael-product-grid.list .eael-product-wrap .eael-product-excerpt p{margin:0 0 10px}@media only screen and (min-width: 1025px){.eael-product-grid-column-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48%}.eael-product-grid-column-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-grid-column-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23%}.eael-product-grid-column-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18%}.eael-product-grid-column-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 1024px)and (min-width: 766px){.eael-product-grid-column-tablet-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-tablet-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-tablet-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-tablet-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-tablet-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-tablet-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-tablet-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-tablet-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-tablet-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-tablet-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48%}.eael-product-grid-column-tablet-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-grid-column-tablet-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23%}.eael-product-grid-column-tablet-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18%}.eael-product-grid-column-tablet-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 767px){.eael-product-grid-column-mobile-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-grid-column-mobile-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-grid-column-mobile-3 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-grid-column-mobile-4 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-grid-column-mobile-5 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-grid-column-mobile-6 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap,.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{width:100%}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap{margin-bottom:15px}.eael-product-list-column-mobile-2 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{padding:0;margin:0}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products{grid-template-columns:100%}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap,.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{width:100%}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-image-wrap{margin-bottom:15px}.eael-product-list-column-mobile-1 .eael-product-grid .woocommerce ul.products .eael-product-wrap .product-details-wrap{padding:0;margin:0}.eael-product-grid-column-mobile-1 .eael-product-grid.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-grid-column-mobile-2 .eael-product-grid.masonry .woocommerce ul.products li.product{width:48% !important;margin:1%}.eael-product-grid-column-mobile-3 .eael-product-grid.masonry .woocommerce ul.products li.product{width:31.3333% !important;margin:1%}.eael-product-grid-column-mobile-4 .eael-product-grid.masonry .woocommerce ul.products li.product{width:23% !important;margin:1%}.eael-product-grid-column-mobile-5 .eael-product-grid.masonry .woocommerce ul.products li.product{width:18% !important;margin:1%}.eael-product-grid-column-mobile-6 .eael-product-grid.masonry .woocommerce ul.products li.product{width:14.66666667% !important;margin:1%}}.eael-product-loader{position:relative}.eael-product-loader::after{border-radius:50%;width:50px;height:50px;position:absolute;content:"";border-top:4px solid rgba(0,0,0,.2);border-right:4px solid rgba(0,0,0,.2);border-bottom:4px solid rgba(0,0,0,.2);border-left:4px solid #000;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);-webkit-animation:loaderSpin 1.1s infinite linear;animation:loaderSpin 1.1s infinite linear;left:48%;top:40%;-webkit-transition:all .2s;-o-transition:all .2s;transition:all .2s}.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link{position:unset;display:unset}.eael-product-grid .woocommerce ul.products li.product .ast-shop-product-out-of-stock{display:none}.theme-blocksy .button:before{-ms-filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";-webkit-filter:none !important;filter:none !important;opacity:1;z-index:0;bottom:0 !important;right:0;line-height:1.2em}.theme-blocksy .button:hover{-webkit-transform:none;-ms-transform:none;transform:none}.theme-twentytwentyone .eael-product-default .woocommerce ul.products li.product .button{margin:0 auto}
|
assets/front-end/css/view/woo-product-gallery.css
CHANGED
@@ -760,12 +760,12 @@
|
|
760 |
text-rendering: auto;
|
761 |
-webkit-font-smoothing: antialiased;
|
762 |
vertical-align: middle;
|
763 |
-
margin:
|
764 |
padding: 0;
|
765 |
}
|
766 |
.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button {
|
767 |
padding: 0;
|
768 |
-
margin:
|
769 |
font-size: 0px !important;
|
770 |
}
|
771 |
.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before {
|
@@ -915,7 +915,10 @@
|
|
915 |
.eael-product-gallery.eael-product-preset-3 .product.outofstock .icons-wrap .button, .eael-product-gallery.eael-product-preset-2 .product.outofstock .icons-wrap .button, .eael-product-gallery.eael-product-preset-1 .product.outofstock .icons-wrap .button {
|
916 |
display: none;
|
917 |
}
|
918 |
-
.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_grouped,
|
|
|
|
|
|
|
919 |
display: none;
|
920 |
}
|
921 |
.eael-load-more-button.hide-load-more {
|
760 |
text-rendering: auto;
|
761 |
-webkit-font-smoothing: antialiased;
|
762 |
vertical-align: middle;
|
763 |
+
margin: 3px;
|
764 |
padding: 0;
|
765 |
}
|
766 |
.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button {
|
767 |
padding: 0;
|
768 |
+
margin: 3px;
|
769 |
font-size: 0px !important;
|
770 |
}
|
771 |
.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before {
|
915 |
.eael-product-gallery.eael-product-preset-3 .product.outofstock .icons-wrap .button, .eael-product-gallery.eael-product-preset-2 .product.outofstock .icons-wrap .button, .eael-product-gallery.eael-product-preset-1 .product.outofstock .icons-wrap .button {
|
916 |
display: none;
|
917 |
}
|
918 |
+
.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_grouped,
|
919 |
+
.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_variable, .eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_grouped,
|
920 |
+
.eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_variable, .eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_grouped,
|
921 |
+
.eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_variable {
|
922 |
display: none;
|
923 |
}
|
924 |
.eael-load-more-button.hide-load-more {
|
assets/front-end/css/view/woo-product-gallery.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.eael-product-gallery{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-gallery.eael-terms-layout-horizontal{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab{margin:0 0 50px 0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab li:first-child a{margin-left:0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab li:last-child a{margin-right:0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab img{display:block;margin:0 auto 5px auto}.eael-product-gallery.eael-terms-layout-vertical{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;gap:2%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab{width:25%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab{width:100%}}@media(min-width: 768px){.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li{display:block}}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:first-child a{margin-top:0}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:last-child a{margin-bottom:0}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab a{padding:20px 30px}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab img{margin:0 5px 0 0}.eael-product-gallery.eael-terms-layout-vertical .woocommerce{width:75%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical .woocommerce{width:100%}}.eael-product-gallery .eael-cat-tab{list-style:none;margin:0;padding:0;border-radius:5px}.eael-product-gallery .eael-cat-tab li{display:inline-block}.eael-product-gallery .eael-cat-tab img{width:35px}.eael-product-gallery .eael-cat-tab a{padding:20px 30px;display:block;background-color:#f8f6ff;color:#7d7a94;font-size:20px;line-height:1.2em;font-weight:600;border-radius:5px;margin:3px}.eael-product-gallery .eael-cat-tab a:hover,.eael-product-gallery .eael-cat-tab a.active{color:#fff;background-color:#8941ff}.eael-product-gallery .woocommerce ul.products{display:grid;grid-gap:25px;margin:0 0 15px 0 !important;padding:0 !important}.eael-product-gallery .woocommerce ul.products:before,.eael-product-gallery .woocommerce ul.products:after{display:none}.eael-product-gallery .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-product-gallery .woocommerce ul.products .product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-gallery .woocommerce ul.products .product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-gallery .woocommerce ul.products .product .star-rating span{display:inline-block}.eael-product-gallery .woocommerce ul.products .product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-gallery .woocommerce ul.products li.product{width:100%}.eael-product-gallery .woocommerce ul.products.products[class*=columns-] li.product{width:100%}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product{position:relative;float:left;display:block;overflow:hidden;text-align:center;padding:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none;border:1px solid #eee}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a{text-decoration:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product img{width:100%;height:auto;margin:0;max-width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;border-radius:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button::before,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button:focus,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button::before{content:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .eael-wc-compare{color:#fff;background-color:#333}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:transparent}.eael-product-gallery.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-product-gallery.eael-product-preset-2 ul.products li.product .image-wrap img,.eael-product-gallery.eael-product-preset-1 ul.products li.product .image-wrap img{-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery.masonry .woocommerce ul.products{display:block}@media(min-width: 766px){.eael-product-gallery.masonry .woocommerce ul.products{margin:0 -1% !important}}.eael-product-gallery.masonry .woocommerce ul.products:before,.eael-product-gallery.masonry .woocommerce ul.products:after{display:table;content:" "}.eael-product-gallery.masonry .woocommerce ul.products li.product{float:left;margin:15px 0}@media(min-width: 766px){.eael-product-gallery.masonry .woocommerce ul.products li.product{margin:1%}}.eael-product-gallery .woocommerce ul.products h2.eael-product-not-found{grid-column:1/-1;text-align:center;font-size:20px}.eael-product-gallery .woocommerce ul.products li.product a img,.eael-product-gallery .woocommerce ul.products li.product img{margin-bottom:0;display:block;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery .woocommerce ul.products li.product .woocommerce-loop-product__title{letter-spacing:normal;font-weight:700;text-transform:capitalize}.eael-product-gallery .woocommerce ul.products li.product ins{background:transparent}.eael-product-gallery .woocommerce ul.products li.product .button{text-transform:capitalize;border:none;letter-spacing:normal;-webkit-box-shadow:none;box-shadow:none}.eael-product-gallery .woocommerce ul.products li.product .button:hover,.eael-product-gallery .woocommerce ul.products li.product .button:visited{text-decoration:none}.eael-product-gallery .woocommerce ul.products li.product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-gallery .woocommerce ul.products li.product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-gallery .woocommerce ul.products li.product .star-rating span{display:inline-block}.eael-product-gallery .woocommerce ul.products li.product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-gallery .woocommerce ul.products .product{overflow-y:auto}.eael-product-gallery .eael-load-more-button-wrap{clear:both;margin-top:40px}.eael-product-gallery .eael-product-wrap .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;display:inline-table;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.outofstock{line-height:1.2em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.right{left:auto;right:5px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.right{left:auto;right:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:10px solid #23a454;content:""}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right{left:auto;right:0}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right:after{right:auto;left:-15px;border-left:0;border-right:10px solid #23a454}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-37pX;top:-8px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.right{left:auto;right:-35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.eael-product-gallery .eael-product-wrap .eael-product-title *{font-size:20px;line-height:1.2em;color:#252525;font-weight:500;margin:0 0 8px;padding:0}.eael-product-gallery .eael-product-wrap .eael-product-title *:before{content:none}.eael-product-gallery .eael-product-wrap .eael-product-price{font-size:18px;line-height:1.2em;color:#ff7a80;font-weight:600;margin-bottom:10px}.eael-product-gallery .eael-product-wrap .star-rating{margin:0 auto 10px}.eael-product-gallery .eael-product-wrap a.button.add_to_cart_button.added{display:none !important}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.box-style{bottom:30px;visibility:visible;opacity:1}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-box-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-gallery .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden}.eael-product-gallery .eael-product-wrap .icons-wrap{padding:0;list-style:none;position:absolute;z-index:9;display:block;top:50%;left:0;right:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:0;visibility:hidden;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin:0 auto;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;width:100%;top:auto;bottom:-50px}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li:not(:last-child){border-right:1px solid #fff}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a{position:relative;background-color:transparent;margin:0;padding:10px 5px;font-size:15px;line-height:1.2em;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a:hover{background-color:transparent;color:#000}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a i{line-height:normal}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:auto;bottom:-100px}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:visible;opacity:1;top:auto;bottom:-24px;margin:0 5%}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button{padding:0;margin:0;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external{width:auto;height:auto}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style{background:#fff;width:100%;top:auto;bottom:-50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a{position:relative;width:42px;height:42px;margin:10px 2px 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button{padding:0;margin:10px 2px 0;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap li a{display:block;position:absolute;color:#000;width:100%;height:100%;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s;cursor:pointer}.eael-product-gallery .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-gallery .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px;line-height:42px}.eael-product-gallery .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-gallery .eael-product-wrap .product-details-wrap{padding:10px}.eael-product-gallery.eael-product-preset-1 .product-image-wrap{overflow:inherit}.eael-product-gallery.eael-product-preset-1 .product-details-wrap>div:first-child{margin-top:20px}.eael-product-gallery.eael-product-preset-6 ul.products,.eael-product-gallery.eael-product-preset-2 ul.products,.eael-product-gallery.eael-product-preset-1 ul.products{padding:0;margin:0;list-style:none}.eael-product-gallery.eael-product-preset-6 ul.products li.product,.eael-product-gallery.eael-product-preset-2 ul.products li.product,.eael-product-gallery.eael-product-preset-1 ul.products li.product{text-align:center;border:1px solid #000;overflow:hidden}.eael-product-gallery.eael-product-preset-6 ul.products li.product.first,.eael-product-gallery.eael-product-preset-2 ul.products li.product.first,.eael-product-gallery.eael-product-preset-1 ul.products li.product.first{clear:none}.eael-product-gallery.eael-product-preset-3 .product.outofstock .icons-wrap .button,.eael-product-gallery.eael-product-preset-2 .product.outofstock .icons-wrap .button,.eael-product-gallery.eael-product-preset-1 .product.outofstock .icons-wrap .button{display:none}.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_grouped{display:none}.eael-load-more-button.hide-load-more{display:none !important}@media only screen and (min-width: 1025px){.eael-product-gallery-column-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48%}.eael-product-gallery-column-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-gallery-column-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23%}.eael-product-gallery-column-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18%}.eael-product-gallery-column-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 1024px)and (min-width: 766px){.eael-product-gallery-column-tablet-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-tablet-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-tablet-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-tablet-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-tablet-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-tablet-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-tablet-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-tablet-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48%}.eael-product-gallery-column-tablet-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-gallery-column-tablet-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23%}.eael-product-gallery-column-tablet-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18%}.eael-product-gallery-column-tablet-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 767px){.eael-product-gallery-column-mobile-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-mobile-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-mobile-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-mobile-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-mobile-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-mobile-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-mobile-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-mobile-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48% !important;margin:1%}.eael-product-gallery-column-mobile-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333% !important;margin:1%}.eael-product-gallery-column-mobile-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23% !important;margin:1%}.eael-product-gallery-column-mobile-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18% !important;margin:1%}.eael-product-gallery-column-mobile-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667% !important;margin:1%}}@-webkit-keyframes ploaderSpin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ploaderSpin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-product-loader{opacity:.6 !important;pointer-events:none !important}.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link{position:unset;display:unset}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{display:none}.theme-blocksy .button:before{-ms-filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";-webkit-filter:none !important;filter:none !important;opacity:1;z-index:0;bottom:0 !important;right:0;line-height:1.2em}.theme-blocksy .button:hover{-webkit-transform:none;-ms-transform:none;transform:none}
|
1 |
+
.eael-product-gallery{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-gallery.eael-terms-layout-horizontal{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab{margin:0 0 50px 0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab li:first-child a{margin-left:0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab li:last-child a{margin-right:0}.eael-product-gallery.eael-terms-layout-horizontal .eael-cat-tab img{display:block;margin:0 auto 5px auto}.eael-product-gallery.eael-terms-layout-vertical{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;gap:2%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab{width:25%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab{width:100%}}@media(min-width: 768px){.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li{display:block}}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:first-child a{margin-top:0}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab li:last-child a{margin-bottom:0}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab a{padding:20px 30px}.eael-product-gallery.eael-terms-layout-vertical .eael-cat-tab img{margin:0 5px 0 0}.eael-product-gallery.eael-terms-layout-vertical .woocommerce{width:75%}@media(max-width: 767px){.eael-product-gallery.eael-terms-layout-vertical .woocommerce{width:100%}}.eael-product-gallery .eael-cat-tab{list-style:none;margin:0;padding:0;border-radius:5px}.eael-product-gallery .eael-cat-tab li{display:inline-block}.eael-product-gallery .eael-cat-tab img{width:35px}.eael-product-gallery .eael-cat-tab a{padding:20px 30px;display:block;background-color:#f8f6ff;color:#7d7a94;font-size:20px;line-height:1.2em;font-weight:600;border-radius:5px;margin:3px}.eael-product-gallery .eael-cat-tab a:hover,.eael-product-gallery .eael-cat-tab a.active{color:#fff;background-color:#8941ff}.eael-product-gallery .woocommerce ul.products{display:grid;grid-gap:25px;margin:0 0 15px 0 !important;padding:0 !important}.eael-product-gallery .woocommerce ul.products:before,.eael-product-gallery .woocommerce ul.products:after{display:none}.eael-product-gallery .woocommerce ul.products .product{width:100%;margin:0;padding:0}.eael-product-gallery .woocommerce ul.products .product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-gallery .woocommerce ul.products .product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-gallery .woocommerce ul.products .product .star-rating span{display:inline-block}.eael-product-gallery .woocommerce ul.products .product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-gallery .woocommerce ul.products li.product{width:100%}.eael-product-gallery .woocommerce ul.products.products[class*=columns-] li.product{width:100%}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product{position:relative;float:left;display:block;overflow:hidden;text-align:center;padding:0;border-radius:0;background-color:#fff;-webkit-box-shadow:none;box-shadow:none;border:1px solid #eee}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a{text-decoration:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a:hover{outline:none;-webkit-box-shadow:none;box-shadow:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product img{width:100%;height:auto;margin:0;max-width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;font-weight:700;line-height:1;color:#333;margin:25px 0 12px;padding:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .onsale{display:block;line-height:170px;font-size:13px;text-align:center;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-100px;top:-50px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .outofstock-badge{line-height:16px;font-size:13px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;letter-spacing:0;text-shadow:0 1px 1px rgba(0,0,0,.6);text-transform:uppercase;color:#fff;background-color:#ff2a13;border-radius:0;border:none;-webkit-box-shadow:none;box-shadow:none;position:absolute;height:100px;width:200px;z-index:1;left:-95px;top:-45px;right:auto;margin:0;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price{font-size:14px;margin-bottom:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price del{opacity:.5;display:inline-block}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .price ins{font-weight:400;background-color:transparent;color:#ff2a13}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .star-rating{display:block;float:none;font-size:14px;margin:10px auto}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button{display:block;font-size:14px;font-weight:400;line-height:38px;text-align:center;text-transform:uppercase;color:#fff;background-color:#333;padding:0;margin:15px;border-radius:0}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button::before,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button::before{content:"";font-family:"Font Awesome 5 Free";font-weight:900;padding-right:8px}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.product_type_variable:before,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button:focus,.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button.add_to_cart_button:focus{outline:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .button::before{content:none}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product .eael-wc-compare{color:#fff;background-color:#333}.eael-product-gallery.eael-product-preset-4 .woocommerce ul.products li.product a.added_to_cart{display:block;margin:0 0 15px 0;padding:0;font-size:14px;line-height:1;text-transform:capitalize;color:#333;background-color:transparent}.eael-product-gallery.eael-product-preset-6 ul.products li.product .image-wrap img,.eael-product-gallery.eael-product-preset-2 ul.products li.product .image-wrap img,.eael-product-gallery.eael-product-preset-1 ul.products li.product .image-wrap img{-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery.masonry .woocommerce ul.products{display:block}@media(min-width: 766px){.eael-product-gallery.masonry .woocommerce ul.products{margin:0 -1% !important}}.eael-product-gallery.masonry .woocommerce ul.products:before,.eael-product-gallery.masonry .woocommerce ul.products:after{display:table;content:" "}.eael-product-gallery.masonry .woocommerce ul.products li.product{float:left;margin:15px 0}@media(min-width: 766px){.eael-product-gallery.masonry .woocommerce ul.products li.product{margin:1%}}.eael-product-gallery .woocommerce ul.products h2.eael-product-not-found{grid-column:1/-1;text-align:center;font-size:20px}.eael-product-gallery .woocommerce ul.products li.product a img,.eael-product-gallery .woocommerce ul.products li.product img{margin-bottom:0;display:block;width:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.eael-product-gallery .woocommerce ul.products li.product .woocommerce-loop-product__title{letter-spacing:normal;font-weight:700;text-transform:capitalize}.eael-product-gallery .woocommerce ul.products li.product ins{background:transparent}.eael-product-gallery .woocommerce ul.products li.product .button{text-transform:capitalize;border:none;letter-spacing:normal;-webkit-box-shadow:none;box-shadow:none}.eael-product-gallery .woocommerce ul.products li.product .button:hover,.eael-product-gallery .woocommerce ul.products li.product .button:visited{text-decoration:none}.eael-product-gallery .woocommerce ul.products li.product .star-rating{margin:0 auto 5px;display:inline-block;float:none;height:1em;width:5.6em;font-size:1em;line-height:1em}.eael-product-gallery .woocommerce ul.products li.product .star-rating:before{content:"";font-family:"Font Awesome 5 Free";font-weight:400;opacity:1}.eael-product-gallery .woocommerce ul.products li.product .star-rating span{display:inline-block}.eael-product-gallery .woocommerce ul.products li.product .star-rating span:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.eael-product-gallery .woocommerce ul.products .product{overflow-y:auto}.eael-product-gallery .eael-load-more-button-wrap{clear:both;margin-top:40px}.eael-product-gallery .eael-product-wrap .eael-onsale{padding:5px 10px;font-size:12px;font-weight:500;position:absolute;text-align:center;line-height:1.2em;top:30px;left:0;margin:0;background-color:#ff7a80;color:#fff;z-index:9}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;display:inline-table;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.outofstock{line-height:1.2em;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-2.right{left:auto;right:5px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-3.right{left:auto;right:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4:after{position:absolute;right:-15px;bottom:0px;width:15px;height:24px;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:10px solid #23a454;content:""}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right{left:auto;right:0}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-4.right:after{right:auto;left:-15px;border-left:0;border-right:10px solid #23a454}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5{display:block;line-height:74px;height:60px;width:120px;left:-37pX;top:-8px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.outofstock{line-height:normal;padding-top:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.eael-product-gallery .eael-product-wrap .eael-onsale.sale-preset-5.right{left:auto;right:-35px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.eael-product-gallery .eael-product-wrap .eael-product-title *{font-size:20px;line-height:1.2em;color:#252525;font-weight:500;margin:0 0 8px;padding:0}.eael-product-gallery .eael-product-wrap .eael-product-title *:before{content:none}.eael-product-gallery .eael-product-wrap .eael-product-price{font-size:18px;line-height:1.2em;color:#ff7a80;font-weight:600;margin-bottom:10px}.eael-product-gallery .eael-product-wrap .star-rating{margin:0 auto 10px}.eael-product-gallery .eael-product-wrap a.button.add_to_cart_button.added{display:none !important}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.box-style{bottom:30px;visibility:visible;opacity:1}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-box-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-gallery .eael-product-wrap:hover .icons-wrap.block-style{visibility:visible;opacity:1;-webkit-transform:translateY(-50px);-ms-transform:translateY(-50px);transform:translateY(-50px)}.eael-product-gallery .eael-product-wrap .product-image-wrap{position:relative;overflow:hidden}.eael-product-gallery .eael-product-wrap .icons-wrap{padding:0;list-style:none;position:absolute;z-index:9;display:block;top:50%;left:0;right:0;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);opacity:0;visibility:hidden;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin:0 auto;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style{background:red;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;width:100%;top:auto;bottom:-50px}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li{-webkit-box-flex:1;-ms-flex:1;flex:1}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li:not(:last-child){border-right:1px solid #fff}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li.add-to-cart{-webkit-box-flex:4;-ms-flex:4;flex:4}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a{position:relative;background-color:transparent;margin:0;padding:10px 5px;font-size:15px;line-height:1.2em;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a:hover{background-color:transparent;color:#000}.eael-product-gallery .eael-product-wrap .icons-wrap.block-style li a i{line-height:normal}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;top:auto;bottom:-100px}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;visibility:visible;opacity:1;top:auto;bottom:-24px;margin:0 5%}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a{position:relative;width:42px;height:42px;margin:3px;-webkit-box-shadow:0px 15px 10px rgba(61,70,79,.12);box-shadow:0px 15px 10px rgba(61,70,79,.12);background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;line-height:38px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:3px;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button{padding:0;margin:3px;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap.over-box-style li a.product_type_external{width:auto;height:auto}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style{background:#fff;width:100%;top:auto;bottom:-50px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a{position:relative;width:42px;height:42px;margin:10px 2px 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a i{line-height:1rem}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart{font-size:0 !important}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.added_to_cart:after{content:"";font-weight:900;font-family:"Font Awesome 5 Free";font-size:18px;text-rendering:auto;-webkit-font-smoothing:antialiased;vertical-align:middle;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button{padding:0;margin:10px 2px 0;font-size:0px !important}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button:before{content:"";display:block;font-family:"Font Awesome 5 Free";font-size:18px;font-weight:900;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);top:50%;left:50%;position:absolute}.eael-product-gallery .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.product_type_variable:before{content:""}.eael-product-gallery .eael-product-wrap .icons-wrap li{display:inline-block;margin:0;padding:0}.eael-product-gallery .eael-product-wrap .icons-wrap li a{display:block;position:absolute;color:#000;width:100%;height:100%;text-align:center;-webkit-transition:all ease .4s;-o-transition:all ease .4s;transition:all ease .4s;cursor:pointer}.eael-product-gallery .eael-product-wrap .icons-wrap li a:hover{background:#ff7a80;color:#fff}.eael-product-gallery .eael-product-wrap .icons-wrap li a i{position:relative;font-size:18px;line-height:42px}.eael-product-gallery .eael-product-wrap .icons-wrap li a svg{width:18px}.eael-product-gallery .eael-product-wrap .product-details-wrap{padding:10px}.eael-product-gallery.eael-product-preset-1 .product-image-wrap{overflow:inherit}.eael-product-gallery.eael-product-preset-1 .product-details-wrap>div:first-child{margin-top:20px}.eael-product-gallery.eael-product-preset-6 ul.products,.eael-product-gallery.eael-product-preset-2 ul.products,.eael-product-gallery.eael-product-preset-1 ul.products{padding:0;margin:0;list-style:none}.eael-product-gallery.eael-product-preset-6 ul.products li.product,.eael-product-gallery.eael-product-preset-2 ul.products li.product,.eael-product-gallery.eael-product-preset-1 ul.products li.product{text-align:center;border:1px solid #000;overflow:hidden}.eael-product-gallery.eael-product-preset-6 ul.products li.product.first,.eael-product-gallery.eael-product-preset-2 ul.products li.product.first,.eael-product-gallery.eael-product-preset-1 ul.products li.product.first{clear:none}.eael-product-gallery.eael-product-preset-3 .product.outofstock .icons-wrap .button,.eael-product-gallery.eael-product-preset-2 .product.outofstock .icons-wrap .button,.eael-product-gallery.eael-product-preset-1 .product.outofstock .icons-wrap .button{display:none}.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-3 .icons-wrap .button.product_type_variable,.eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-2 .icons-wrap .button.product_type_variable,.eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_grouped,.eael-product-gallery.eael-product-preset-1 .icons-wrap .button.product_type_variable{display:none}.eael-load-more-button.hide-load-more{display:none !important}@media only screen and (min-width: 1025px){.eael-product-gallery-column-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48%}.eael-product-gallery-column-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-gallery-column-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23%}.eael-product-gallery-column-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18%}.eael-product-gallery-column-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 1024px)and (min-width: 766px){.eael-product-gallery-column-tablet-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-tablet-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-tablet-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-tablet-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-tablet-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-tablet-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-tablet-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-tablet-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48%}.eael-product-gallery-column-tablet-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333%}.eael-product-gallery-column-tablet-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23%}.eael-product-gallery-column-tablet-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18%}.eael-product-gallery-column-tablet-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667%}}@media only screen and (max-width: 767px){.eael-product-gallery-column-mobile-1 .eael-product-gallery .woocommerce ul.products{grid-template-columns:100%}.eael-product-gallery-column-mobile-2 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(2, 1fr)}.eael-product-gallery-column-mobile-3 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(3, 1fr)}.eael-product-gallery-column-mobile-4 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(4, 1fr)}.eael-product-gallery-column-mobile-5 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(5, 1fr)}.eael-product-gallery-column-mobile-6 .eael-product-gallery .woocommerce ul.products{grid-template-columns:repeat(6, 1fr)}.eael-product-gallery-column-mobile-1 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:100%;margin:15px 0}.eael-product-gallery-column-mobile-2 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:48% !important;margin:1%}.eael-product-gallery-column-mobile-3 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:31.3333% !important;margin:1%}.eael-product-gallery-column-mobile-4 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:23% !important;margin:1%}.eael-product-gallery-column-mobile-5 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:18% !important;margin:1%}.eael-product-gallery-column-mobile-6 .eael-product-gallery.masonry .woocommerce ul.products li.product{width:14.66666667% !important;margin:1%}}@-webkit-keyframes ploaderSpin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ploaderSpin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.eael-product-loader{opacity:.6 !important;pointer-events:none !important}.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link{position:unset;display:unset}.woocommerce ul.products li.product .ast-shop-product-out-of-stock,.woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{display:none}.theme-blocksy .button:before{-ms-filter:"progid:DXImageTransform.Microsoft.gradient(enabled=false)";-webkit-filter:none !important;filter:none !important;opacity:1;z-index:0;bottom:0 !important;right:0;line-height:1.2em}.theme-blocksy .button:hover{-webkit-transform:none;-ms-transform:none;transform:none}
|
assets/front-end/js/view/advanced-tabs.js
CHANGED
@@ -93,7 +93,7 @@
|
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
-
eval("ea.hooks.addAction(\"init\", \"ea\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-adv-tabs.default\", function ($scope, $) {\n var $currentTab = $scope.find('.eael-advance-tabs');\n\n if (!$currentTab.attr('id')) {\n return false;\n }\n\n var $currentTabId = '#' + $currentTab.attr('id').toString();\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n var hashLink = false;\n $($currentTabId + ' > .eael-tabs-nav ul li', $scope).each(function (index) {\n if (hashTag && $(this).attr(\"id\") == hashTag) {\n $($currentTabId + ' .eael-tabs-nav > ul li', $scope).removeClass(\"active\").addClass(\"inactive\");\n $(this).removeClass(\"inactive\").addClass(\"active\");\n hashLink = true;\n } else {\n if ($(this).hasClass(\"active-default\") && !hashLink) {\n $($currentTabId + ' .eael-tabs-nav > ul li', $scope).removeClass(\"active\").addClass(\"inactive\");\n $(this).removeClass(\"inactive\").addClass('active');\n } else {\n if (index == 0) {\n $(this).removeClass(\"inactive\").addClass(\"active\");\n }\n }\n }\n });\n var hashContent = false;\n $($currentTabId + ' > .eael-tabs-content > div', $scope).each(function (index) {\n if (hashTag && $(this).attr(\"id\") == hashTag + '-tab') {\n $($currentTabId + ' > .eael-tabs-content > div', $scope).removeClass(\"active\");\n var nestedLink = $(this).closest('.eael-tabs-content').closest('.eael-tab-content-item');\n\n if (nestedLink.length) {\n var parentTab = nestedLink.closest('.eael-advance-tabs'),\n titleID = $(\"#\" + nestedLink.attr(\"id\")),\n contentID = titleID.data('title-link');\n parentTab.find(\" > .eael-tabs-nav > ul > li\").removeClass('active');\n parentTab.find(\" > .eael-tabs-content > div\").removeClass('active');\n titleID.addClass(\"active\");\n $(\"#\" + contentID).addClass(\"active\");\n }\n\n $(this).removeClass(\"inactive\").addClass(\"active\");\n hashContent = true;\n } else {\n if ($(this).hasClass(\"active-default\") && !hashContent) {\n $($currentTabId + ' > .eael-tabs-content > div', $scope).removeClass(\"active\");\n $(this).removeClass(\"inactive\").addClass(\"active\");\n } else {\n if (index == 0) {\n $(this).removeClass(\"inactive\").addClass(\"active\");\n }\n }\n }\n });\n $($currentTabId + ' .eael-tabs-nav ul li', $scope).on(\"click\", function (e) {\n e.preventDefault();\n var currentTabIndex = $(this).index();\n var tabsContainer = $(this).closest(\".eael-advance-tabs\");\n var tabsNav = $(tabsContainer).children(\".eael-tabs-nav\").children(\"ul\").children(\"li\");\n var tabsContent = $(tabsContainer).children(\".eael-tabs-content\").children(\"div\");\n $(this).parent(\"li\").addClass(\"active\");\n $(tabsNav).removeClass(\"active active-default\").addClass(\"inactive\");\n $(this).addClass(\"active\").removeClass(\"inactive\");\n $(tabsContent).removeClass(\"active\").addClass(\"inactive\");\n $(tabsContent).eq(currentTabIndex).addClass(\"active\").removeClass(\"inactive\");\n ea.hooks.doAction(\"ea-advanced-tabs-triggered\", $(tabsContent).eq(currentTabIndex));\n $(tabsContent).each(function (index) {\n $(this).removeClass(\"active-default\");\n });\n var $filterGallery = tabsContent.eq(currentTabIndex).find(\".eael-filter-gallery-container\"),\n $postGridGallery = tabsContent.eq(currentTabIndex).find(\".eael-post-grid.eael-post-appender\"),\n $twitterfeedGallery = tabsContent.eq(currentTabIndex).find(\".eael-twitter-feed-masonry\"),\n $instaGallery = tabsContent.eq(currentTabIndex).find(\".eael-instafeed\"),\n $paGallery = tabsContent.eq(currentTabIndex).find(\".premium-gallery-container\"),\n $evCalendar = $(\".eael-event-calendar-cls\", tabsContent);\n\n if ($postGridGallery.length) {\n $postGridGallery.isotope(\"layout\");\n }\n\n if ($twitterfeedGallery.length) {\n $twitterfeedGallery.isotope(\"layout\");\n }\n\n if ($filterGallery.length) {\n $filterGallery.isotope(\"layout\");\n }\n\n if ($instaGallery.length) {\n $instaGallery.isotope(\"layout\");\n }\n\n if ($paGallery.length) {\n $paGallery.each(function (index, item) {\n $(item).isotope(\"layout\");\n });\n }\n\n if ($evCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n });\n });\n});\n\n//# sourceURL=webpack:///./src/js/view/advanced-tabs.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
+
eval("ea.hooks.addAction(\"init\", \"ea\", function () {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-adv-tabs.default\", function ($scope, $) {\n var $currentTab = $scope.find('.eael-advance-tabs');\n\n if (!$currentTab.attr('id')) {\n return false;\n }\n\n var $currentTabId = '#' + $currentTab.attr('id').toString();\n var hashTag = window.location.hash.substr(1);\n hashTag = hashTag === 'safari' ? 'eael-safari' : hashTag;\n var hashLink = false;\n $($currentTabId + ' > .eael-tabs-nav ul li', $scope).each(function (index) {\n if (hashTag && $(this).attr(\"id\") == hashTag) {\n $($currentTabId + ' .eael-tabs-nav > ul li', $scope).removeClass(\"active\").addClass(\"inactive\");\n $(this).removeClass(\"inactive\").addClass(\"active\");\n hashLink = true;\n } else {\n if ($(this).hasClass(\"active-default\") && !hashLink) {\n $($currentTabId + ' .eael-tabs-nav > ul li', $scope).removeClass(\"active\").addClass(\"inactive\");\n $(this).removeClass(\"inactive\").addClass('active');\n } else {\n if (index == 0) {\n $(this).removeClass(\"inactive\").addClass(\"active\");\n }\n }\n }\n });\n var hashContent = false;\n $($currentTabId + ' > .eael-tabs-content > div', $scope).each(function (index) {\n if (hashTag && $(this).attr(\"id\") == hashTag + '-tab') {\n $($currentTabId + ' > .eael-tabs-content > div', $scope).removeClass(\"active\");\n var nestedLink = $(this).closest('.eael-tabs-content').closest('.eael-tab-content-item');\n\n if (nestedLink.length) {\n var parentTab = nestedLink.closest('.eael-advance-tabs'),\n titleID = $(\"#\" + nestedLink.attr(\"id\")),\n contentID = titleID.data('title-link');\n parentTab.find(\" > .eael-tabs-nav > ul > li\").removeClass('active');\n parentTab.find(\" > .eael-tabs-content > div\").removeClass('active');\n titleID.addClass(\"active\");\n $(\"#\" + contentID).addClass(\"active\");\n }\n\n $(this).removeClass(\"inactive\").addClass(\"active\");\n hashContent = true;\n } else {\n if ($(this).hasClass(\"active-default\") && !hashContent) {\n $($currentTabId + ' > .eael-tabs-content > div', $scope).removeClass(\"active\");\n $(this).removeClass(\"inactive\").addClass(\"active\");\n } else {\n if (index == 0) {\n $(this).removeClass(\"inactive\").addClass(\"active\");\n }\n }\n }\n });\n $($currentTabId + ' .eael-tabs-nav ul li', $scope).on(\"click\", function (e) {\n e.preventDefault();\n var currentTabIndex = $(this).index();\n var tabsContainer = $(this).closest(\".eael-advance-tabs\");\n var tabsNav = $(tabsContainer).children(\".eael-tabs-nav\").children(\"ul\").children(\"li\");\n var tabsContent = $(tabsContainer).children(\".eael-tabs-content\").children(\"div\");\n $(this).parent(\"li\").addClass(\"active\");\n $(tabsNav).removeClass(\"active active-default\").addClass(\"inactive\").attr('aria-selected', 'false').attr('aria-expanded', 'false');\n $(this).addClass(\"active\").removeClass(\"inactive\");\n $(this).attr(\"aria-selected\", 'true').attr(\"aria-expanded\", 'true');\n $(tabsContent).removeClass(\"active\").addClass(\"inactive\");\n $(tabsContent).eq(currentTabIndex).addClass(\"active\").removeClass(\"inactive\");\n ea.hooks.doAction(\"ea-advanced-tabs-triggered\", $(tabsContent).eq(currentTabIndex));\n $(tabsContent).each(function (index) {\n $(this).removeClass(\"active-default\");\n });\n var $filterGallery = tabsContent.eq(currentTabIndex).find(\".eael-filter-gallery-container\"),\n $postGridGallery = tabsContent.eq(currentTabIndex).find(\".eael-post-grid.eael-post-appender\"),\n $twitterfeedGallery = tabsContent.eq(currentTabIndex).find(\".eael-twitter-feed-masonry\"),\n $instaGallery = tabsContent.eq(currentTabIndex).find(\".eael-instafeed\"),\n $paGallery = tabsContent.eq(currentTabIndex).find(\".premium-gallery-container\"),\n $evCalendar = $(\".eael-event-calendar-cls\", tabsContent);\n\n if ($postGridGallery.length) {\n $postGridGallery.isotope(\"layout\");\n }\n\n if ($twitterfeedGallery.length) {\n $twitterfeedGallery.isotope(\"layout\");\n }\n\n if ($filterGallery.length) {\n $filterGallery.isotope(\"layout\");\n }\n\n if ($instaGallery.length) {\n $instaGallery.isotope(\"layout\");\n }\n\n if ($paGallery.length) {\n $paGallery.each(function (index, item) {\n $(item).isotope(\"layout\");\n });\n }\n\n if ($evCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n });\n });\n});\n\n//# sourceURL=webpack:///./src/js/view/advanced-tabs.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
assets/front-end/js/view/advanced-tabs.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var a={};function t(i){if(a[i])return a[i].exports;var n=a[i]={i:i,l:!1,exports:{}};return e[i].call(n.exports,n,n.exports,t),n.l=!0,n.exports}t.m=e,t.c=a,t.d=function(e,a,i){t.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:i})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,a){if(1&a&&(e=t(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(t.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var n in e)t.d(i,n,function(a){return e[a]}.bind(null,n));return i},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},t.p="",t(t.s=2)}({2:function(e,a){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-adv-tabs.default",(function(e,a){var t=e.find(".eael-advance-tabs");if(!t.attr("id"))return!1;var i="#"+t.attr("id").toString(),n=window.location.hash.substr(1);n="safari"===n?"eael-safari":n;var s=!1;a(i+" > .eael-tabs-nav ul li",e).each((function(t){n&&a(this).attr("id")==n?(a(i+" .eael-tabs-nav > ul li",e).removeClass("active").addClass("inactive"),a(this).removeClass("inactive").addClass("active"),s=!0):a(this).hasClass("active-default")&&!s?(a(i+" .eael-tabs-nav > ul li",e).removeClass("active").addClass("inactive"),a(this).removeClass("inactive").addClass("active")):0==t&&a(this).removeClass("inactive").addClass("active")}));var l=!1;a(i+" > .eael-tabs-content > div",e).each((function(t){if(n&&a(this).attr("id")==n+"-tab"){a(i+" > .eael-tabs-content > div",e).removeClass("active");var s=a(this).closest(".eael-tabs-content").closest(".eael-tab-content-item");if(s.length){var
|
1 |
+
!function(e){var a={};function t(i){if(a[i])return a[i].exports;var n=a[i]={i:i,l:!1,exports:{}};return e[i].call(n.exports,n,n.exports,t),n.l=!0,n.exports}t.m=e,t.c=a,t.d=function(e,a,i){t.o(e,a)||Object.defineProperty(e,a,{enumerable:!0,get:i})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,a){if(1&a&&(e=t(e)),8&a)return e;if(4&a&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(t.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&a&&"string"!=typeof e)for(var n in e)t.d(i,n,function(a){return e[a]}.bind(null,n));return i},t.n=function(e){var a=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(a,"a",a),a},t.o=function(e,a){return Object.prototype.hasOwnProperty.call(e,a)},t.p="",t(t.s=2)}({2:function(e,a){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-adv-tabs.default",(function(e,a){var t=e.find(".eael-advance-tabs");if(!t.attr("id"))return!1;var i="#"+t.attr("id").toString(),n=window.location.hash.substr(1);n="safari"===n?"eael-safari":n;var s=!1;a(i+" > .eael-tabs-nav ul li",e).each((function(t){n&&a(this).attr("id")==n?(a(i+" .eael-tabs-nav > ul li",e).removeClass("active").addClass("inactive"),a(this).removeClass("inactive").addClass("active"),s=!0):a(this).hasClass("active-default")&&!s?(a(i+" .eael-tabs-nav > ul li",e).removeClass("active").addClass("inactive"),a(this).removeClass("inactive").addClass("active")):0==t&&a(this).removeClass("inactive").addClass("active")}));var l=!1;a(i+" > .eael-tabs-content > div",e).each((function(t){if(n&&a(this).attr("id")==n+"-tab"){a(i+" > .eael-tabs-content > div",e).removeClass("active");var s=a(this).closest(".eael-tabs-content").closest(".eael-tab-content-item");if(s.length){var r=s.closest(".eael-advance-tabs"),o=a("#"+s.attr("id")),d=o.data("title-link");r.find(" > .eael-tabs-nav > ul > li").removeClass("active"),r.find(" > .eael-tabs-content > div").removeClass("active"),o.addClass("active"),a("#"+d).addClass("active")}a(this).removeClass("inactive").addClass("active"),l=!0}else a(this).hasClass("active-default")&&!l?(a(i+" > .eael-tabs-content > div",e).removeClass("active"),a(this).removeClass("inactive").addClass("active")):0==t&&a(this).removeClass("inactive").addClass("active")})),a(i+" .eael-tabs-nav ul li",e).on("click",(function(e){e.preventDefault();var t=a(this).index(),i=a(this).closest(".eael-advance-tabs"),n=a(i).children(".eael-tabs-nav").children("ul").children("li"),s=a(i).children(".eael-tabs-content").children("div");a(this).parent("li").addClass("active"),a(n).removeClass("active active-default").addClass("inactive").attr("aria-selected","false").attr("aria-expanded","false"),a(this).addClass("active").removeClass("inactive"),a(this).attr("aria-selected","true").attr("aria-expanded","true"),a(s).removeClass("active").addClass("inactive"),a(s).eq(t).addClass("active").removeClass("inactive"),ea.hooks.doAction("ea-advanced-tabs-triggered",a(s).eq(t)),a(s).each((function(e){a(this).removeClass("active-default")}));var l=s.eq(t).find(".eael-filter-gallery-container"),r=s.eq(t).find(".eael-post-grid.eael-post-appender"),o=s.eq(t).find(".eael-twitter-feed-masonry"),d=s.eq(t).find(".eael-instafeed"),c=s.eq(t).find(".premium-gallery-container"),v=a(".eael-event-calendar-cls",s);r.length&&r.isotope("layout"),o.length&&o.isotope("layout"),l.length&&l.isotope("layout"),d.length&&d.isotope("layout"),c.length&&c.each((function(e,t){a(t).isotope("layout")})),v.length&&ea.hooks.doAction("eventCalendar.reinit")}))}))}))}});
|
essential_adons_elementor.php
CHANGED
@@ -4,14 +4,14 @@
|
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
-
* Version: 5.0.
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
-
* WC tested up to: 6.
|
13 |
-
* Elementor tested up to: 3.
|
14 |
-
* Elementor Pro tested up to: 3.6.
|
15 |
*/
|
16 |
|
17 |
if (!defined('ABSPATH')) {
|
@@ -27,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
-
define('EAEL_PLUGIN_VERSION', '5.0.
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
+
* Version: 5.0.11
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
+
* WC tested up to: 6.3.1
|
13 |
+
* Elementor tested up to: 3.6.0
|
14 |
+
* Elementor Pro tested up to: 3.6.4
|
15 |
*/
|
16 |
|
17 |
if (!defined('ABSPATH')) {
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
+
define('EAEL_PLUGIN_VERSION', '5.0.11');
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
includes/Classes/Bootstrap.php
CHANGED
@@ -17,6 +17,7 @@ use Essential_Addons_Elementor\Traits\Login_Registration;
|
|
17 |
use Essential_Addons_Elementor\Traits\Woo_Product_Comparable;
|
18 |
use Essential_Addons_Elementor\Traits\Controls;
|
19 |
use Essential_Addons_Elementor\Traits\Facebook_Feed;
|
|
|
20 |
|
21 |
|
22 |
class Bootstrap
|
@@ -32,6 +33,7 @@ class Bootstrap
|
|
32 |
use Woo_Product_Comparable;
|
33 |
use Controls;
|
34 |
use Facebook_Feed;
|
|
|
35 |
|
36 |
// instance container
|
37 |
private static $instance = null;
|
@@ -147,48 +149,25 @@ class Bootstrap
|
|
147 |
add_filter('elementor/frontend/builder_content_data', [$this, 'collect_loaded_templates'], 10, 2);
|
148 |
add_action('wp_print_footer_scripts', [$this, 'update_request_data']);
|
149 |
|
|
|
150 |
|
151 |
// Ajax
|
152 |
-
add_action('wp_ajax_load_more', array($this, 'ajax_load_more'));
|
153 |
-
add_action('wp_ajax_nopriv_load_more', array($this, 'ajax_load_more'));
|
154 |
-
|
155 |
-
add_action('wp_ajax_woo_product_pagination_product', array($this, 'eael_woo_pagination_product_ajax'));
|
156 |
-
add_action('wp_ajax_nopriv_woo_product_pagination_product', array($this, 'eael_woo_pagination_product_ajax'));
|
157 |
-
|
158 |
-
add_action('wp_ajax_woo_product_pagination', array($this, 'eael_woo_pagination_ajax'));
|
159 |
-
add_action('wp_ajax_nopriv_woo_product_pagination', array($this, 'eael_woo_pagination_ajax'));
|
160 |
-
|
161 |
-
//ajax add to cart fro product grid quick view
|
162 |
-
add_action('wp_ajax_eael_product_add_to_cart', array($this, 'eael_product_add_to_cart'));
|
163 |
-
add_action('wp_ajax_nopriv_eael_product_add_to_cart', array($this, 'eael_product_add_to_cart'));
|
164 |
-
|
165 |
add_action('wp_ajax_facebook_feed_load_more', [$this, 'facebook_feed_render_items']);
|
166 |
add_action('wp_ajax_nopriv_facebook_feed_load_more', [$this, 'facebook_feed_render_items']);
|
167 |
|
168 |
-
add_action('wp_ajax_woo_checkout_update_order_review', [$this, 'woo_checkout_update_order_review']);
|
169 |
-
add_action('wp_ajax_nopriv_woo_checkout_update_order_review', [$this, 'woo_checkout_update_order_review']);
|
170 |
// Compare table
|
171 |
add_action( 'wp_ajax_nopriv_eael_product_grid', [$this, 'get_compare_table']);
|
172 |
add_action( 'wp_ajax_eael_product_grid', [$this, 'get_compare_table']);
|
173 |
-
//quick view popup
|
174 |
-
add_action( 'wp_ajax_nopriv_eael_product_quickview_popup', [$this, 'eael_product_quickview_popup']);
|
175 |
-
add_action( 'wp_ajax_eael_product_quickview_popup', [$this, 'eael_product_quickview_popup']);
|
176 |
-
|
177 |
-
//product gallery
|
178 |
-
add_action( 'wp_ajax_nopriv_eael_product_gallery', [$this, 'ajax_eael_product_gallery']);
|
179 |
-
add_action( 'wp_ajax_eael_product_gallery', [$this, 'ajax_eael_product_gallery']);
|
180 |
-
|
181 |
-
// handle select2 ajax search
|
182 |
-
add_action('wp_ajax_eael_select2_search_post', [$this, 'select2_ajax_posts_filter_autocomplete']);
|
183 |
-
add_action('wp_ajax_nopriv_eael_select2_search_post', [$this, 'select2_ajax_posts_filter_autocomplete']);
|
184 |
-
|
185 |
-
add_action('wp_ajax_eael_select2_get_title', [$this, 'select2_ajax_get_posts_value_titles']);
|
186 |
-
add_action('wp_ajax_nopriv_eael_select2_get_title', [$this, 'select2_ajax_get_posts_value_titles']);
|
187 |
|
188 |
add_action( 'wp_ajax_eael_clear_widget_cache_data', [ $this, 'eael_clear_widget_cache_data' ] );
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
// Elements
|
191 |
-
add_action('elementor/controls/controls_registered', array($this, 'register_controls'));
|
192 |
add_action('elementor/elements/categories_registered', array($this, 'register_widget_categories'));
|
193 |
add_action('elementor/widgets/widgets_registered', array($this, 'register_elements'));
|
194 |
add_filter('elementor/editor/localize_settings', [$this, 'promote_pro_elements']);
|
@@ -253,8 +232,6 @@ class Bootstrap
|
|
253 |
|
254 |
add_action('admin_menu', array($this, 'admin_menu'));
|
255 |
add_action('admin_enqueue_scripts', array($this, 'admin_enqueue_scripts'));
|
256 |
-
add_action('wp_ajax_save_settings_with_ajax', array($this, 'save_settings'));
|
257 |
-
add_action('wp_ajax_clear_cache_files_with_ajax', array($this, 'clear_cache_files'));
|
258 |
|
259 |
// Core
|
260 |
add_filter('plugin_action_links_' . EAEL_PLUGIN_BASENAME, array($this, 'insert_plugin_links'));
|
17 |
use Essential_Addons_Elementor\Traits\Woo_Product_Comparable;
|
18 |
use Essential_Addons_Elementor\Traits\Controls;
|
19 |
use Essential_Addons_Elementor\Traits\Facebook_Feed;
|
20 |
+
use Essential_Addons_Elementor\Traits\Ajax_Handler;
|
21 |
|
22 |
|
23 |
class Bootstrap
|
33 |
use Woo_Product_Comparable;
|
34 |
use Controls;
|
35 |
use Facebook_Feed;
|
36 |
+
use Ajax_Handler;
|
37 |
|
38 |
// instance container
|
39 |
private static $instance = null;
|
149 |
add_filter('elementor/frontend/builder_content_data', [$this, 'collect_loaded_templates'], 10, 2);
|
150 |
add_action('wp_print_footer_scripts', [$this, 'update_request_data']);
|
151 |
|
152 |
+
$this->init_ajax_hooks();
|
153 |
|
154 |
// Ajax
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
add_action('wp_ajax_facebook_feed_load_more', [$this, 'facebook_feed_render_items']);
|
156 |
add_action('wp_ajax_nopriv_facebook_feed_load_more', [$this, 'facebook_feed_render_items']);
|
157 |
|
|
|
|
|
158 |
// Compare table
|
159 |
add_action( 'wp_ajax_nopriv_eael_product_grid', [$this, 'get_compare_table']);
|
160 |
add_action( 'wp_ajax_eael_product_grid', [$this, 'get_compare_table']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
|
162 |
add_action( 'wp_ajax_eael_clear_widget_cache_data', [ $this, 'eael_clear_widget_cache_data' ] );
|
163 |
|
164 |
+
if ( version_compare( ELEMENTOR_VERSION, '3.5.0', '>=' ) ) {
|
165 |
+
add_action( 'elementor/controls/register', array($this, 'register_controls') );
|
166 |
+
} else {
|
167 |
+
add_action('elementor/controls/controls_registered', array($this, 'register_controls'));
|
168 |
+
}
|
169 |
+
|
170 |
// Elements
|
|
|
171 |
add_action('elementor/elements/categories_registered', array($this, 'register_widget_categories'));
|
172 |
add_action('elementor/widgets/widgets_registered', array($this, 'register_elements'));
|
173 |
add_filter('elementor/editor/localize_settings', [$this, 'promote_pro_elements']);
|
232 |
|
233 |
add_action('admin_menu', array($this, 'admin_menu'));
|
234 |
add_action('admin_enqueue_scripts', array($this, 'admin_enqueue_scripts'));
|
|
|
|
|
235 |
|
236 |
// Core
|
237 |
add_filter('plugin_action_links_' . EAEL_PLUGIN_BASENAME, array($this, 'insert_plugin_links'));
|
includes/Elements/Adv_Tabs.php
CHANGED
@@ -925,11 +925,26 @@ class Adv_Tabs extends Widget_Base
|
|
925 |
<div <?php echo $this->get_render_attribute_string('eael_tab_wrapper'); ?>>
|
926 |
<div class="eael-tabs-nav">
|
927 |
<ul <?php echo $this->get_render_attribute_string('eael_tab_icon_position'); ?>>
|
928 |
-
<?php foreach ($settings['eael_adv_tabs_tab'] as $tab) :
|
929 |
$tab_id = $tab['eael_adv_tabs_tab_id'] ? $tab['eael_adv_tabs_tab_id'] : Helper::str_to_css_id( $tab['eael_adv_tabs_tab_title'] );
|
930 |
$tab_id = $tab_id === 'safari' ? 'eael-safari' : $tab_id;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
931 |
?>
|
932 |
-
<li
|
933 |
<?php if( $settings['eael_adv_tab_icon_position'] === 'eael-tab-inline-icon' && $settings['eael_adv_tabs_tab_icon_alignment'] === 'after' ) : ?>
|
934 |
<span class="eael-tab-title title-before-icon"><?php echo Helper::eael_wp_kses($tab['eael_adv_tabs_tab_title']); ?></span>
|
935 |
<?php endif; ?>
|
925 |
<div <?php echo $this->get_render_attribute_string('eael_tab_wrapper'); ?>>
|
926 |
<div class="eael-tabs-nav">
|
927 |
<ul <?php echo $this->get_render_attribute_string('eael_tab_icon_position'); ?>>
|
928 |
+
<?php foreach ($settings['eael_adv_tabs_tab'] as $index => $tab) :
|
929 |
$tab_id = $tab['eael_adv_tabs_tab_id'] ? $tab['eael_adv_tabs_tab_id'] : Helper::str_to_css_id( $tab['eael_adv_tabs_tab_title'] );
|
930 |
$tab_id = $tab_id === 'safari' ? 'eael-safari' : $tab_id;
|
931 |
+
|
932 |
+
$tab_count = $index + 1;
|
933 |
+
$tab_title_setting_key = $this->get_repeater_setting_key( 'eael_adv_tabs_tab_title', 'eael_adv_tabs_tab', $index );
|
934 |
+
|
935 |
+
|
936 |
+
$this->add_render_attribute( $tab_title_setting_key, [
|
937 |
+
'id' => $tab_id,
|
938 |
+
'class' => [ $tab['eael_adv_tabs_tab_show_as_default'], 'eael-tab-item-trigger' ],
|
939 |
+
'aria-selected' => 1 === $tab_count ? 'true' : 'false',
|
940 |
+
'data-tab' => $tab_count,
|
941 |
+
'role' => 'tab',
|
942 |
+
'tabindex' => 1 === $tab_count ? '0' : '-1',
|
943 |
+
'aria-controls' => $tab_id . '-tab',
|
944 |
+
'aria-expanded' => 'false',
|
945 |
+
] );
|
946 |
?>
|
947 |
+
<li <?php $this->print_render_attribute_string( $tab_title_setting_key ); ?>>
|
948 |
<?php if( $settings['eael_adv_tab_icon_position'] === 'eael-tab-inline-icon' && $settings['eael_adv_tabs_tab_icon_alignment'] === 'after' ) : ?>
|
949 |
<span class="eael-tab-title title-before-icon"><?php echo Helper::eael_wp_kses($tab['eael_adv_tabs_tab_title']); ?></span>
|
950 |
<?php endif; ?>
|
includes/Elements/Cta_Box.php
CHANGED
@@ -7,6 +7,7 @@ if (!defined('ABSPATH')) {
|
|
7 |
}
|
8 |
|
9 |
use \Elementor\Controls_Manager;
|
|
|
10 |
use \Elementor\Plugin;
|
11 |
use \Elementor\Group_Control_Border;
|
12 |
use \Elementor\Group_Control_Box_Shadow;
|
@@ -88,6 +89,20 @@ class Cta_Box extends Widget_Base
|
|
88 |
]
|
89 |
);
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
/**
|
92 |
* Condition: 'eael_cta_type' => 'cta-basic'
|
93 |
*/
|
@@ -204,7 +219,7 @@ class Cta_Box extends Widget_Base
|
|
204 |
'label' => esc_html__('Title', 'essential-addons-for-elementor-lite'),
|
205 |
'type' => Controls_Manager::TEXT,
|
206 |
'label_block' => true,
|
207 |
-
'default' => esc_html__('
|
208 |
'dynamic' => ['active' => true],
|
209 |
]
|
210 |
);
|
@@ -266,7 +281,42 @@ class Cta_Box extends Widget_Base
|
|
266 |
],
|
267 |
]
|
268 |
);
|
269 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
$this->add_control(
|
271 |
'eael_cta_btn_text',
|
272 |
[
|
@@ -274,7 +324,7 @@ class Cta_Box extends Widget_Base
|
|
274 |
'type' => Controls_Manager::TEXT,
|
275 |
'dynamic' => ['active' => true],
|
276 |
'label_block' => true,
|
277 |
-
'default' => esc_html__('
|
278 |
]
|
279 |
);
|
280 |
|
@@ -293,6 +343,7 @@ class Cta_Box extends Widget_Base
|
|
293 |
'separator' => 'after',
|
294 |
]
|
295 |
);
|
|
|
296 |
// secondary button
|
297 |
$this->add_control(
|
298 |
'eael_cta_secondary_btn_is_show',
|
@@ -311,7 +362,7 @@ class Cta_Box extends Widget_Base
|
|
311 |
'type' => Controls_Manager::TEXT,
|
312 |
'dynamic' => ['active' => true],
|
313 |
'label_block' => true,
|
314 |
-
'default' => esc_html__('
|
315 |
'condition' => array(
|
316 |
'eael_cta_secondary_btn_is_show' => 'yes'
|
317 |
)
|
@@ -455,6 +506,23 @@ class Cta_Box extends Widget_Base
|
|
455 |
'eael_cta_color_type!' => 'cta-bg-color',
|
456 |
'eael_cta_bg_overlay' => 'yes',
|
457 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
458 |
]
|
459 |
);
|
460 |
|
@@ -713,6 +781,24 @@ class Cta_Box extends Widget_Base
|
|
713 |
]
|
714 |
);
|
715 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
$this->start_controls_tabs('eael_cta_button_tabs');
|
717 |
|
718 |
// Normal State Tab
|
@@ -725,12 +811,27 @@ class Cta_Box extends Widget_Base
|
|
725 |
'type' => Controls_Manager::COLOR,
|
726 |
'default' => '#4d4d4d',
|
727 |
'selectors' => [
|
728 |
-
'{{WRAPPER}} .eael-call-to-action .cta-button:not(.cta-secondary-button)' => 'color: {{VALUE}};',
|
729 |
],
|
|
|
|
|
|
|
730 |
]
|
731 |
);
|
732 |
|
733 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
734 |
|
735 |
$this->add_control(
|
736 |
'eael_cta_btn_normal_bg_color',
|
@@ -739,13 +840,30 @@ class Cta_Box extends Widget_Base
|
|
739 |
'type' => Controls_Manager::COLOR,
|
740 |
'default' => '#f9f9f9',
|
741 |
'selectors' => [
|
742 |
-
'{{WRAPPER}} .eael-call-to-action .cta-button:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
],
|
744 |
'condition' => [
|
745 |
-
'eael_cta_btn_is_used_gradient_bg' => ''
|
|
|
746 |
]
|
747 |
]
|
748 |
);
|
|
|
749 |
$this->add_group_control(
|
750 |
\Elementor\Group_Control_Background::get_type(),
|
751 |
[
|
@@ -765,6 +883,10 @@ class Cta_Box extends Widget_Base
|
|
765 |
'name' => 'eael_cat_btn_normal_border',
|
766 |
'label' => esc_html__('Border', 'essential-addons-for-elementor-lite'),
|
767 |
'selector' => '{{WRAPPER}} .eael-call-to-action .cta-button:not(.cta-secondary-button)',
|
|
|
|
|
|
|
|
|
768 |
]
|
769 |
);
|
770 |
|
@@ -781,9 +903,46 @@ class Cta_Box extends Widget_Base
|
|
781 |
'selectors' => [
|
782 |
'{{WRAPPER}} .eael-call-to-action .cta-button:not(.cta-secondary-button)' => 'border-radius: {{SIZE}}px;',
|
783 |
],
|
|
|
|
|
|
|
|
|
784 |
]
|
785 |
);
|
786 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
$this->end_controls_tab();
|
788 |
|
789 |
// Hover State Tab
|
@@ -796,8 +955,25 @@ class Cta_Box extends Widget_Base
|
|
796 |
'type' => Controls_Manager::COLOR,
|
797 |
'default' => '#f9f9f9',
|
798 |
'selectors' => [
|
799 |
-
'{{WRAPPER}} .eael-call-to-action .cta-button:hover:not(.cta-secondary-button)' => 'color: {{VALUE}};',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
800 |
],
|
|
|
|
|
|
|
801 |
]
|
802 |
);
|
803 |
|
@@ -808,14 +984,33 @@ class Cta_Box extends Widget_Base
|
|
808 |
'type' => Controls_Manager::COLOR,
|
809 |
'default' => '#3F51B5',
|
810 |
'selectors' => [
|
811 |
-
'{{WRAPPER}} .eael-call-to-action .cta-button:after:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
812 |
-
'{{WRAPPER}} .eael-call-to-action .cta-button:hover:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
813 |
],
|
814 |
'condition' => [
|
815 |
-
'eael_cta_btn_is_used_gradient_bg' => ''
|
|
|
816 |
]
|
817 |
]
|
818 |
);
|
|
|
|
|
819 |
$this->add_group_control(
|
820 |
\Elementor\Group_Control_Background::get_type(),
|
821 |
[
|
@@ -838,9 +1033,45 @@ class Cta_Box extends Widget_Base
|
|
838 |
'selectors' => [
|
839 |
'{{WRAPPER}} .eael-call-to-action .cta-button:hover:not(.cta-secondary-button)' => 'border-color: {{VALUE}};',
|
840 |
],
|
|
|
|
|
|
|
|
|
841 |
]
|
842 |
|
843 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
844 |
|
845 |
$this->end_controls_tab();
|
846 |
|
@@ -931,8 +1162,25 @@ class Cta_Box extends Widget_Base
|
|
931 |
'type' => Controls_Manager::COLOR,
|
932 |
'default' => '#4d4d4d',
|
933 |
'selectors' => [
|
934 |
-
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-secondary-button' => 'color: {{VALUE}};',
|
935 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
936 |
]
|
937 |
);
|
938 |
|
@@ -983,8 +1231,25 @@ class Cta_Box extends Widget_Base
|
|
983 |
'type' => Controls_Manager::COLOR,
|
984 |
'default' => '#f9f9f9',
|
985 |
'selectors' => [
|
986 |
-
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-secondary-button:hover' => 'color: {{VALUE}};',
|
987 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
988 |
]
|
989 |
);
|
990 |
|
@@ -1071,6 +1336,23 @@ class Cta_Box extends Widget_Base
|
|
1071 |
'selectors' => [
|
1072 |
'{{WRAPPER}} .eael-call-to-action.cta-icon-flex .icon' => 'color: {{VALUE}};',
|
1073 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1074 |
]
|
1075 |
);
|
1076 |
|
@@ -1134,12 +1416,29 @@ class Cta_Box extends Widget_Base
|
|
1134 |
if ( ! empty( $settings['eael_cta_btn_link']['url'] ) ) {
|
1135 |
$this->add_link_attributes( 'button', $settings['eael_cta_btn_link'] );
|
1136 |
}
|
1137 |
-
$this->add_render_attribute( 'button', 'class', "cta-button {$cta_btn_effect}" );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1138 |
|
1139 |
// button markup
|
1140 |
$buttonMarkup = '';
|
1141 |
-
$buttonMarkup .= '<a ' . $this->get_render_attribute_string( 'button' ) . '>' .
|
1142 |
-
|
|
|
|
|
|
|
|
|
1143 |
// button attributes
|
1144 |
if ( ! empty( $settings['eael_cta_secondary_btn_link']['url'] ) ) {
|
1145 |
$this->add_link_attributes( 'secondary_button', $settings['eael_cta_secondary_btn_link'] );
|
@@ -1151,7 +1450,7 @@ class Cta_Box extends Widget_Base
|
|
1151 |
}
|
1152 |
?>
|
1153 |
<?php if ('cta-basic' == $settings['eael_cta_type']): ?>
|
1154 |
-
<div class="eael-call-to-action <?php echo esc_attr($cta_class); ?>">
|
1155 |
<?php
|
1156 |
print $headingMarkup;
|
1157 |
print $contentMarkup;
|
@@ -1160,7 +1459,7 @@ class Cta_Box extends Widget_Base
|
|
1160 |
</div>
|
1161 |
<?php endif;?>
|
1162 |
<?php if ('cta-flex' == $settings['eael_cta_type']): ?>
|
1163 |
-
<div class="eael-call-to-action cta-flex <?php echo esc_attr($cta_class); ?>">
|
1164 |
<div class="content">
|
1165 |
<?php
|
1166 |
print $headingMarkup;
|
@@ -1173,7 +1472,7 @@ class Cta_Box extends Widget_Base
|
|
1173 |
</div>
|
1174 |
<?php endif;?>
|
1175 |
<?php if ('cta-icon-flex' == $settings['eael_cta_type']): ?>
|
1176 |
-
<div class="eael-call-to-action cta-icon-flex <?php echo esc_attr($cta_class); ?>">
|
1177 |
<div class="icon">
|
1178 |
<?php if ($icon_is_new || $icon_migrated) {?>
|
1179 |
<?php if (isset($settings['eael_cta_flex_grid_icon_new']['value']['url'])): ?>
|
7 |
}
|
8 |
|
9 |
use \Elementor\Controls_Manager;
|
10 |
+
use Elementor\Icons_Manager;
|
11 |
use \Elementor\Plugin;
|
12 |
use \Elementor\Group_Control_Border;
|
13 |
use \Elementor\Group_Control_Box_Shadow;
|
89 |
]
|
90 |
);
|
91 |
|
92 |
+
$this->add_control(
|
93 |
+
'eael_cta_preset',
|
94 |
+
[
|
95 |
+
'label' => esc_html__('Content Preset', 'essential-addons-for-elementor-lite'),
|
96 |
+
'type' => Controls_Manager::SELECT,
|
97 |
+
'default' => 'cta-preset-1',
|
98 |
+
'label_block' => false,
|
99 |
+
'options' => [
|
100 |
+
'cta-preset-1' => esc_html__('Preset 1', 'essential-addons-for-elementor-lite'),
|
101 |
+
'cta-preset-2' => esc_html__('Preset 2', 'essential-addons-for-elementor-lite'),
|
102 |
+
],
|
103 |
+
]
|
104 |
+
);
|
105 |
+
|
106 |
/**
|
107 |
* Condition: 'eael_cta_type' => 'cta-basic'
|
108 |
*/
|
219 |
'label' => esc_html__('Title', 'essential-addons-for-elementor-lite'),
|
220 |
'type' => Controls_Manager::TEXT,
|
221 |
'label_block' => true,
|
222 |
+
'default' => esc_html__('Sample Call to Action Heading', 'essential-addons-for-elementor-lite'),
|
223 |
'dynamic' => ['active' => true],
|
224 |
]
|
225 |
);
|
281 |
],
|
282 |
]
|
283 |
);
|
284 |
+
|
285 |
+
// primary button
|
286 |
+
$this->add_control(
|
287 |
+
'eael_cta_btn_preset',
|
288 |
+
[
|
289 |
+
'label' => esc_html__('Button Preset', 'essential-addons-for-elementor-lite'),
|
290 |
+
'type' => Controls_Manager::SELECT,
|
291 |
+
'default' => 'cta-btn-preset-2',
|
292 |
+
'label_block' => false,
|
293 |
+
'options' => [
|
294 |
+
'cta-btn-preset-1' => esc_html__('Preset 1', 'essential-addons-for-elementor-lite'),
|
295 |
+
'cta-btn-preset-2' => esc_html__('Preset 2', 'essential-addons-for-elementor-lite'),
|
296 |
+
],
|
297 |
+
'condition' => [
|
298 |
+
'eael_cta_preset' => 'cta-preset-2',
|
299 |
+
]
|
300 |
+
]
|
301 |
+
);
|
302 |
+
|
303 |
+
$this->add_control(
|
304 |
+
'eael_cta_btn_icon',
|
305 |
+
[
|
306 |
+
'label' => esc_html__('Icon', 'essential-addons-for-elementor-lite'),
|
307 |
+
'type' => Controls_Manager::ICONS,
|
308 |
+
'default' => [
|
309 |
+
'value' => 'fas fa-bullhorn',
|
310 |
+
'library' => 'fa-solid',
|
311 |
+
],
|
312 |
+
'condition' => [
|
313 |
+
'eael_cta_preset' => 'cta-preset-2',
|
314 |
+
'eael_cta_btn_preset' => 'cta-btn-preset-2',
|
315 |
+
]
|
316 |
+
]
|
317 |
+
);
|
318 |
+
|
319 |
+
|
320 |
$this->add_control(
|
321 |
'eael_cta_btn_text',
|
322 |
[
|
324 |
'type' => Controls_Manager::TEXT,
|
325 |
'dynamic' => ['active' => true],
|
326 |
'label_block' => true,
|
327 |
+
'default' => esc_html__('Click Here', 'essential-addons-for-elementor-lite'),
|
328 |
]
|
329 |
);
|
330 |
|
343 |
'separator' => 'after',
|
344 |
]
|
345 |
);
|
346 |
+
|
347 |
// secondary button
|
348 |
$this->add_control(
|
349 |
'eael_cta_secondary_btn_is_show',
|
362 |
'type' => Controls_Manager::TEXT,
|
363 |
'dynamic' => ['active' => true],
|
364 |
'label_block' => true,
|
365 |
+
'default' => esc_html__('Click Now', 'essential-addons-for-elementor-lite'),
|
366 |
'condition' => array(
|
367 |
'eael_cta_secondary_btn_is_show' => 'yes'
|
368 |
)
|
506 |
'eael_cta_color_type!' => 'cta-bg-color',
|
507 |
'eael_cta_bg_overlay' => 'yes',
|
508 |
],
|
509 |
+
'condition' => [
|
510 |
+
'eael_cta_preset' => 'cta-preset-2',
|
511 |
+
]
|
512 |
+
]
|
513 |
+
);
|
514 |
+
|
515 |
+
$this->add_control(
|
516 |
+
'eael_cta_bg_color_preset_2',
|
517 |
+
[
|
518 |
+
'label' => esc_html__('Background Color', 'essential-addons-for-elementor-lite'),
|
519 |
+
'type' => Controls_Manager::COLOR,
|
520 |
+
'selectors' => [
|
521 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-2:not(.cta-preset-1)' => 'background: {{VALUE}};',
|
522 |
+
],
|
523 |
+
'condition' => [
|
524 |
+
'eael_cta_preset' => 'cta-preset-2',
|
525 |
+
]
|
526 |
]
|
527 |
);
|
528 |
|
781 |
]
|
782 |
);
|
783 |
|
784 |
+
$this->add_control(
|
785 |
+
'eael_cta_btn_icon_size',
|
786 |
+
[
|
787 |
+
'label' => esc_html__('Icon Size', 'essential-addons-for-elementor-lite'),
|
788 |
+
'type' => Controls_Manager::SLIDER,
|
789 |
+
'range' => [
|
790 |
+
'px' => [
|
791 |
+
'max' => 50,
|
792 |
+
],
|
793 |
+
],
|
794 |
+
'separator' => 'before',
|
795 |
+
'selectors' => [
|
796 |
+
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-btn-preset-2 i' => 'font-size: {{SIZE}}px;',
|
797 |
+
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-btn-preset-2 svg' => 'width: {{SIZE}}px; height: {{SIZE}}px;',
|
798 |
+
],
|
799 |
+
]
|
800 |
+
);
|
801 |
+
|
802 |
$this->start_controls_tabs('eael_cta_button_tabs');
|
803 |
|
804 |
// Normal State Tab
|
811 |
'type' => Controls_Manager::COLOR,
|
812 |
'default' => '#4d4d4d',
|
813 |
'selectors' => [
|
814 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-1:not(.cta-preset-2) .cta-button:not(.cta-secondary-button)' => 'color: {{VALUE}};',
|
815 |
],
|
816 |
+
'condition' => [
|
817 |
+
'eael_cta_preset' => 'cta-preset-1',
|
818 |
+
]
|
819 |
]
|
820 |
);
|
821 |
|
822 |
+
$this->add_control(
|
823 |
+
'eael_cta_btn_normal_text_color_preset_2',
|
824 |
+
[
|
825 |
+
'label' => esc_html__('Text Color', 'essential-addons-for-elementor-lite'),
|
826 |
+
'type' => Controls_Manager::COLOR,
|
827 |
+
'selectors' => [
|
828 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-2:not(.cta-preset-1) .cta-button:not(.cta-secondary-button)' => 'color: {{VALUE}};',
|
829 |
+
],
|
830 |
+
'condition' => [
|
831 |
+
'eael_cta_preset' => 'cta-preset-2',
|
832 |
+
]
|
833 |
+
]
|
834 |
+
);
|
835 |
|
836 |
$this->add_control(
|
837 |
'eael_cta_btn_normal_bg_color',
|
840 |
'type' => Controls_Manager::COLOR,
|
841 |
'default' => '#f9f9f9',
|
842 |
'selectors' => [
|
843 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-1:not(.cta-preset-2) .cta-button:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
844 |
+
],
|
845 |
+
'condition' => [
|
846 |
+
'eael_cta_btn_is_used_gradient_bg' => '',
|
847 |
+
'eael_cta_preset' => 'cta-preset-1',
|
848 |
+
]
|
849 |
+
]
|
850 |
+
);
|
851 |
+
|
852 |
+
$this->add_control(
|
853 |
+
'eael_cta_btn_normal_bg_color_preset_2',
|
854 |
+
[
|
855 |
+
'label' => esc_html__('Background Color', 'essential-addons-for-elementor-lite'),
|
856 |
+
'type' => Controls_Manager::COLOR,
|
857 |
+
'selectors' => [
|
858 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-2:not(.cta-preset-1) .cta-button:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
859 |
],
|
860 |
'condition' => [
|
861 |
+
'eael_cta_btn_is_used_gradient_bg' => '',
|
862 |
+
'eael_cta_preset' => 'cta-preset-2',
|
863 |
]
|
864 |
]
|
865 |
);
|
866 |
+
|
867 |
$this->add_group_control(
|
868 |
\Elementor\Group_Control_Background::get_type(),
|
869 |
[
|
883 |
'name' => 'eael_cat_btn_normal_border',
|
884 |
'label' => esc_html__('Border', 'essential-addons-for-elementor-lite'),
|
885 |
'selector' => '{{WRAPPER}} .eael-call-to-action .cta-button:not(.cta-secondary-button)',
|
886 |
+
'condition' => [
|
887 |
+
'eael_cta_btn_preset!' => 'cta-btn-preset-2',
|
888 |
+
'eael_cta_preset!' => 'cta-preset-2',
|
889 |
+
]
|
890 |
]
|
891 |
);
|
892 |
|
903 |
'selectors' => [
|
904 |
'{{WRAPPER}} .eael-call-to-action .cta-button:not(.cta-secondary-button)' => 'border-radius: {{SIZE}}px;',
|
905 |
],
|
906 |
+
'condition' => [
|
907 |
+
'eael_cta_btn_preset!' => 'cta-btn-preset-2',
|
908 |
+
'eael_cta_preset!' => 'cta-preset-2',
|
909 |
+
]
|
910 |
]
|
911 |
);
|
912 |
|
913 |
+
$this->add_control(
|
914 |
+
'eael_cta_btn_icon_bg',
|
915 |
+
[
|
916 |
+
'label' => esc_html__('Icon Background Color', 'essential-addons-for-elementor-lite'),
|
917 |
+
'type' => Controls_Manager::COLOR,
|
918 |
+
'selectors' => [
|
919 |
+
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-btn-preset-2:not(.cta-secondary-button) .btn-icon' => 'background: {{VALUE}};',
|
920 |
+
],
|
921 |
+
'separator' => 'before',
|
922 |
+
'condition' => [
|
923 |
+
'eael_cta_btn_preset' => 'cta-btn-preset-2',
|
924 |
+
'eael_cta_preset' => 'cta-preset-2',
|
925 |
+
]
|
926 |
+
]
|
927 |
+
);
|
928 |
+
|
929 |
+
$this->add_control(
|
930 |
+
'eael_cta_btn_icon_color',
|
931 |
+
[
|
932 |
+
'label' => esc_html__('Icon Color', 'essential-addons-for-elementor-lite'),
|
933 |
+
'type' => Controls_Manager::COLOR,
|
934 |
+
'selectors' => [
|
935 |
+
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-btn-preset-2:not(.cta-secondary-button) i' => 'color: {{VALUE}};',
|
936 |
+
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-btn-preset-2:not(.cta-secondary-button) svg' =>
|
937 |
+
'fill: {{VALUE}};',
|
938 |
+
],
|
939 |
+
'condition' => [
|
940 |
+
'eael_cta_btn_preset' => 'cta-btn-preset-2',
|
941 |
+
'eael_cta_preset' => 'cta-preset-2',
|
942 |
+
]
|
943 |
+
]
|
944 |
+
);
|
945 |
+
|
946 |
$this->end_controls_tab();
|
947 |
|
948 |
// Hover State Tab
|
955 |
'type' => Controls_Manager::COLOR,
|
956 |
'default' => '#f9f9f9',
|
957 |
'selectors' => [
|
958 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-1:not(.cta-preset-2) .cta-button:hover:not(.cta-secondary-button)' => 'color: {{VALUE}};',
|
959 |
+
],
|
960 |
+
'condition' => [
|
961 |
+
'eael_cta_preset' => 'cta-preset-1',
|
962 |
+
]
|
963 |
+
]
|
964 |
+
);
|
965 |
+
|
966 |
+
$this->add_control(
|
967 |
+
'eael_cta_btn_hover_text_color_preset_2',
|
968 |
+
[
|
969 |
+
'label' => esc_html__('Text Color', 'essential-addons-for-elementor-lite'),
|
970 |
+
'type' => Controls_Manager::COLOR,
|
971 |
+
'selectors' => [
|
972 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-2:not(.cta-preset-1) .cta-button:hover:not(.cta-secondary-button)' => 'color: {{VALUE}};',
|
973 |
],
|
974 |
+
'condition' => [
|
975 |
+
'eael_cta_preset' => 'cta-preset-2',
|
976 |
+
]
|
977 |
]
|
978 |
);
|
979 |
|
984 |
'type' => Controls_Manager::COLOR,
|
985 |
'default' => '#3F51B5',
|
986 |
'selectors' => [
|
987 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-1:not(.cta-preset-2) .cta-button:after:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
988 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-1:not(.cta-preset-2) .cta-button:hover:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
989 |
+
],
|
990 |
+
'condition' => [
|
991 |
+
'eael_cta_btn_is_used_gradient_bg' => '',
|
992 |
+
'eael_cta_preset' => 'cta-preset-1',
|
993 |
+
]
|
994 |
+
]
|
995 |
+
);
|
996 |
+
|
997 |
+
$this->add_control(
|
998 |
+
'eael_cta_btn_hover_bg_color_preset_2',
|
999 |
+
[
|
1000 |
+
'label' => esc_html__('Background Color', 'essential-addons-for-elementor-lite'),
|
1001 |
+
'type' => Controls_Manager::COLOR,
|
1002 |
+
'selectors' => [
|
1003 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-2:not(.cta-preset-1) .cta-button:after:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
1004 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-2:not(.cta-preset-1) .cta-button:hover:not(.cta-secondary-button)' => 'background: {{VALUE}};',
|
1005 |
],
|
1006 |
'condition' => [
|
1007 |
+
'eael_cta_btn_is_used_gradient_bg' => '',
|
1008 |
+
'eael_cta_preset' => 'cta-preset-2',
|
1009 |
]
|
1010 |
]
|
1011 |
);
|
1012 |
+
|
1013 |
+
|
1014 |
$this->add_group_control(
|
1015 |
\Elementor\Group_Control_Background::get_type(),
|
1016 |
[
|
1033 |
'selectors' => [
|
1034 |
'{{WRAPPER}} .eael-call-to-action .cta-button:hover:not(.cta-secondary-button)' => 'border-color: {{VALUE}};',
|
1035 |
],
|
1036 |
+
'condition' => [
|
1037 |
+
'eael_cta_btn_preset!' => 'cta-btn-preset-2',
|
1038 |
+
'eael_cta_preset!' => 'cta-preset-2',
|
1039 |
+
]
|
1040 |
]
|
1041 |
|
1042 |
);
|
1043 |
+
$this->add_control(
|
1044 |
+
'eael_cta_btn_icon_bg_hover',
|
1045 |
+
[
|
1046 |
+
'label' => esc_html__('Icon Background Color', 'essential-addons-for-elementor-lite'),
|
1047 |
+
'type' => Controls_Manager::COLOR,
|
1048 |
+
'selectors' => [
|
1049 |
+
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-btn-preset-2:not(.cta-secondary-button):hover .btn-icon' =>
|
1050 |
+
'background: {{VALUE}};',
|
1051 |
+
],
|
1052 |
+
'separator' => 'before',
|
1053 |
+
'condition' => [
|
1054 |
+
'eael_cta_btn_preset' => 'cta-btn-preset-2',
|
1055 |
+
'eael_cta_preset' => 'cta-preset-2',
|
1056 |
+
]
|
1057 |
+
]
|
1058 |
+
);
|
1059 |
+
|
1060 |
+
$this->add_control(
|
1061 |
+
'eael_cta_btn_icon_color_hover',
|
1062 |
+
[
|
1063 |
+
'label' => esc_html__('Icon Color', 'essential-addons-for-elementor-lite'),
|
1064 |
+
'type' => Controls_Manager::COLOR,
|
1065 |
+
'selectors' => [
|
1066 |
+
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-btn-preset-2:not(.cta-secondary-button):hover i' => 'color: {{VALUE}};',
|
1067 |
+
'{{WRAPPER}} .eael-call-to-action .cta-button.cta-btn-preset-2:not(.cta-secondary-button):hover svg' => 'fill: {{VALUE}};',
|
1068 |
+
],
|
1069 |
+
'condition' => [
|
1070 |
+
'eael_cta_btn_preset' => 'cta-btn-preset-2',
|
1071 |
+
'eael_cta_preset' => 'cta-preset-2',
|
1072 |
+
]
|
1073 |
+
]
|
1074 |
+
);
|
1075 |
|
1076 |
$this->end_controls_tab();
|
1077 |
|
1162 |
'type' => Controls_Manager::COLOR,
|
1163 |
'default' => '#4d4d4d',
|
1164 |
'selectors' => [
|
1165 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-1:not(.cta-preset-2) .cta-button.cta-secondary-button' => 'color: {{VALUE}};',
|
1166 |
],
|
1167 |
+
'condition' => [
|
1168 |
+
'eael_cta_preset' => 'cta-preset-1',
|
1169 |
+
]
|
1170 |
+
]
|
1171 |
+
);
|
1172 |
+
|
1173 |
+
$this->add_control(
|
1174 |
+
'eael_cta_secondary_btn_normal_text_color_preset_2',
|
1175 |
+
[
|
1176 |
+
'label' => esc_html__('Text Color', 'essential-addons-for-elementor-lite'),
|
1177 |
+
'type' => Controls_Manager::COLOR,
|
1178 |
+
'selectors' => [
|
1179 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-2:not(.cta-preset-1) .cta-button.cta-secondary-button' => 'color: {{VALUE}};',
|
1180 |
+
],
|
1181 |
+
'condition' => [
|
1182 |
+
'eael_cta_preset' => 'cta-preset-2',
|
1183 |
+
]
|
1184 |
]
|
1185 |
);
|
1186 |
|
1231 |
'type' => Controls_Manager::COLOR,
|
1232 |
'default' => '#f9f9f9',
|
1233 |
'selectors' => [
|
1234 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-1:not(.cta-preset-2) .cta-button.cta-secondary-button:hover' => 'color: {{VALUE}};',
|
1235 |
],
|
1236 |
+
'condition' => [
|
1237 |
+
'eael_cta_preset' => 'cta-preset-1',
|
1238 |
+
]
|
1239 |
+
]
|
1240 |
+
);
|
1241 |
+
|
1242 |
+
$this->add_control(
|
1243 |
+
'eael_cta_secondary_btn_hover_text_color_preset_2',
|
1244 |
+
[
|
1245 |
+
'label' => esc_html__('Text Color', 'essential-addons-for-elementor-lite'),
|
1246 |
+
'type' => Controls_Manager::COLOR,
|
1247 |
+
'selectors' => [
|
1248 |
+
'{{WRAPPER}} .eael-call-to-action.cta-preset-2:not(.cta-preset-1) .cta-button.cta-secondary-button:hover' => 'color: {{VALUE}};',
|
1249 |
+
],
|
1250 |
+
'condition' => [
|
1251 |
+
'eael_cta_preset' => 'cta-preset-2',
|
1252 |
+
]
|
1253 |
]
|
1254 |
);
|
1255 |
|
1336 |
'selectors' => [
|
1337 |
'{{WRAPPER}} .eael-call-to-action.cta-icon-flex .icon' => 'color: {{VALUE}};',
|
1338 |
],
|
1339 |
+
'condition' => [
|
1340 |
+
'eael_cta_preset' => 'cta-preset-1',
|
1341 |
+
]
|
1342 |
+
]
|
1343 |
+
);
|
1344 |
+
|
1345 |
+
$this->add_control(
|
1346 |
+
'eael_section_cta_icon_color_preset_2',
|
1347 |
+
[
|
1348 |
+
'label' => esc_html__('Color', 'essential-addons-for-elementor-lite'),
|
1349 |
+
'type' => Controls_Manager::COLOR,
|
1350 |
+
'selectors' => [
|
1351 |
+
'{{WRAPPER}} .eael-call-to-action.cta-icon-flex .icon' => 'color: {{VALUE}};',
|
1352 |
+
],
|
1353 |
+
'condition' => [
|
1354 |
+
'eael_cta_preset' => 'cta-preset-2',
|
1355 |
+
]
|
1356 |
]
|
1357 |
);
|
1358 |
|
1416 |
if ( ! empty( $settings['eael_cta_btn_link']['url'] ) ) {
|
1417 |
$this->add_link_attributes( 'button', $settings['eael_cta_btn_link'] );
|
1418 |
}
|
1419 |
+
$this->add_render_attribute( 'button', 'class', "cta-button {$settings['eael_cta_btn_preset']} {$cta_btn_effect}" );
|
1420 |
+
|
1421 |
+
if($settings['eael_cta_btn_preset'] === 'cta-btn-preset-2'){
|
1422 |
+
$btn_icon_wrap = '<span class="btn-icon">';
|
1423 |
+
ob_start();
|
1424 |
+
Icons_Manager::render_icon( $settings['eael_cta_btn_icon'], [ 'aria-hidden' => 'true' ] );
|
1425 |
+
$btn_icon = ob_get_clean();
|
1426 |
+
$btn_icon_wrap_end = '</span>';
|
1427 |
+
} else {
|
1428 |
+
$btn_icon_wrap = '';
|
1429 |
+
$btn_icon = '';
|
1430 |
+
$btn_icon_wrap_end = '';
|
1431 |
+
}
|
1432 |
+
|
1433 |
|
1434 |
// button markup
|
1435 |
$buttonMarkup = '';
|
1436 |
+
$buttonMarkup .= '<a ' . $this->get_render_attribute_string( 'button' ) . '>'. $btn_icon_wrap. $btn_icon .
|
1437 |
+
$btn_icon_wrap_end .
|
1438 |
+
esc_html(
|
1439 |
+
$settings['eael_cta_btn_text'] ) . '</a>';
|
1440 |
+
|
1441 |
+
if ( $settings['eael_cta_secondary_btn_is_show'] === 'yes' ) {
|
1442 |
// button attributes
|
1443 |
if ( ! empty( $settings['eael_cta_secondary_btn_link']['url'] ) ) {
|
1444 |
$this->add_link_attributes( 'secondary_button', $settings['eael_cta_secondary_btn_link'] );
|
1450 |
}
|
1451 |
?>
|
1452 |
<?php if ('cta-basic' == $settings['eael_cta_type']): ?>
|
1453 |
+
<div class="eael-call-to-action cta-basic <?php echo esc_attr($cta_class). ' ' . $settings['eael_cta_preset']; ?>">
|
1454 |
<?php
|
1455 |
print $headingMarkup;
|
1456 |
print $contentMarkup;
|
1459 |
</div>
|
1460 |
<?php endif;?>
|
1461 |
<?php if ('cta-flex' == $settings['eael_cta_type']): ?>
|
1462 |
+
<div class="eael-call-to-action cta-flex <?php echo esc_attr($cta_class). ' ' . $settings['eael_cta_preset']; ?>">
|
1463 |
<div class="content">
|
1464 |
<?php
|
1465 |
print $headingMarkup;
|
1472 |
</div>
|
1473 |
<?php endif;?>
|
1474 |
<?php if ('cta-icon-flex' == $settings['eael_cta_type']): ?>
|
1475 |
+
<div class="eael-call-to-action cta-icon-flex <?php echo esc_attr($cta_class). ' ' . $settings['eael_cta_preset']; ?>">
|
1476 |
<div class="icon">
|
1477 |
<?php if ($icon_is_new || $icon_migrated) {?>
|
1478 |
<?php if (isset($settings['eael_cta_flex_grid_icon_new']['value']['url'])): ?>
|
includes/Elements/Filterable_Gallery.php
CHANGED
@@ -2749,46 +2749,46 @@ class Filterable_Gallery extends Widget_Base
|
|
2749 |
|
2750 |
$this->end_controls_section();
|
2751 |
}
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
|
2793 |
protected function render_filters()
|
2794 |
{
|
2749 |
|
2750 |
$this->end_controls_section();
|
2751 |
}
|
2752 |
+
|
2753 |
+
public function sorter_class( $string ) {
|
2754 |
+
$sorter_class = strtolower( $string );
|
2755 |
+
$sorter_class = str_replace( ',', 'comma', $sorter_class );
|
2756 |
+
$sorter_class = str_replace( ' ', '-', $sorter_class );
|
2757 |
+
$sorter_class = str_replace( '&', 'and', $sorter_class );
|
2758 |
+
$sorter_class = str_replace( '+', 'plus', $sorter_class );
|
2759 |
+
$sorter_class = str_replace( 'amp;', '', $sorter_class );
|
2760 |
+
$sorter_class = str_replace( '/', 'slash', $sorter_class );
|
2761 |
+
$sorter_class = str_replace( "'", 'apostrophe', $sorter_class );
|
2762 |
+
$sorter_class = str_replace( '"', 'apostrophe', $sorter_class );
|
2763 |
+
$sorter_class = str_replace( '.', '-', $sorter_class );
|
2764 |
+
$sorter_class = str_replace( '~', 'tilde', $sorter_class );
|
2765 |
+
$sorter_class = str_replace( '!', 'exclamation', $sorter_class );
|
2766 |
+
$sorter_class = str_replace( '@', 'at', $sorter_class );
|
2767 |
+
$sorter_class = str_replace( '#', 'hash', $sorter_class );
|
2768 |
+
$sorter_class = str_replace( '(', 'parenthesis', $sorter_class );
|
2769 |
+
$sorter_class = str_replace( ')', 'parenthesis', $sorter_class );
|
2770 |
+
$sorter_class = str_replace( '=', 'equal', $sorter_class );
|
2771 |
+
$sorter_class = str_replace( ';', 'semicolon', $sorter_class );
|
2772 |
+
$sorter_class = str_replace( ':', 'colon', $sorter_class );
|
2773 |
+
$sorter_class = str_replace( '<', 'lessthan', $sorter_class );
|
2774 |
+
$sorter_class = str_replace( '>', 'greaterthan', $sorter_class );
|
2775 |
+
$sorter_class = str_replace( '|', 'pipe', $sorter_class );
|
2776 |
+
$sorter_class = str_replace( '\\', 'backslash', $sorter_class );
|
2777 |
+
$sorter_class = str_replace( '^', 'caret', $sorter_class );
|
2778 |
+
$sorter_class = str_replace( '*', 'asterisk', $sorter_class );
|
2779 |
+
$sorter_class = str_replace( '$', 'dollar', $sorter_class );
|
2780 |
+
$sorter_class = str_replace( '%', 'percent', $sorter_class );
|
2781 |
+
$sorter_class = str_replace( '`', 'backtick', $sorter_class );
|
2782 |
+
$sorter_class = str_replace( '[', 'bracket', $sorter_class );
|
2783 |
+
$sorter_class = str_replace( ']', 'bracket', $sorter_class );
|
2784 |
+
$sorter_class = str_replace( '{', 'curlybracket', $sorter_class );
|
2785 |
+
$sorter_class = str_replace( '}', 'curlybracket', $sorter_class );
|
2786 |
+
$sorter_class = str_replace( '?', 'questionmark', $sorter_class );
|
2787 |
+
$sorter_class = str_replace( ',-', ' eael-cf-', $sorter_class );
|
2788 |
+
$sorter_class = utf8_encode( $sorter_class );
|
2789 |
+
|
2790 |
+
return $sorter_class;
|
2791 |
+
}
|
2792 |
|
2793 |
protected function render_filters()
|
2794 |
{
|
includes/Elements/GravityForms.php
CHANGED
@@ -495,7 +495,8 @@ class GravityForms extends Widget_Base {
|
|
495 |
],
|
496 |
'default' => '',
|
497 |
'selectors' => [
|
498 |
-
'{{WRAPPER}} .eael-gravity-form .gform_wrapper .gform_heading
|
|
|
499 |
],
|
500 |
]
|
501 |
);
|
495 |
],
|
496 |
'default' => '',
|
497 |
'selectors' => [
|
498 |
+
'{{WRAPPER}} .eael-gravity-form .gform_wrapper .gform_heading, {{WRAPPER}} .eael-gravity-form .eael-gravity-form-heading'
|
499 |
+
=> 'text-align: {{VALUE}};',
|
500 |
],
|
501 |
]
|
502 |
);
|
includes/Elements/Post_Timeline.php
CHANGED
@@ -9,6 +9,7 @@ if (!defined('ABSPATH')) {
|
|
9 |
|
10 |
use \Elementor\Controls_Manager;
|
11 |
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
|
|
|
12 |
use \Elementor\Group_Control_Typography;
|
13 |
use \Elementor\Widget_Base;
|
14 |
use \Essential_Addons_Elementor\Classes\Helper as HelperClass;
|
@@ -34,7 +35,7 @@ class Post_Timeline extends Widget_Base
|
|
34 |
|
35 |
public function get_categories()
|
36 |
{
|
37 |
-
return ['essential-addons-elementor'];
|
38 |
}
|
39 |
|
40 |
public function get_keywords()
|
@@ -123,6 +124,9 @@ class Post_Timeline extends Widget_Base
|
|
123 |
'selectors' => [
|
124 |
'{{WRAPPER}} .eael-timeline-post-image' => 'opacity: .6',
|
125 |
],
|
|
|
|
|
|
|
126 |
]
|
127 |
);
|
128 |
|
@@ -138,182 +142,138 @@ class Post_Timeline extends Widget_Base
|
|
138 |
],
|
139 |
'condition' => [
|
140 |
'eael_timeline_display_overlay' => 'yes',
|
|
|
141 |
],
|
142 |
]
|
143 |
);
|
144 |
|
145 |
-
$this->add_control(
|
146 |
-
'eael_section_post_timeline_line_size',
|
147 |
-
[
|
148 |
-
'label' => __('Line Width', 'essential-addons-for-elementor-lite'),
|
149 |
-
'type' => Controls_Manager::SLIDER,
|
150 |
-
'size_units' => ['px', '%'],
|
151 |
-
'range' => [
|
152 |
-
'px' => [
|
153 |
-
'min' => 0,
|
154 |
-
'max' => 20,
|
155 |
-
'step' => 1,
|
156 |
-
],
|
157 |
-
],
|
158 |
-
'selectors' => [
|
159 |
-
'{{WRAPPER}} .eael-timeline-post:after' => 'width: {{SIZE}}{{UNIT}};',
|
160 |
-
],
|
161 |
-
]
|
162 |
-
);
|
163 |
-
$this->add_control(
|
164 |
-
'eael_section_post_timeline_line_position_from_right',
|
165 |
-
[
|
166 |
-
'label' => __('Line Position From Right', 'essential-addons-for-elementor-lite'),
|
167 |
-
'type' => Controls_Manager::SLIDER,
|
168 |
-
'size_units' => ['px'],
|
169 |
-
'range' => [
|
170 |
-
'px' => [
|
171 |
-
'min' => 0,
|
172 |
-
'max' => 20,
|
173 |
-
'step' => 1,
|
174 |
-
],
|
175 |
-
],
|
176 |
-
'selectors' => [
|
177 |
-
'{{WRAPPER}} .eael-timeline-post:after' => 'right: -{{SIZE}}{{UNIT}};',
|
178 |
-
],
|
179 |
-
]
|
180 |
-
);
|
181 |
-
|
182 |
-
$this->add_control(
|
183 |
-
'eael_section_post_timeline_bullet_size',
|
184 |
-
[
|
185 |
-
'label' => __('Bullet Size', 'essential-addons-for-elementor-lite'),
|
186 |
-
'type' => Controls_Manager::SLIDER,
|
187 |
-
'size_units' => ['px', '%'],
|
188 |
-
'range' => [
|
189 |
-
'px' => [
|
190 |
-
'min' => 0,
|
191 |
-
'max' => 100,
|
192 |
-
'step' => 1,
|
193 |
-
],
|
194 |
-
],
|
195 |
-
'selectors' => [
|
196 |
-
'{{WRAPPER}} .eael-timeline-bullet' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
|
197 |
-
],
|
198 |
-
]
|
199 |
-
);
|
200 |
-
$this->add_control(
|
201 |
-
'eael_section_post_timeline_bullet_position_from_left',
|
202 |
-
[
|
203 |
-
'label' => __('Left-sided Bullet Positon', 'essential-addons-for-elementor-lite'),
|
204 |
-
'type' => Controls_Manager::SLIDER,
|
205 |
-
'size_units' => ['px'],
|
206 |
-
'range' => [
|
207 |
-
'px' => [
|
208 |
-
'min' => 0,
|
209 |
-
'max' => 50,
|
210 |
-
'step' => 1,
|
211 |
-
],
|
212 |
-
],
|
213 |
-
'selectors' => [
|
214 |
-
'{{WRAPPER}} .eael-timeline-bullet' => 'right: -{{SIZE}}{{UNIT}};',
|
215 |
-
],
|
216 |
-
]
|
217 |
-
);
|
218 |
-
$this->add_control(
|
219 |
-
'eael_section_post_timeline_bullet_position_from_right',
|
220 |
-
[
|
221 |
-
'label' => __('Right-sided Bullet Position', 'essential-addons-for-elementor-lite'),
|
222 |
-
'type' => Controls_Manager::SLIDER,
|
223 |
-
'size_units' => ['px'],
|
224 |
-
'range' => [
|
225 |
-
'px' => [
|
226 |
-
'min' => 0,
|
227 |
-
'max' => 50,
|
228 |
-
'step' => 1,
|
229 |
-
],
|
230 |
-
],
|
231 |
-
'selectors' => [
|
232 |
-
'{{WRAPPER}} .eael-timeline-post:nth-child(2n) .eael-timeline-bullet' => 'left: -{{SIZE}}{{UNIT}};',
|
233 |
-
],
|
234 |
-
]
|
235 |
-
);
|
236 |
|
237 |
$this->add_control(
|
238 |
-
'
|
239 |
[
|
240 |
-
'label'
|
241 |
-
'type'
|
242 |
-
'
|
243 |
-
|
244 |
-
'{{WRAPPER}} .eael-timeline-bullet' => 'background-color: {{VALUE}};',
|
245 |
-
],
|
246 |
-
|
247 |
-
]
|
248 |
-
);
|
249 |
-
|
250 |
-
$this->add_control(
|
251 |
-
'eael_timeline_bullet_border_color',
|
252 |
-
[
|
253 |
-
'label' => __('Timeline Bullet Border Color', 'essential-addons-for-elementor-lite'),
|
254 |
-
'type' => Controls_Manager::COLOR,
|
255 |
-
'default' => '#fff',
|
256 |
-
'selectors' => [
|
257 |
-
'{{WRAPPER}} .eael-timeline-bullet' => 'border-color: {{VALUE}};',
|
258 |
-
],
|
259 |
-
|
260 |
-
]
|
261 |
-
);
|
262 |
-
|
263 |
-
$this->add_control(
|
264 |
-
'eael_timeline_vertical_line_color',
|
265 |
-
[
|
266 |
-
'label' => __('Timeline Vertical Line Color', 'essential-addons-for-elementor-lite'),
|
267 |
-
'type' => Controls_Manager::COLOR,
|
268 |
-
'default' => 'rgba(83, 85, 86, .2)',
|
269 |
-
'selectors' => [
|
270 |
-
'{{WRAPPER}} .eael-timeline-post:after' => 'background-color: {{VALUE}};',
|
271 |
-
],
|
272 |
-
|
273 |
-
]
|
274 |
-
);
|
275 |
-
|
276 |
-
$this->add_control(
|
277 |
-
'eael_timeline_border_color',
|
278 |
-
[
|
279 |
-
'label' => __('Border & Arrow Color', 'essential-addons-for-elementor-lite'),
|
280 |
-
'type' => Controls_Manager::COLOR,
|
281 |
-
'default' => '#e5eaed',
|
282 |
-
'selectors' => [
|
283 |
-
'{{WRAPPER}} .eael-timeline-post-inner' => 'border-color: {{VALUE}};',
|
284 |
-
'{{WRAPPER}} .eael-timeline-post-inner::after' => 'border-left-color: {{VALUE}};',
|
285 |
-
'{{WRAPPER}} .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after' => 'border-right-color: {{VALUE}};',
|
286 |
],
|
287 |
-
|
288 |
-
|
289 |
-
);
|
290 |
-
|
291 |
-
$this->add_control(
|
292 |
-
'eael_timeline_date_background_color',
|
293 |
-
[
|
294 |
-
'label' => __('Date Background Color', 'essential-addons-for-elementor-lite'),
|
295 |
-
'type' => Controls_Manager::COLOR,
|
296 |
-
'default' => 'rgba(0, 0, 0, 0.7)',
|
297 |
-
'selectors' => [
|
298 |
-
'{{WRAPPER}} .eael-timeline-post time' => 'background-color: {{VALUE}};',
|
299 |
-
'{{WRAPPER}} .eael-timeline-post time::before' => 'border-bottom-color: {{VALUE}};',
|
300 |
],
|
301 |
-
|
302 |
]
|
303 |
);
|
304 |
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
|
318 |
$this->end_controls_section();
|
319 |
|
@@ -341,7 +301,7 @@ class Post_Timeline extends Widget_Base
|
|
341 |
'type' => Controls_Manager::COLOR,
|
342 |
'default' => '#fff',
|
343 |
'selectors' => [
|
344 |
-
'{{WRAPPER}} .eael-timeline-post-title
|
345 |
],
|
346 |
|
347 |
]
|
@@ -367,7 +327,7 @@ class Post_Timeline extends Widget_Base
|
|
367 |
],
|
368 |
],
|
369 |
'selectors' => [
|
370 |
-
'{{WRAPPER}} .eael-timeline-post-title
|
371 |
],
|
372 |
]
|
373 |
);
|
@@ -380,7 +340,7 @@ class Post_Timeline extends Widget_Base
|
|
380 |
'global' => [
|
381 |
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
|
382 |
],
|
383 |
-
'selector' => '{{WRAPPER}} .eael-timeline-post-title
|
384 |
]
|
385 |
);
|
386 |
|
@@ -446,6 +406,329 @@ class Post_Timeline extends Widget_Base
|
|
446 |
]
|
447 |
);
|
448 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
$this->end_controls_section();
|
450 |
|
451 |
do_action('eael/controls/load_more_button_style', $this);
|
@@ -465,7 +748,7 @@ class Post_Timeline extends Widget_Base
|
|
465 |
'eael_post_timeline_wrapper',
|
466 |
[
|
467 |
'id' => "eael-post-timeline-{$this->get_id()}",
|
468 |
-
'class' => 'eael-post-timeline',
|
469 |
]
|
470 |
);
|
471 |
|
9 |
|
10 |
use \Elementor\Controls_Manager;
|
11 |
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
|
12 |
+
use Elementor\Group_Control_Box_Shadow;
|
13 |
use \Elementor\Group_Control_Typography;
|
14 |
use \Elementor\Widget_Base;
|
15 |
use \Essential_Addons_Elementor\Classes\Helper as HelperClass;
|
35 |
|
36 |
public function get_categories()
|
37 |
{
|
38 |
+
return ['essential-addons-for-elementor-lite'];
|
39 |
}
|
40 |
|
41 |
public function get_keywords()
|
124 |
'selectors' => [
|
125 |
'{{WRAPPER}} .eael-timeline-post-image' => 'opacity: .6',
|
126 |
],
|
127 |
+
'condition'=> [
|
128 |
+
'eael_dynamic_template_Layout!' => 'card',
|
129 |
+
]
|
130 |
]
|
131 |
);
|
132 |
|
142 |
],
|
143 |
'condition' => [
|
144 |
'eael_timeline_display_overlay' => 'yes',
|
145 |
+
'eael_dynamic_template_Layout!' => 'card',
|
146 |
],
|
147 |
]
|
148 |
);
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
|
151 |
$this->add_control(
|
152 |
+
'eael_timeline_bg_color',
|
153 |
[
|
154 |
+
'label' => __('Background Color', 'essential-addons-for-elementor-lite'),
|
155 |
+
'type' => Controls_Manager::COLOR,
|
156 |
+
'selectors' => [
|
157 |
+
'{{WRAPPER}} .eael-timeline-post-inner' => 'background: {{VALUE}}',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
],
|
159 |
+
'condition' => [
|
160 |
+
'eael_dynamic_template_Layout' => 'card',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
],
|
|
|
162 |
]
|
163 |
);
|
164 |
|
165 |
+
$this->add_responsive_control(
|
166 |
+
'eael_post_grid_spacing',
|
167 |
+
[
|
168 |
+
'label' => esc_html__('Padding', 'essential-addons-for-elementor-lite'),
|
169 |
+
'type' => Controls_Manager::DIMENSIONS,
|
170 |
+
'size_units' => ['px', '%', 'em'],
|
171 |
+
'selectors' => [
|
172 |
+
'{{WRAPPER}} .eael-timeline-post-inner' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
173 |
+
],
|
174 |
+
'condition' => [
|
175 |
+
'eael_dynamic_template_Layout' => 'card',
|
176 |
+
],
|
177 |
+
]
|
178 |
+
);
|
179 |
+
|
180 |
+
$this->add_control(
|
181 |
+
'eael_post_timeline_border_radius',
|
182 |
+
[
|
183 |
+
'label' => esc_html__('Border Radius', 'essential-addons-for-elementor-lite'),
|
184 |
+
'type' => Controls_Manager::DIMENSIONS,
|
185 |
+
'selectors' => [
|
186 |
+
'{{WRAPPER}} .eael-timeline-post-inner' => 'border-radius: {{TOP}}px {{RIGHT}}px {{BOTTOM}}px {{LEFT}}px;',
|
187 |
+
],
|
188 |
+
'condition' => [
|
189 |
+
'eael_dynamic_template_Layout' => 'card',
|
190 |
+
],
|
191 |
+
]
|
192 |
+
);
|
193 |
+
|
194 |
+
$this->add_group_control(
|
195 |
+
Group_Control_Box_Shadow::get_type(),
|
196 |
+
[
|
197 |
+
'name' => 'eael_post_timeline_box_shadow',
|
198 |
+
'selector' => '{{WRAPPER}} .eael-timeline-post-inner',
|
199 |
+
'condition' => [
|
200 |
+
'eael_dynamic_template_Layout' => 'card',
|
201 |
+
],
|
202 |
+
]
|
203 |
+
);
|
204 |
+
|
205 |
+
$this->add_control(
|
206 |
+
'eael_post_timeline_content_heading',
|
207 |
+
[
|
208 |
+
'label' => esc_html__('Content', 'essential-addons-for-elementor-lite'),
|
209 |
+
'type' => Controls_Manager::HEADING,
|
210 |
+
'condition' => [
|
211 |
+
'eael_dynamic_template_Layout' => 'card',
|
212 |
+
],
|
213 |
+
'separator' => 'before',
|
214 |
+
]
|
215 |
+
);
|
216 |
+
|
217 |
+
$this->add_responsive_control(
|
218 |
+
'eael_post_timeline_content_spacing',
|
219 |
+
[
|
220 |
+
'label' => esc_html__('Spacing', 'essential-addons-for-elementor-lite'),
|
221 |
+
'type' => Controls_Manager::DIMENSIONS,
|
222 |
+
'size_units' => ['px', '%', 'em'],
|
223 |
+
'selectors' => [
|
224 |
+
'{{WRAPPER}} .eael-timeline-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
225 |
+
],
|
226 |
+
'condition' => [
|
227 |
+
'eael_dynamic_template_Layout' => 'card',
|
228 |
+
],
|
229 |
+
]
|
230 |
+
);
|
231 |
+
|
232 |
+
$this->add_control(
|
233 |
+
'eael_post_timeline_image_heading',
|
234 |
+
[
|
235 |
+
'label' => esc_html__('Image', 'essential-addons-for-elementor-lite'),
|
236 |
+
'type' => Controls_Manager::HEADING,
|
237 |
+
'separator' => 'before',
|
238 |
+
'condition' => [
|
239 |
+
'eael_dynamic_template_Layout!' => 'default',
|
240 |
+
],
|
241 |
+
]
|
242 |
+
);
|
243 |
+
|
244 |
+
$this->add_responsive_control(
|
245 |
+
'eael_timeline_image_height',
|
246 |
+
[
|
247 |
+
'label' => esc_html__('Height', 'essential-addons-for-elementor-lite'),
|
248 |
+
'type' => Controls_Manager::SLIDER,
|
249 |
+
'range' => [
|
250 |
+
'px' => [
|
251 |
+
'max' => 500,
|
252 |
+
],
|
253 |
+
],
|
254 |
+
'selectors' => [
|
255 |
+
'{{WRAPPER}} .eael-timeline-post-image' => 'height: {{SIZE}}PX;',
|
256 |
+
],
|
257 |
+
'condition' => [
|
258 |
+
'eael_dynamic_template_Layout!' => 'default',
|
259 |
+
],
|
260 |
+
]
|
261 |
+
);
|
262 |
+
|
263 |
+
$this->add_control(
|
264 |
+
'eael_timeline_img_border_radius',
|
265 |
+
[
|
266 |
+
'label' => esc_html__('Border Radius', 'essential-addons-for-elementor-lite'),
|
267 |
+
'type' => Controls_Manager::DIMENSIONS,
|
268 |
+
'size_units' => ['px', '%'],
|
269 |
+
'selectors' => [
|
270 |
+
'{{WRAPPER}} .eael-timeline-post-image' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
271 |
+
],
|
272 |
+
'condition' => [
|
273 |
+
'eael_dynamic_template_Layout!' => 'default',
|
274 |
+
],
|
275 |
+
]
|
276 |
+
);
|
277 |
|
278 |
$this->end_controls_section();
|
279 |
|
301 |
'type' => Controls_Manager::COLOR,
|
302 |
'default' => '#fff',
|
303 |
'selectors' => [
|
304 |
+
'{{WRAPPER}} .eael-timeline-post-title *' => 'color: {{VALUE}};',
|
305 |
],
|
306 |
|
307 |
]
|
327 |
],
|
328 |
],
|
329 |
'selectors' => [
|
330 |
+
'{{WRAPPER}} .eael-timeline-post-title *' => 'text-align: {{VALUE}};',
|
331 |
],
|
332 |
]
|
333 |
);
|
340 |
'global' => [
|
341 |
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
|
342 |
],
|
343 |
+
'selector' => '{{WRAPPER}} .eael-timeline-post-title *',
|
344 |
]
|
345 |
);
|
346 |
|
406 |
]
|
407 |
);
|
408 |
|
409 |
+
$this->end_controls_section();
|
410 |
+
|
411 |
+
// Start Arrow Styling
|
412 |
+
|
413 |
+
$this->start_controls_section(
|
414 |
+
'eael_section_arrow',
|
415 |
+
[
|
416 |
+
'label' => __('Arrow', 'essential-addons-for-elementor-lite'),
|
417 |
+
'tab' => Controls_Manager::TAB_STYLE,
|
418 |
+
]
|
419 |
+
);
|
420 |
+
|
421 |
+
$this->add_control(
|
422 |
+
'eael_timeline_border_color',
|
423 |
+
[
|
424 |
+
'label' => __('Border & Arrow Color', 'essential-addons-for-elementor-lite'),
|
425 |
+
'type' => Controls_Manager::COLOR,
|
426 |
+
'default' => '#e5eaed',
|
427 |
+
'selectors' => [
|
428 |
+
'{{WRAPPER}} .eael-timeline-post-inner' => 'border-color: {{VALUE}};',
|
429 |
+
'{{WRAPPER}} .eael-timeline-post-inner::after' => 'border-left-color: {{VALUE}};',
|
430 |
+
'{{WRAPPER}} .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after' => 'border-right-color: {{VALUE}};',
|
431 |
+
],
|
432 |
+
'condition' => [
|
433 |
+
'eael_dynamic_template_Layout' => 'default',
|
434 |
+
],
|
435 |
+
]
|
436 |
+
);
|
437 |
+
|
438 |
+
$this->add_control(
|
439 |
+
'eael_timeline_arrow_color',
|
440 |
+
[
|
441 |
+
'label' => __('Arrow Color', 'essential-addons-for-elementor-lite'),
|
442 |
+
'type' => Controls_Manager::COLOR,
|
443 |
+
'selectors' => [
|
444 |
+
'{{WRAPPER}} .eael-timeline-post-inner' => 'border-color: {{VALUE}};',
|
445 |
+
'{{WRAPPER}} .eael-timeline-post-inner::after' => 'border-left-color: {{VALUE}}; border-right-color: {{VALUE}}',
|
446 |
+
// '{{WRAPPER}} .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner::after' => 'border-right-color: {{VALUE}};',
|
447 |
+
],
|
448 |
+
'condition' => [
|
449 |
+
'eael_dynamic_template_Layout!' => 'default',
|
450 |
+
],
|
451 |
+
]
|
452 |
+
);
|
453 |
+
|
454 |
+
$this->add_responsive_control(
|
455 |
+
'eael_timeline_arrow_size',
|
456 |
+
[
|
457 |
+
'label' => esc_html__('Size', 'essential-addons-for-elementor-lite'),
|
458 |
+
'type' => Controls_Manager::SLIDER,
|
459 |
+
'range' => [
|
460 |
+
'px' => [
|
461 |
+
'max' => 20,
|
462 |
+
],
|
463 |
+
],
|
464 |
+
'selectors' => [
|
465 |
+
'{{WRAPPER}} .eael-post-timeline.timeline-layout-card .eael-timeline-post-inner:after' => 'border-width: {{SIZE}}px; right: -{{SIZE}}px; left: -{{SIZE}}px',
|
466 |
+
'{{WRAPPER}} .eael-post-timeline.timeline-layout-card .eael-timeline-post:nth-child(2n) .eael-timeline-post-inner:after' => 'left: -{{SIZE}}px;',
|
467 |
+
],
|
468 |
+
|
469 |
+
'condition' => [
|
470 |
+
'eael_dynamic_template_Layout!' => 'default',
|
471 |
+
],
|
472 |
+
]
|
473 |
+
);
|
474 |
+
|
475 |
+
$this->add_control(
|
476 |
+
'eael_timeline_arrow_alignment',
|
477 |
+
[
|
478 |
+
'label' => __('Alignment', 'essential-addons-for-elementor-lite'),
|
479 |
+
'type' => Controls_Manager::CHOOSE,
|
480 |
+
'options' => [
|
481 |
+
'top' => [
|
482 |
+
'title' => __( 'Top', 'essential-addons-for-elementor-lite' ),
|
483 |
+
'icon' => 'eicon-v-align-top',
|
484 |
+
],
|
485 |
+
'middle' => [
|
486 |
+
'title' => __( 'Middle', 'essential-addons-for-elementor-lite' ),
|
487 |
+
'icon' => 'eicon-v-align-middle',
|
488 |
+
],
|
489 |
+
'bottom' => [
|
490 |
+
'title' => __( 'Bottom', 'essential-addons-for-elementor-lite' ),
|
491 |
+
'icon' => 'eicon-v-align-bottom',
|
492 |
+
],
|
493 |
+
],
|
494 |
+
'default' => 'top',
|
495 |
+
'condition' => [
|
496 |
+
'eael_dynamic_template_Layout!' => 'default',
|
497 |
+
],
|
498 |
+
]
|
499 |
+
);
|
500 |
+
|
501 |
+
$this->end_controls_section();
|
502 |
+
|
503 |
+
// Start Time Styling
|
504 |
+
|
505 |
+
$this->start_controls_section(
|
506 |
+
'eael_section_time',
|
507 |
+
[
|
508 |
+
'label' => __('Time', 'essential-addons-for-elementor-lite'),
|
509 |
+
'tab' => Controls_Manager::TAB_STYLE,
|
510 |
+
]
|
511 |
+
);
|
512 |
+
|
513 |
+
$this->add_control(
|
514 |
+
'eael_timeline_date_background_color',
|
515 |
+
[
|
516 |
+
'label' => __('Date Background Color', 'essential-addons-for-elementor-lite'),
|
517 |
+
'type' => Controls_Manager::COLOR,
|
518 |
+
'default' => 'rgba(0, 0, 0, 0.7)',
|
519 |
+
'selectors' => [
|
520 |
+
'{{WRAPPER}} .eael-timeline-post time' => 'background-color: {{VALUE}};',
|
521 |
+
'{{WRAPPER}} .eael-timeline-post time::before' => 'border-bottom-color: {{VALUE}};',
|
522 |
+
],
|
523 |
+
|
524 |
+
]
|
525 |
+
);
|
526 |
+
|
527 |
+
$this->add_control(
|
528 |
+
'eael_timeline_date_color',
|
529 |
+
[
|
530 |
+
'label' => __('Date Text Color', 'essential-addons-for-elementor-lite'),
|
531 |
+
'type' => Controls_Manager::COLOR,
|
532 |
+
'default' => '#fff',
|
533 |
+
'selectors' => [
|
534 |
+
'{{WRAPPER}} .eael-timeline-post time' => 'color: {{VALUE}};',
|
535 |
+
],
|
536 |
+
|
537 |
+
]
|
538 |
+
);
|
539 |
+
|
540 |
+
$this->add_group_control(
|
541 |
+
Group_Control_Typography::get_type(),
|
542 |
+
[
|
543 |
+
'name' => 'eael_timeline_time_typography',
|
544 |
+
'label' => __('Typography', 'essential-addons-for-elementor-lite'),
|
545 |
+
'selector' => '{{WRAPPER}} time',
|
546 |
+
]
|
547 |
+
);
|
548 |
+
|
549 |
+
$this->add_control(
|
550 |
+
'eael_timeline_time_padding',
|
551 |
+
[
|
552 |
+
'label' => esc_html__('Padding', 'essential-addons-for-elementor-lite'),
|
553 |
+
'type' => Controls_Manager::DIMENSIONS,
|
554 |
+
'size_units' => ['px', '%'],
|
555 |
+
'selectors' => [
|
556 |
+
'{{WRAPPER}} time' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
557 |
+
],
|
558 |
+
]
|
559 |
+
);
|
560 |
+
|
561 |
+
$this->add_control(
|
562 |
+
'eael_timeline_time_border_radius',
|
563 |
+
[
|
564 |
+
'label' => esc_html__('Border Radius', 'essential-addons-for-elementor-lite'),
|
565 |
+
'type' => Controls_Manager::DIMENSIONS,
|
566 |
+
'size_units' => ['px', '%'],
|
567 |
+
'selectors' => [
|
568 |
+
'{{WRAPPER}} time' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
569 |
+
],
|
570 |
+
]
|
571 |
+
);
|
572 |
+
|
573 |
+
$this->end_controls_section();
|
574 |
+
|
575 |
+
$this->start_controls_section(
|
576 |
+
'eael_section_line',
|
577 |
+
[
|
578 |
+
'label' => __('Line & Bullet', 'essential-addons-for-elementor-lite'),
|
579 |
+
'tab' => Controls_Manager::TAB_STYLE,
|
580 |
+
]
|
581 |
+
);
|
582 |
+
|
583 |
+
$this->add_control(
|
584 |
+
'eael_section_post_timeline_line_heading',
|
585 |
+
[
|
586 |
+
'label' => __('Line', 'essential-addons-for-elementor-lite'),
|
587 |
+
'type' => Controls_Manager::HEADING,
|
588 |
+
'separator' => 'before',
|
589 |
+
]
|
590 |
+
);
|
591 |
+
|
592 |
+
$this->add_control(
|
593 |
+
'eael_section_post_timeline_line_size',
|
594 |
+
[
|
595 |
+
'label' => __('Line Width', 'essential-addons-for-elementor-lite'),
|
596 |
+
'type' => Controls_Manager::SLIDER,
|
597 |
+
'size_units' => ['px', '%'],
|
598 |
+
'range' => [
|
599 |
+
'px' => [
|
600 |
+
'min' => 0,
|
601 |
+
'max' => 20,
|
602 |
+
'step' => 1,
|
603 |
+
],
|
604 |
+
],
|
605 |
+
'selectors' => [
|
606 |
+
'{{WRAPPER}} .eael-timeline-post:after' => 'width: {{SIZE}}{{UNIT}};',
|
607 |
+
],
|
608 |
+
]
|
609 |
+
);
|
610 |
+
$this->add_control(
|
611 |
+
'eael_section_post_timeline_line_position_from_right',
|
612 |
+
[
|
613 |
+
'label' => __('Line Position From Right', 'essential-addons-for-elementor-lite'),
|
614 |
+
'type' => Controls_Manager::SLIDER,
|
615 |
+
'size_units' => ['px'],
|
616 |
+
'range' => [
|
617 |
+
'px' => [
|
618 |
+
'min' => 0,
|
619 |
+
'max' => 20,
|
620 |
+
'step' => 1,
|
621 |
+
],
|
622 |
+
],
|
623 |
+
'selectors' => [
|
624 |
+
'{{WRAPPER}} .eael-timeline-post:after' => 'right: -{{SIZE}}{{UNIT}};',
|
625 |
+
],
|
626 |
+
'condition'=> [
|
627 |
+
'eael_dynamic_template_Layout!' => 'card',
|
628 |
+
]
|
629 |
+
]
|
630 |
+
);
|
631 |
+
|
632 |
+
$this->add_control(
|
633 |
+
'eael_section_post_timeline_bullet_size',
|
634 |
+
[
|
635 |
+
'label' => __('Bullet Size', 'essential-addons-for-elementor-lite'),
|
636 |
+
'type' => Controls_Manager::SLIDER,
|
637 |
+
'size_units' => ['px', '%'],
|
638 |
+
'range' => [
|
639 |
+
'px' => [
|
640 |
+
'min' => 0,
|
641 |
+
'max' => 100,
|
642 |
+
'step' => 1,
|
643 |
+
],
|
644 |
+
],
|
645 |
+
'selectors' => [
|
646 |
+
'{{WRAPPER}} .eael-timeline-bullet' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
|
647 |
+
],
|
648 |
+
]
|
649 |
+
);
|
650 |
+
$this->add_control(
|
651 |
+
'eael_section_post_timeline_bullet_position_from_left',
|
652 |
+
[
|
653 |
+
'label' => __('Left-sided Bullet Positon', 'essential-addons-for-elementor-lite'),
|
654 |
+
'type' => Controls_Manager::SLIDER,
|
655 |
+
'size_units' => ['px'],
|
656 |
+
'range' => [
|
657 |
+
'px' => [
|
658 |
+
'min' => 0,
|
659 |
+
'max' => 50,
|
660 |
+
'step' => 1,
|
661 |
+
],
|
662 |
+
],
|
663 |
+
'selectors' => [
|
664 |
+
'{{WRAPPER}} .eael-timeline-bullet' => 'right: -{{SIZE}}{{UNIT}};',
|
665 |
+
],
|
666 |
+
'condition'=> [
|
667 |
+
'eael_dynamic_template_Layout!' => 'card',
|
668 |
+
]
|
669 |
+
]
|
670 |
+
);
|
671 |
+
$this->add_control(
|
672 |
+
'eael_section_post_timeline_bullet_position_from_right',
|
673 |
+
[
|
674 |
+
'label' => __('Right-sided Bullet Position', 'essential-addons-for-elementor-lite'),
|
675 |
+
'type' => Controls_Manager::SLIDER,
|
676 |
+
'size_units' => ['px'],
|
677 |
+
'range' => [
|
678 |
+
'px' => [
|
679 |
+
'min' => 0,
|
680 |
+
'max' => 50,
|
681 |
+
'step' => 1,
|
682 |
+
],
|
683 |
+
],
|
684 |
+
'selectors' => [
|
685 |
+
'{{WRAPPER}} .eael-timeline-post:nth-child(2n) .eael-timeline-bullet' => 'left: -{{SIZE}}{{UNIT}};',
|
686 |
+
],
|
687 |
+
'condition'=> [
|
688 |
+
'eael_dynamic_template_Layout!' => 'card',
|
689 |
+
]
|
690 |
+
]
|
691 |
+
);
|
692 |
+
|
693 |
+
$this->add_control(
|
694 |
+
'eael_timeline_bullet_color',
|
695 |
+
[
|
696 |
+
'label' => __('Timeline Bullet Color', 'essential-addons-for-elementor-lite'),
|
697 |
+
'type' => Controls_Manager::COLOR,
|
698 |
+
'default' => '#9fa9af',
|
699 |
+
'selectors' => [
|
700 |
+
'{{WRAPPER}} .eael-timeline-bullet' => 'background-color: {{VALUE}};',
|
701 |
+
],
|
702 |
+
|
703 |
+
]
|
704 |
+
);
|
705 |
+
|
706 |
+
$this->add_control(
|
707 |
+
'eael_timeline_bullet_border_color',
|
708 |
+
[
|
709 |
+
'label' => __('Timeline Bullet Border Color', 'essential-addons-for-elementor-lite'),
|
710 |
+
'type' => Controls_Manager::COLOR,
|
711 |
+
'default' => '#fff',
|
712 |
+
'selectors' => [
|
713 |
+
'{{WRAPPER}} .eael-timeline-bullet' => 'border-color: {{VALUE}};',
|
714 |
+
],
|
715 |
+
|
716 |
+
]
|
717 |
+
);
|
718 |
+
|
719 |
+
$this->add_control(
|
720 |
+
'eael_timeline_vertical_line_color',
|
721 |
+
[
|
722 |
+
'label' => __('Timeline Vertical Line Color', 'essential-addons-for-elementor-lite'),
|
723 |
+
'type' => Controls_Manager::COLOR,
|
724 |
+
'default' => 'rgba(83, 85, 86, .2)',
|
725 |
+
'selectors' => [
|
726 |
+
'{{WRAPPER}} .eael-timeline-post:after' => 'background-color: {{VALUE}};',
|
727 |
+
],
|
728 |
+
|
729 |
+
]
|
730 |
+
);
|
731 |
+
|
732 |
$this->end_controls_section();
|
733 |
|
734 |
do_action('eael/controls/load_more_button_style', $this);
|
748 |
'eael_post_timeline_wrapper',
|
749 |
[
|
750 |
'id' => "eael-post-timeline-{$this->get_id()}",
|
751 |
+
'class' => ["eael-post-timeline", "timeline-layout-{$settings['eael_dynamic_template_Layout']}", "eael-post-timeline-arrow-{$settings['eael_timeline_arrow_alignment']}"],
|
752 |
]
|
753 |
);
|
754 |
|
includes/Elements/Product_Grid.php
CHANGED
@@ -447,6 +447,9 @@ class Product_Grid extends Widget_Base
|
|
447 |
'span' => __( 'span', 'essential-addons-for-elementor-lite' ),
|
448 |
'p' => __( 'p', 'essential-addons-for-elementor-lite' ),
|
449 |
],
|
|
|
|
|
|
|
450 |
]
|
451 |
);
|
452 |
|
@@ -537,6 +540,29 @@ class Product_Grid extends Widget_Base
|
|
537 |
]
|
538 |
);
|
539 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
$this->end_controls_section();
|
541 |
}
|
542 |
|
447 |
'span' => __( 'span', 'essential-addons-for-elementor-lite' ),
|
448 |
'p' => __( 'p', 'essential-addons-for-elementor-lite' ),
|
449 |
],
|
450 |
+
'condition'=> [
|
451 |
+
'eael_product_grid_style_preset!' => 'eael-product-default'
|
452 |
+
]
|
453 |
]
|
454 |
);
|
455 |
|
540 |
]
|
541 |
);
|
542 |
|
543 |
+
$this->add_control(
|
544 |
+
'eael_product_grid_wishlist',
|
545 |
+
[
|
546 |
+
'label' => esc_html__('Show Wishlist?', 'essential-addons-for-elementor-lite'),
|
547 |
+
'type' => Controls_Manager::SWITCHER,
|
548 |
+
'return_value' => 'yes',
|
549 |
+
'default' => 'no',
|
550 |
+
]
|
551 |
+
);
|
552 |
+
|
553 |
+
if ( ! function_exists( 'YITH_WCWL' ) ) {
|
554 |
+
$this->add_control( 'eael_wishlist_warning_text',
|
555 |
+
[
|
556 |
+
'type' => Controls_Manager::RAW_HTML,
|
557 |
+
'raw' => __( '<strong>YITH WOOCOMMERCE WISHLIST</strong> is not installed/activated on your site. Please install and activate <a href="plugin-install.php?s=yith-woocommerce-wishlist&tab=search&type=term" target="_blank">YITH WOOCOMMERCE WISHLIST</a> first.', 'essential-addons-for-elementor-lite' ),
|
558 |
+
'content_classes' => 'eael-warning',
|
559 |
+
'condition' => [
|
560 |
+
'eael_product_grid_wishlist' => 'yes'
|
561 |
+
],
|
562 |
+
]
|
563 |
+
);
|
564 |
+
}
|
565 |
+
|
566 |
$this->end_controls_section();
|
567 |
}
|
568 |
|
includes/Elements/Progress_Bar.php
CHANGED
@@ -825,7 +825,7 @@ class Progress_Bar extends Widget_Base
|
|
825 |
<div class="eael-progressbar-circle-inner"></div>
|
826 |
<div class="eael-progressbar-circle-inner-content">
|
827 |
' . ($settings['progress_bar_title'] ? sprintf('<%1$s class="%2$s">', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag']), 'eael-progressbar-title') . $settings['progress_bar_title'] . sprintf('</%1$s>', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag'])) : '') . '
|
828 |
-
' . ($settings['progress_bar_show_count'] === 'yes' ? '<span class="eael-progressbar-count-wrap"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>' : '') . '
|
829 |
</div>
|
830 |
</div>
|
831 |
|
825 |
<div class="eael-progressbar-circle-inner"></div>
|
826 |
<div class="eael-progressbar-circle-inner-content">
|
827 |
' . ($settings['progress_bar_title'] ? sprintf('<%1$s class="%2$s">', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag']), 'eael-progressbar-title') . $settings['progress_bar_title'] . sprintf('</%1$s>', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag'])) : '') . '
|
828 |
+
' . ($settings['progress_bar_show_count'] === 'yes' ? '<span class="eael-progressbar-count-wrap"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>' : '<span class="eael-progressbar-count-wrap" style="display: none;"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>') . '
|
829 |
</div>
|
830 |
</div>
|
831 |
|
includes/Elements/Woo_Product_Gallery.php
CHANGED
@@ -1616,7 +1616,6 @@ class Woo_Product_Gallery extends Widget_Base {
|
|
1616 |
'condition' => [
|
1617 |
'eael_product_gallery_style_preset!' => [
|
1618 |
'eael-product-preset-4',
|
1619 |
-
'eael-product-preset-1',
|
1620 |
],
|
1621 |
],
|
1622 |
]
|
1616 |
'condition' => [
|
1617 |
'eael_product_gallery_style_preset!' => [
|
1618 |
'eael-product-preset-4',
|
|
|
1619 |
],
|
1620 |
],
|
1621 |
]
|
includes/Extensions/Reading_Progress.php
CHANGED
@@ -173,7 +173,7 @@ class Reading_Progress
|
|
173 |
'type' => Controls_Manager::COLOR,
|
174 |
'default' => '#1fd18e',
|
175 |
'selectors' => [
|
176 |
-
'.eael-reading-progress-wrap .eael-reading-progress .eael-reading-progress-fill' => 'background-color: {{VALUE}} !important',
|
177 |
],
|
178 |
'separator' => 'before',
|
179 |
'condition' => [
|
173 |
'type' => Controls_Manager::COLOR,
|
174 |
'default' => '#1fd18e',
|
175 |
'selectors' => [
|
176 |
+
'div.eael-reading-progress-wrap div.eael-reading-progress div.eael-reading-progress-fill' => 'background-color: {{VALUE}} !important',
|
177 |
],
|
178 |
'separator' => 'before',
|
179 |
'condition' => [
|
includes/Template/Eicon-Woocommerce/default.php
CHANGED
@@ -30,6 +30,10 @@ if ( has_post_thumbnail() ) {
|
|
30 |
|
31 |
$title_tag = isset( $settings['eael_product_grid_title_html_tag'] ) ? Helper::eael_validate_html_tag($settings['eael_product_grid_title_html_tag']) : 'h2';
|
32 |
$should_print_compare_btn = isset( $settings['show_compare'] ) && 'yes' === $settings['show_compare'];
|
|
|
|
|
|
|
|
|
33 |
// Improvement
|
34 |
$grid_style_preset = isset($settings['eael_product_grid_style_preset']) ? $settings['eael_product_grid_style_preset'] : '';
|
35 |
$list_style_preset = isset($settings['eael_product_list_style_preset']) ? $settings['eael_product_list_style_preset'] : '';
|
@@ -90,12 +94,19 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
90 |
Product_Grid::print_compare_button( $product->get_id() );
|
91 |
}
|
92 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
</div>
|
94 |
</li>
|
95 |
<?php
|
96 |
} else if ( $grid_style_preset == 'eael-product-overlay' ) {
|
97 |
?>
|
98 |
-
<li
|
99 |
<div class="overlay">
|
100 |
<?php
|
101 |
if( $should_print_image_clickable ) {
|
@@ -114,6 +125,13 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
114 |
Product_Grid::print_compare_button( $product->get_id(), 'icon' );
|
115 |
}
|
116 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
</div>
|
118 |
</div>
|
119 |
<?php
|
@@ -177,10 +195,15 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
177 |
echo '</li>';
|
178 |
}
|
179 |
?>
|
180 |
-
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
182 |
<li class="view-details"><?php echo '<a href="' . $product->get_permalink() . '"><i class="fas fa-link"></i></a>'; ?></li>
|
183 |
-
|
184 |
</ul>
|
185 |
<?php } elseif ($grid_style_preset == 'eael-product-preset-7') { ?>
|
186 |
<ul class="icons-wrap block-box-style">
|
@@ -193,6 +216,13 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
193 |
echo '</li>';
|
194 |
}
|
195 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
<?php if( $should_print_quick_view ){?>
|
197 |
<li class="eael-product-quick-view">
|
198 |
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
|
@@ -201,6 +231,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
201 |
</a>
|
202 |
</li>
|
203 |
<?php } ?>
|
|
|
204 |
<li class="view-details"><?php echo '<a href="' . $product->get_permalink
|
205 |
() . '"><i class="fas fa-link"></i></a>'; ?></li>
|
206 |
</ul>
|
@@ -215,6 +246,13 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
215 |
echo '</li>';
|
216 |
}
|
217 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
<?php if( $should_print_quick_view ){?>
|
219 |
<li class="eael-product-quick-view">
|
220 |
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
|
@@ -222,6 +260,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
222 |
<i class="fas fa-eye"></i>
|
223 |
</a>
|
224 |
</li>
|
|
|
225 |
<?php } ?>
|
226 |
<li class="view-details" title="Details"><?php echo '<a href="' . $product->get_permalink() . '"><i class="fas fa-link"></i></a>'; ?></li>
|
227 |
</ul>
|
@@ -287,6 +326,13 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
287 |
echo '</li>';
|
288 |
}
|
289 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
<?php if( $should_print_quick_view ){?>
|
291 |
<li class="eael-product-quick-view">
|
292 |
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
|
@@ -442,6 +488,13 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
442 |
<li class="add-to-cart"><?php
|
443 |
woocommerce_template_loop_add_to_cart(); ?></li>
|
444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
<?php
|
446 |
if( $should_print_quick_view ){?>
|
447 |
<li class="eael-product-quick-view">
|
30 |
|
31 |
$title_tag = isset( $settings['eael_product_grid_title_html_tag'] ) ? Helper::eael_validate_html_tag($settings['eael_product_grid_title_html_tag']) : 'h2';
|
32 |
$should_print_compare_btn = isset( $settings['show_compare'] ) && 'yes' === $settings['show_compare'];
|
33 |
+
|
34 |
+
if ( function_exists( 'YITH_WCWL' ) ) {
|
35 |
+
$should_print_wishlist_btn = isset( $settings['eael_product_grid_wishlist'] ) && 'yes' === $settings['eael_product_grid_wishlist'];
|
36 |
+
}
|
37 |
// Improvement
|
38 |
$grid_style_preset = isset($settings['eael_product_grid_style_preset']) ? $settings['eael_product_grid_style_preset'] : '';
|
39 |
$list_style_preset = isset($settings['eael_product_list_style_preset']) ? $settings['eael_product_list_style_preset'] : '';
|
94 |
Product_Grid::print_compare_button( $product->get_id() );
|
95 |
}
|
96 |
?>
|
97 |
+
<?php
|
98 |
+
if ( ! empty( $should_print_wishlist_btn ) ) {
|
99 |
+
echo '<div class="add-to-whishlist">';
|
100 |
+
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
|
101 |
+
echo '</div>';
|
102 |
+
}
|
103 |
+
?>
|
104 |
</div>
|
105 |
</li>
|
106 |
<?php
|
107 |
} else if ( $grid_style_preset == 'eael-product-overlay' ) {
|
108 |
?>
|
109 |
+
<li <?php post_class( 'product' ); ?>>
|
110 |
<div class="overlay">
|
111 |
<?php
|
112 |
if( $should_print_image_clickable ) {
|
125 |
Product_Grid::print_compare_button( $product->get_id(), 'icon' );
|
126 |
}
|
127 |
?>
|
128 |
+
<?php
|
129 |
+
if ( ! empty( $should_print_wishlist_btn ) ) {
|
130 |
+
echo '<div class="add-to-whishlist">';
|
131 |
+
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
|
132 |
+
echo '</div>';
|
133 |
+
}
|
134 |
+
?>
|
135 |
</div>
|
136 |
</div>
|
137 |
<?php
|
195 |
echo '</li>';
|
196 |
}
|
197 |
?>
|
198 |
+
<?php
|
199 |
+
if ( ! empty( $should_print_wishlist_btn ) ) {
|
200 |
+
echo '<li class="add-to-whishlist">';
|
201 |
+
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
|
202 |
+
echo '</li>';
|
203 |
+
}
|
204 |
+
?>
|
205 |
<li class="view-details"><?php echo '<a href="' . $product->get_permalink() . '"><i class="fas fa-link"></i></a>'; ?></li>
|
206 |
+
<li class="add-to-cart"><?php woocommerce_template_loop_add_to_cart(); ?></li>
|
207 |
</ul>
|
208 |
<?php } elseif ($grid_style_preset == 'eael-product-preset-7') { ?>
|
209 |
<ul class="icons-wrap block-box-style">
|
216 |
echo '</li>';
|
217 |
}
|
218 |
?>
|
219 |
+
<?php
|
220 |
+
if ( ! empty( $should_print_wishlist_btn ) ) {
|
221 |
+
echo '<li class="add-to-whishlist">';
|
222 |
+
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
|
223 |
+
echo '</li>';
|
224 |
+
}
|
225 |
+
?>
|
226 |
<?php if( $should_print_quick_view ){?>
|
227 |
<li class="eael-product-quick-view">
|
228 |
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
|
231 |
</a>
|
232 |
</li>
|
233 |
<?php } ?>
|
234 |
+
|
235 |
<li class="view-details"><?php echo '<a href="' . $product->get_permalink
|
236 |
() . '"><i class="fas fa-link"></i></a>'; ?></li>
|
237 |
</ul>
|
246 |
echo '</li>';
|
247 |
}
|
248 |
?>
|
249 |
+
<?php
|
250 |
+
if ( ! empty( $should_print_wishlist_btn ) ) {
|
251 |
+
echo '<li class="add-to-whishlist">';
|
252 |
+
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
|
253 |
+
echo '</li>';
|
254 |
+
}
|
255 |
+
?>
|
256 |
<?php if( $should_print_quick_view ){?>
|
257 |
<li class="eael-product-quick-view">
|
258 |
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
|
260 |
<i class="fas fa-eye"></i>
|
261 |
</a>
|
262 |
</li>
|
263 |
+
|
264 |
<?php } ?>
|
265 |
<li class="view-details" title="Details"><?php echo '<a href="' . $product->get_permalink() . '"><i class="fas fa-link"></i></a>'; ?></li>
|
266 |
</ul>
|
326 |
echo '</li>';
|
327 |
}
|
328 |
?>
|
329 |
+
<?php
|
330 |
+
if ( ! empty( $should_print_wishlist_btn ) ) {
|
331 |
+
echo '<li class="add-to-whishlist">';
|
332 |
+
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
|
333 |
+
echo '</li>';
|
334 |
+
}
|
335 |
+
?>
|
336 |
<?php if( $should_print_quick_view ){?>
|
337 |
<li class="eael-product-quick-view">
|
338 |
<a id="eael_quick_view_<?php echo uniqid(); ?>" data-quickview-setting="<?php echo htmlspecialchars(json_encode($quick_view_setting),ENT_QUOTES); ?>"
|
488 |
<li class="add-to-cart"><?php
|
489 |
woocommerce_template_loop_add_to_cart(); ?></li>
|
490 |
|
491 |
+
<?php
|
492 |
+
if ( ! empty( $should_print_wishlist_btn ) ) {
|
493 |
+
echo '<li class="add-to-whishlist">';
|
494 |
+
echo do_shortcode('[yith_wcwl_add_to_wishlist]');
|
495 |
+
echo '</li>';
|
496 |
+
}
|
497 |
+
?>
|
498 |
<?php
|
499 |
if( $should_print_quick_view ){?>
|
500 |
<li class="eael-product-quick-view">
|
includes/Template/Post-Timeline/card.php
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
use \Essential_Addons_Elementor\Classes\Helper;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Template Name: Card
|
7 |
+
*/
|
8 |
+
|
9 |
+
if (!defined('ABSPATH')) {
|
10 |
+
exit;
|
11 |
+
} // Exit if accessed directly
|
12 |
+
|
13 |
+
$image = '';
|
14 |
+
if ($settings['eael_show_image'] == 'yes' && has_post_thumbnail()) {
|
15 |
+
$image = '<div class="eael-timeline-post-image" style="background-image: url('. wp_get_attachment_image_url
|
16 |
+
(get_post_thumbnail_id(),
|
17 |
+
$settings['image_size']) .')"></div>';
|
18 |
+
}
|
19 |
+
|
20 |
+
$title_tag = isset($settings['title_tag']) ? Helper::eael_validate_html_tag($settings['title_tag']) : 'h2';
|
21 |
+
|
22 |
+
echo '<article class="eael-timeline-post">
|
23 |
+
<div class="eael-timeline-bullet"></div>
|
24 |
+
<div class="eael-timeline-post-inner">
|
25 |
+
<a class="eael-timeline-post-link" href="' . get_the_permalink() . '" title="' . esc_html(get_the_title()) . '">
|
26 |
+
<time datetime="' . get_the_date() . '">' . get_the_date() . '</time>
|
27 |
+
'. $image;
|
28 |
+
|
29 |
+
if( $settings['eael_show_title'] || $settings['eael_show_excerpt'] ) {
|
30 |
+
echo '<div class="eael-timeline-content">';
|
31 |
+
|
32 |
+
if ( $settings['eael_show_title'] ) {
|
33 |
+
echo '<div class="eael-timeline-post-title">
|
34 |
+
<'.$title_tag.'>' . get_the_title() . '</'.$title_tag.'>
|
35 |
+
</div>';
|
36 |
+
}
|
37 |
+
if ( $settings['eael_show_excerpt'] ) {
|
38 |
+
echo '<div class="eael-timeline-post-excerpt">';
|
39 |
+
if ( empty( $settings['eael_excerpt_length'] ) ) {
|
40 |
+
echo '<p>' . strip_shortcodes( get_the_excerpt() ? get_the_excerpt() : get_the_content() ) . '</p>';
|
41 |
+
} else {
|
42 |
+
echo '<p>' . wp_trim_words( strip_shortcodes( get_the_excerpt() ? get_the_excerpt() : get_the_content() ), $settings['eael_excerpt_length'], $settings['expanison_indicator'] ) . '</p>';
|
43 |
+
}
|
44 |
+
echo '</div>';
|
45 |
+
}
|
46 |
+
echo '</div>';
|
47 |
+
}
|
48 |
+
echo '</a>
|
49 |
+
</div>
|
50 |
+
<div class="eael-timeline-clear"></div>
|
51 |
+
</article>';
|
52 |
+
|
includes/Template/Post-Timeline/default.php
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
2 |
/**
|
3 |
* Template Name: Default
|
4 |
*/
|
@@ -14,6 +17,7 @@ $post_timeline_image_url = Group_Control_Image_Size::get_attachment_image_src( g
|
|
14 |
|
15 |
$image_size = sanitize_html_class( $settings['image_size'] );
|
16 |
$image_class = " attachment-$image_size size-$image_size";
|
|
|
17 |
|
18 |
echo '<article class="eael-timeline-post eael-timeline-column">
|
19 |
<div class="eael-timeline-bullet"></div>
|
@@ -33,7 +37,7 @@ echo '<article class="eael-timeline-post eael-timeline-column">
|
|
33 |
|
34 |
if ($settings['eael_show_title']) {
|
35 |
echo '<div class="eael-timeline-post-title">
|
36 |
-
<
|
37 |
</div>';
|
38 |
}
|
39 |
echo '</a>
|
1 |
<?php
|
2 |
+
|
3 |
+
use \Essential_Addons_Elementor\Classes\Helper;
|
4 |
+
|
5 |
/**
|
6 |
* Template Name: Default
|
7 |
*/
|
17 |
|
18 |
$image_size = sanitize_html_class( $settings['image_size'] );
|
19 |
$image_class = " attachment-$image_size size-$image_size";
|
20 |
+
$title_tag = isset($settings['title_tag']) ? Helper::eael_validate_html_tag($settings['title_tag']) : 'h2';
|
21 |
|
22 |
echo '<article class="eael-timeline-post eael-timeline-column">
|
23 |
<div class="eael-timeline-bullet"></div>
|
37 |
|
38 |
if ($settings['eael_show_title']) {
|
39 |
echo '<div class="eael-timeline-post-title">
|
40 |
+
<'.$title_tag.'>' . get_the_title() . '</'.$title_tag.'>
|
41 |
</div>';
|
42 |
}
|
43 |
echo '</a>
|
includes/Template/Woo-Product-Gallery/default.php
CHANGED
@@ -191,6 +191,10 @@ $quick_view_setting = [
|
|
191 |
</a>
|
192 |
</li>
|
193 |
<?php } ?>
|
|
|
|
|
|
|
|
|
194 |
</ul>
|
195 |
</div>
|
196 |
</div>
|
191 |
</a>
|
192 |
</li>
|
193 |
<?php } ?>
|
194 |
+
<?php if( $should_print_link ){?>
|
195 |
+
<li class="view-details"><?php echo '<a href="' . $product->get_permalink
|
196 |
+
() . '"><i class="fas fa-link"></i></a>'; ?></li>
|
197 |
+
<?php } ?>
|
198 |
</ul>
|
199 |
</div>
|
200 |
</div>
|
includes/Traits/Admin.php
CHANGED
@@ -134,104 +134,7 @@ trait Admin {
|
|
134 |
* @return array
|
135 |
* @since 1.1.2
|
136 |
*/
|
137 |
-
public function save_settings() {
|
138 |
-
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
139 |
|
140 |
-
if(!current_user_can('manage_options')){
|
141 |
-
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
142 |
-
}
|
143 |
-
|
144 |
-
if ( !isset( $_POST[ 'fields' ] ) ) {
|
145 |
-
return;
|
146 |
-
}
|
147 |
-
|
148 |
-
wp_parse_str( $_POST[ 'fields' ], $settings );
|
149 |
-
|
150 |
-
if ( !empty( $_POST[ 'is_login_register' ] ) ) {
|
151 |
-
// Saving Login | Register Related Data
|
152 |
-
if ( isset( $settings[ 'recaptchaSiteKey' ] ) ) {
|
153 |
-
update_option( 'eael_recaptcha_sitekey', sanitize_text_field( $settings[ 'recaptchaSiteKey' ] ) );
|
154 |
-
}
|
155 |
-
if ( isset( $settings[ 'recaptchaSiteSecret' ] ) ) {
|
156 |
-
update_option( 'eael_recaptcha_secret', sanitize_text_field( $settings[ 'recaptchaSiteSecret' ] ) );
|
157 |
-
}
|
158 |
-
if ( isset( $settings[ 'recaptchaLanguage' ] ) ) {
|
159 |
-
update_option( 'eael_recaptcha_language', sanitize_text_field( $settings[ 'recaptchaLanguage' ] ) );
|
160 |
-
}
|
161 |
-
|
162 |
-
//pro settings
|
163 |
-
if ( isset( $settings[ 'gClientId' ] ) ) {
|
164 |
-
update_option( 'eael_g_client_id', sanitize_text_field( $settings[ 'gClientId' ] ) );
|
165 |
-
}
|
166 |
-
if ( isset( $settings[ 'fbAppId' ] ) ) {
|
167 |
-
update_option( 'eael_fb_app_id', sanitize_text_field( $settings[ 'fbAppId' ] ) );
|
168 |
-
}
|
169 |
-
if ( isset( $settings[ 'fbAppSecret' ] ) ) {
|
170 |
-
update_option( 'eael_fb_app_secret', sanitize_text_field( $settings[ 'fbAppSecret' ] ) );
|
171 |
-
}
|
172 |
-
|
173 |
-
wp_send_json_success( [ 'message' => __( 'Login | Register Settings updated', 'essential-addons-for-elementor-lite' ) ] );
|
174 |
-
}
|
175 |
-
|
176 |
-
//Login-register data
|
177 |
-
if ( isset( $settings[ 'lr_recaptcha_sitekey' ] ) ) {
|
178 |
-
update_option( 'eael_recaptcha_sitekey', sanitize_text_field( $settings[ 'lr_recaptcha_sitekey' ] ) );
|
179 |
-
}
|
180 |
-
if ( isset( $settings[ 'lr_recaptcha_secret' ] ) ) {
|
181 |
-
update_option( 'eael_recaptcha_secret', sanitize_text_field( $settings[ 'lr_recaptcha_secret' ] ) );
|
182 |
-
}
|
183 |
-
if ( isset( $settings[ 'lr_recaptcha_language' ] ) ) {
|
184 |
-
update_option( 'eael_recaptcha_language', sanitize_text_field( $settings[ 'lr_recaptcha_language' ] ) );
|
185 |
-
}
|
186 |
-
|
187 |
-
//pro settings
|
188 |
-
if ( isset( $settings[ 'lr_g_client_id' ] ) ) {
|
189 |
-
update_option( 'eael_g_client_id', sanitize_text_field( $settings[ 'lr_g_client_id' ] ) );
|
190 |
-
}
|
191 |
-
if ( isset( $settings[ 'lr_fb_app_id' ] ) ) {
|
192 |
-
update_option( 'eael_fb_app_id', sanitize_text_field( $settings[ 'lr_fb_app_id' ] ) );
|
193 |
-
}
|
194 |
-
if ( isset( $settings[ 'lr_fb_app_secret' ] ) ) {
|
195 |
-
update_option( 'eael_fb_app_secret', sanitize_text_field( $settings[ 'lr_fb_app_secret' ] ) );
|
196 |
-
}
|
197 |
-
|
198 |
-
// Saving Google Map Api Key
|
199 |
-
if ( isset( $settings[ 'google-map-api' ] ) ) {
|
200 |
-
update_option( 'eael_save_google_map_api', sanitize_text_field( $settings[ 'google-map-api' ] ) );
|
201 |
-
}
|
202 |
-
|
203 |
-
// Saving Mailchimp Api Key
|
204 |
-
if ( isset( $settings[ 'mailchimp-api' ] ) ) {
|
205 |
-
update_option( 'eael_save_mailchimp_api', sanitize_text_field( $settings[ 'mailchimp-api' ] ) );
|
206 |
-
}
|
207 |
-
|
208 |
-
// Saving TYpeForm token
|
209 |
-
if ( isset( $settings[ 'typeform-personal-token' ] ) ) {
|
210 |
-
update_option( 'eael_save_typeform_personal_token', sanitize_text_field( $settings[ 'typeform-personal-token' ] ) );
|
211 |
-
}
|
212 |
-
|
213 |
-
// Saving Duplicator Settings
|
214 |
-
if ( isset( $settings[ 'post-duplicator-post-type' ] ) ) {
|
215 |
-
update_option( 'eael_save_post_duplicator_post_type', sanitize_text_field( $settings[ 'post-duplicator-post-type' ] ) );
|
216 |
-
}
|
217 |
-
|
218 |
-
// save js print method
|
219 |
-
if ( isset( $settings[ 'eael-js-print-method' ] ) ) {
|
220 |
-
update_option( 'eael_js_print_method', sanitize_text_field( $settings[ 'eael-js-print-method' ] ) );
|
221 |
-
}
|
222 |
-
|
223 |
-
$settings = array_map( 'sanitize_text_field', $settings );
|
224 |
-
$defaults = array_fill_keys( array_keys( array_merge( $this->registered_elements, $this->registered_extensions ) ), false );
|
225 |
-
$elements = array_merge( $defaults, array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true ) );
|
226 |
-
|
227 |
-
// update new settings
|
228 |
-
$updated = update_option( 'eael_save_settings', $elements );
|
229 |
-
|
230 |
-
// clear assets files
|
231 |
-
$this->empty_dir( EAEL_ASSET_PATH );
|
232 |
-
|
233 |
-
wp_send_json( $updated );
|
234 |
-
}
|
235 |
|
236 |
public function admin_notice() {
|
237 |
$notice = new WPDeveloper_Notice( EAEL_PLUGIN_BASENAME, EAEL_PLUGIN_VERSION );
|
134 |
* @return array
|
135 |
* @since 1.1.2
|
136 |
*/
|
|
|
|
|
137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
public function admin_notice() {
|
140 |
$notice = new WPDeveloper_Notice( EAEL_PLUGIN_BASENAME, EAEL_PLUGIN_VERSION );
|
includes/Traits/Ajax_Handler.php
ADDED
@@ -0,0 +1,877 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Class trait Ajax_Handler file
|
4 |
+
*
|
5 |
+
* @package Essential-addons-for-elementor-lite\Traits
|
6 |
+
*/
|
7 |
+
|
8 |
+
namespace Essential_Addons_Elementor\Traits;
|
9 |
+
|
10 |
+
use Essential_Addons_Elementor\Classes\Helper as HelperClass;
|
11 |
+
use Essential_Addons_Elementor\Template\Woocommerce\Checkout\Woo_Checkout_Helper;
|
12 |
+
use Essential_Addons_Elementor\Traits\Template_Query;
|
13 |
+
|
14 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
15 |
+
exit; // Exit if accessed directly
|
16 |
+
}
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Essential Addons ajax request handler
|
20 |
+
*
|
21 |
+
* Manage all ajax request for EA
|
22 |
+
*
|
23 |
+
* @class Ajax_Handler
|
24 |
+
* @since 5.0.9
|
25 |
+
* @package Essential-addons-for-elementor-lite\Traits
|
26 |
+
*/
|
27 |
+
trait Ajax_Handler {
|
28 |
+
//use Template_Query;
|
29 |
+
/**
|
30 |
+
* init_ajax_hooks
|
31 |
+
*/
|
32 |
+
public function init_ajax_hooks() {
|
33 |
+
|
34 |
+
add_action( 'wp_ajax_load_more', array( $this, 'ajax_load_more' ) );
|
35 |
+
add_action( 'wp_ajax_nopriv_load_more', array( $this, 'ajax_load_more' ) );
|
36 |
+
|
37 |
+
add_action( 'wp_ajax_woo_product_pagination_product', array( $this, 'eael_woo_pagination_product_ajax' ) );
|
38 |
+
add_action( 'wp_ajax_nopriv_woo_product_pagination_product', array(
|
39 |
+
$this,
|
40 |
+
'eael_woo_pagination_product_ajax'
|
41 |
+
) );
|
42 |
+
|
43 |
+
add_action( 'wp_ajax_woo_product_pagination', array( $this, 'eael_woo_pagination_ajax' ) );
|
44 |
+
add_action( 'wp_ajax_nopriv_woo_product_pagination', array( $this, 'eael_woo_pagination_ajax' ) );
|
45 |
+
|
46 |
+
add_action( 'wp_ajax_eael_product_add_to_cart', array( $this, 'eael_product_add_to_cart' ) );
|
47 |
+
add_action( 'wp_ajax_nopriv_eael_product_add_to_cart', array( $this, 'eael_product_add_to_cart' ) );
|
48 |
+
|
49 |
+
add_action( 'wp_ajax_woo_checkout_update_order_review', [ $this, 'woo_checkout_update_order_review' ] );
|
50 |
+
add_action( 'wp_ajax_nopriv_woo_checkout_update_order_review', [ $this, 'woo_checkout_update_order_review' ] );
|
51 |
+
|
52 |
+
add_action( 'wp_ajax_nopriv_eael_product_quickview_popup', [ $this, 'eael_product_quickview_popup' ] );
|
53 |
+
add_action( 'wp_ajax_eael_product_quickview_popup', [ $this, 'eael_product_quickview_popup' ] );
|
54 |
+
|
55 |
+
add_action( 'wp_ajax_nopriv_eael_product_gallery', [ $this, 'ajax_eael_product_gallery' ] );
|
56 |
+
add_action( 'wp_ajax_eael_product_gallery', [ $this, 'ajax_eael_product_gallery' ] );
|
57 |
+
|
58 |
+
add_action( 'wp_ajax_eael_select2_search_post', [ $this, 'select2_ajax_posts_filter_autocomplete' ] );
|
59 |
+
add_action( 'wp_ajax_nopriv_eael_select2_search_post', [ $this, 'select2_ajax_posts_filter_autocomplete' ] );
|
60 |
+
|
61 |
+
add_action( 'wp_ajax_eael_select2_get_title', [ $this, 'select2_ajax_get_posts_value_titles' ] );
|
62 |
+
add_action( 'wp_ajax_nopriv_eael_select2_get_title', [ $this, 'select2_ajax_get_posts_value_titles' ] );
|
63 |
+
|
64 |
+
if ( is_admin() ) {
|
65 |
+
add_action( 'wp_ajax_save_settings_with_ajax', array( $this, 'save_settings' ) );
|
66 |
+
add_action( 'wp_ajax_clear_cache_files_with_ajax', array( $this, 'clear_cache_files' ) );
|
67 |
+
}
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* Ajax Load More
|
72 |
+
* This function is responsible for get the post data.
|
73 |
+
* It will return HTML markup with AJAX call and with normal call.
|
74 |
+
*
|
75 |
+
* @access public
|
76 |
+
* @return false|void of a html markup with AJAX call.
|
77 |
+
* @return array of content and found posts count without AJAX call.
|
78 |
+
* @since 3.1.0
|
79 |
+
*/
|
80 |
+
public function ajax_load_more() {
|
81 |
+
$ajax = wp_doing_ajax();
|
82 |
+
|
83 |
+
wp_parse_str( $_POST['args'], $args );
|
84 |
+
if ( empty( $_POST['nonce'] ) ) {
|
85 |
+
$err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
|
86 |
+
if ( $ajax ) {
|
87 |
+
wp_send_json_error( $err_msg );
|
88 |
+
}
|
89 |
+
|
90 |
+
return false;
|
91 |
+
}
|
92 |
+
|
93 |
+
if ( ! wp_verify_nonce( $_POST['nonce'], 'load_more' ) ) {
|
94 |
+
$err_msg = __( 'Security token did not match', 'essential-addons-for-elementor-lite' );
|
95 |
+
if ( $ajax ) {
|
96 |
+
wp_send_json_error( $err_msg );
|
97 |
+
}
|
98 |
+
|
99 |
+
return false;
|
100 |
+
}
|
101 |
+
|
102 |
+
if ( ! empty( $_POST['page_id'] ) ) {
|
103 |
+
$page_id = intval( $_POST['page_id'], 10 );
|
104 |
+
} else {
|
105 |
+
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
106 |
+
if ( $ajax ) {
|
107 |
+
wp_send_json_error( $err_msg );
|
108 |
+
}
|
109 |
+
|
110 |
+
return false;
|
111 |
+
}
|
112 |
+
|
113 |
+
if ( ! empty( $_POST['widget_id'] ) ) {
|
114 |
+
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
115 |
+
} else {
|
116 |
+
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
117 |
+
if ( $ajax ) {
|
118 |
+
wp_send_json_error( $err_msg );
|
119 |
+
}
|
120 |
+
|
121 |
+
return false;
|
122 |
+
}
|
123 |
+
|
124 |
+
$settings = HelperClass::eael_get_widget_settings( $page_id, $widget_id );
|
125 |
+
|
126 |
+
if ( empty( $settings ) ) {
|
127 |
+
wp_send_json_error( [ 'message' => __( 'Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite' ) ] );
|
128 |
+
}
|
129 |
+
|
130 |
+
$settings['eael_widget_id'] = $widget_id;
|
131 |
+
$settings['eael_page_id'] = $page_id;
|
132 |
+
$html = '';
|
133 |
+
$class = '\\' . str_replace( '\\\\', '\\', $_REQUEST['class'] );
|
134 |
+
$args['offset'] = (int) $args['offset'] + ( ( (int) $_REQUEST['page'] - 1 ) * (int) $args['posts_per_page'] );
|
135 |
+
|
136 |
+
if ( isset( $_REQUEST['taxonomy'] ) && isset( $_REQUEST['taxonomy']['taxonomy'] ) && $_REQUEST['taxonomy']['taxonomy'] != 'all' ) {
|
137 |
+
$args['tax_query'] = [
|
138 |
+
$this->sanitize_taxonomy_data( $_REQUEST['taxonomy'] ),
|
139 |
+
];
|
140 |
+
}
|
141 |
+
|
142 |
+
if ( $class == '\Essential_Addons_Elementor\Elements\Post_Grid' && $settings['orderby'] === 'rand' ) {
|
143 |
+
$args['post__not_in'] = array_map( 'intval', array_unique( $_REQUEST['post__not_in'] ) );
|
144 |
+
unset( $args['offset'] );
|
145 |
+
}
|
146 |
+
|
147 |
+
// ensure control name compatibility to old code if it is post block
|
148 |
+
if ( $class === '\Essential_Addons_Elementor\Pro\Elements\Post_Block' ) {
|
149 |
+
$settings ['post_block_hover_animation'] = $settings['eael_post_block_hover_animation'];
|
150 |
+
$settings ['show_read_more_button'] = $settings['eael_show_read_more_button'];
|
151 |
+
$settings ['eael_post_block_bg_hover_icon'] = ( isset( $settings['__fa4_migrated']['eael_post_block_bg_hover_icon_new'] ) || empty( $settings['eael_post_block_bg_hover_icon'] ) ) ? $settings['eael_post_block_bg_hover_icon_new']['value'] : $settings['eael_post_block_bg_hover_icon'];
|
152 |
+
$settings ['expanison_indicator'] = $settings['excerpt_expanison_indicator'];
|
153 |
+
}
|
154 |
+
if ( $class === '\Essential_Addons_Elementor\Elements\Post_Timeline' ) {
|
155 |
+
$settings ['expanison_indicator'] = $settings['excerpt_expanison_indicator'];
|
156 |
+
}
|
157 |
+
if ( $class === '\Essential_Addons_Elementor\Pro\Elements\Dynamic_Filterable_Gallery' ) {
|
158 |
+
$settings['eael_section_fg_zoom_icon'] = ( isset( $settings['__fa4_migrated']['eael_section_fg_zoom_icon_new'] ) || empty( $settings['eael_section_fg_zoom_icon'] ) ? $settings['eael_section_fg_zoom_icon_new']['value'] : $settings['eael_section_fg_zoom_icon'] );
|
159 |
+
$settings['eael_section_fg_link_icon'] = ( isset( $settings['__fa4_migrated']['eael_section_fg_link_icon_new'] ) || empty( $settings['eael_section_fg_link_icon'] ) ? $settings['eael_section_fg_link_icon_new']['value'] : $settings['eael_section_fg_link_icon'] );
|
160 |
+
$settings['show_load_more_text'] = $settings['eael_fg_loadmore_btn_text'];
|
161 |
+
$settings['layout_mode'] = isset( $settings['layout_mode'] ) ? $settings['layout_mode'] : 'masonry';
|
162 |
+
|
163 |
+
}
|
164 |
+
|
165 |
+
$link_settings = [
|
166 |
+
'image_link_nofollow' => ! empty( $settings['image_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
167 |
+
'image_link_target_blank' => ! empty( $settings['image_link_target_blank'] ) ? 'target="_blank"' : '',
|
168 |
+
'title_link_nofollow' => ! empty( $settings['title_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
169 |
+
'title_link_target_blank' => ! empty( $settings['title_link_target_blank'] ) ? 'target="_blank"' : '',
|
170 |
+
'read_more_link_nofollow' => ! empty( $settings['read_more_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
171 |
+
'read_more_link_target_blank' => ! empty( $settings['read_more_link_target_blank'] ) ? 'target="_blank"' : '',
|
172 |
+
];
|
173 |
+
|
174 |
+
$template_info = $this->eael_sanitize_template_param( $_REQUEST['template_info'] );
|
175 |
+
|
176 |
+
if ( $template_info ) {
|
177 |
+
|
178 |
+
if ( $template_info['dir'] === 'theme' ) {
|
179 |
+
$dir_path = $this->retrive_theme_path();
|
180 |
+
} else if ( $template_info['dir'] === 'pro' ) {
|
181 |
+
$dir_path = sprintf( "%sincludes", EAEL_PRO_PLUGIN_PATH );
|
182 |
+
} else {
|
183 |
+
$dir_path = sprintf( "%sincludes", EAEL_PLUGIN_PATH );
|
184 |
+
}
|
185 |
+
|
186 |
+
$file_path = realpath( sprintf(
|
187 |
+
'%s/Template/%s/%s',
|
188 |
+
$dir_path,
|
189 |
+
$template_info['name'],
|
190 |
+
$template_info['file_name']
|
191 |
+
) );
|
192 |
+
|
193 |
+
if ( ! $file_path || 0 !== strpos( $file_path, realpath( $dir_path ) ) ) {
|
194 |
+
wp_send_json_error( 'Invalid template', 'invalid_template', 400 );
|
195 |
+
}
|
196 |
+
|
197 |
+
if ( $file_path ) {
|
198 |
+
$query = new \WP_Query( $args );
|
199 |
+
|
200 |
+
$iterator = 0;
|
201 |
+
|
202 |
+
if ( $query->have_posts() ) {
|
203 |
+
if ( $class === '\Essential_Addons_Elementor\Elements\Product_Grid' && boolval( $settings['show_add_to_cart_custom_text'] ) ) {
|
204 |
+
|
205 |
+
$add_to_cart_text = [
|
206 |
+
'add_to_cart_simple_product_button_text' => $settings['add_to_cart_simple_product_button_text'],
|
207 |
+
'add_to_cart_variable_product_button_text' => $settings['add_to_cart_variable_product_button_text'],
|
208 |
+
'add_to_cart_grouped_product_button_text' => $settings['add_to_cart_grouped_product_button_text'],
|
209 |
+
'add_to_cart_external_product_button_text' => $settings['add_to_cart_external_product_button_text'],
|
210 |
+
'add_to_cart_default_product_button_text' => $settings['add_to_cart_default_product_button_text'],
|
211 |
+
];
|
212 |
+
$this->change_add_woo_checkout_update_order_reviewto_cart_text( $add_to_cart_text );
|
213 |
+
}
|
214 |
+
|
215 |
+
|
216 |
+
while ( $query->have_posts() ) {
|
217 |
+
$query->the_post();
|
218 |
+
|
219 |
+
$html .= HelperClass::include_with_variable( $file_path, [
|
220 |
+
'settings' => $settings,
|
221 |
+
'link_settings' => $link_settings,
|
222 |
+
'iterator' => $iterator
|
223 |
+
] );
|
224 |
+
$iterator ++;
|
225 |
+
}
|
226 |
+
} else {
|
227 |
+
$html .= __( '<p class="no-posts-found">No posts found!</p>', 'essential-addons-for-elementor-lite' );
|
228 |
+
}
|
229 |
+
}
|
230 |
+
}
|
231 |
+
|
232 |
+
|
233 |
+
while ( ob_get_status() ) {
|
234 |
+
ob_end_clean();
|
235 |
+
}
|
236 |
+
if ( function_exists( 'gzencode' ) ) {
|
237 |
+
$response = gzencode( wp_json_encode( $html ) );
|
238 |
+
|
239 |
+
header( 'Content-Type: application/json; charset=utf-8' );
|
240 |
+
header( 'Content-Encoding: gzip' );
|
241 |
+
header( 'Content-Length: ' . strlen( $response ) );
|
242 |
+
|
243 |
+
printf( '%1$s', $response );
|
244 |
+
} else {
|
245 |
+
echo wp_kses_post( $html );
|
246 |
+
}
|
247 |
+
wp_die();
|
248 |
+
}
|
249 |
+
|
250 |
+
/**
|
251 |
+
* Woo Pagination Product Ajax
|
252 |
+
* get product list when pagination number/dot click by ajax
|
253 |
+
*
|
254 |
+
* @access public
|
255 |
+
* @return void of a html markup with AJAX call.
|
256 |
+
* @since 3.1.0
|
257 |
+
*/
|
258 |
+
public function eael_woo_pagination_product_ajax() {
|
259 |
+
|
260 |
+
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
261 |
+
|
262 |
+
if ( ! empty( $_POST['page_id'] ) ) {
|
263 |
+
$page_id = intval( $_POST['page_id'], 10 );
|
264 |
+
} else {
|
265 |
+
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
266 |
+
wp_send_json_error( $err_msg );
|
267 |
+
}
|
268 |
+
|
269 |
+
if ( ! empty( $_POST['widget_id'] ) ) {
|
270 |
+
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
271 |
+
} else {
|
272 |
+
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
273 |
+
wp_send_json_error( $err_msg );
|
274 |
+
}
|
275 |
+
|
276 |
+
$settings = HelperClass::eael_get_widget_settings( $page_id, $widget_id );
|
277 |
+
if ( empty( $settings ) ) {
|
278 |
+
wp_send_json_error( [ 'message' => __( 'Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite' ) ] );
|
279 |
+
}
|
280 |
+
$settings['eael_page_id'] = $page_id;
|
281 |
+
wp_parse_str( $_REQUEST['args'], $args );
|
282 |
+
|
283 |
+
$paginationNumber = absint( $_POST['number'] );
|
284 |
+
$paginationLimit = absint( $_POST['limit'] );
|
285 |
+
|
286 |
+
$args['posts_per_page'] = $paginationLimit;
|
287 |
+
|
288 |
+
if ( $paginationNumber == "1" ) {
|
289 |
+
$paginationOffsetValue = "0";
|
290 |
+
} else {
|
291 |
+
$paginationOffsetValue = ( $paginationNumber - 1 ) * $paginationLimit;
|
292 |
+
$args['offset'] = $paginationOffsetValue;
|
293 |
+
}
|
294 |
+
|
295 |
+
|
296 |
+
$template_info = $this->eael_sanitize_template_param( $_REQUEST['templateInfo'] );
|
297 |
+
|
298 |
+
$this->set_widget_name( $template_info['name'] );
|
299 |
+
$template = realpath( $this->get_template( $template_info['file_name'] ) );
|
300 |
+
|
301 |
+
ob_start();
|
302 |
+
$query = new \WP_Query( $args );
|
303 |
+
if ( $query->have_posts() ) {
|
304 |
+
while ( $query->have_posts() ) {
|
305 |
+
$query->the_post();
|
306 |
+
include( $template );
|
307 |
+
}
|
308 |
+
wp_reset_postdata();
|
309 |
+
}
|
310 |
+
echo ob_get_clean();
|
311 |
+
wp_die();
|
312 |
+
}
|
313 |
+
|
314 |
+
/**
|
315 |
+
* Woo Pagination Ajax
|
316 |
+
* Return pagination list for product post type while used Product_Grid widget
|
317 |
+
*
|
318 |
+
* @access public
|
319 |
+
* @return void of a html markup with AJAX call.
|
320 |
+
* @since unknown
|
321 |
+
*/
|
322 |
+
public function eael_woo_pagination_ajax() {
|
323 |
+
|
324 |
+
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
325 |
+
|
326 |
+
if ( ! empty( $_POST['page_id'] ) ) {
|
327 |
+
$page_id = intval( $_POST['page_id'], 10 );
|
328 |
+
} else {
|
329 |
+
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
330 |
+
wp_send_json_error( $err_msg );
|
331 |
+
}
|
332 |
+
|
333 |
+
if ( ! empty( $_POST['widget_id'] ) ) {
|
334 |
+
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
335 |
+
} else {
|
336 |
+
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
337 |
+
wp_send_json_error( $err_msg );
|
338 |
+
}
|
339 |
+
|
340 |
+
$settings = HelperClass::eael_get_widget_settings( $page_id, $widget_id );
|
341 |
+
|
342 |
+
if ( empty( $settings ) ) {
|
343 |
+
wp_send_json_error( [ 'message' => __( 'Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite' ) ] );
|
344 |
+
}
|
345 |
+
|
346 |
+
$settings['eael_page_id'] = $page_id;
|
347 |
+
wp_parse_str( $_REQUEST['args'], $args );
|
348 |
+
|
349 |
+
$paginationNumber = absint( $_POST['number'] );
|
350 |
+
$paginationLimit = absint( $_POST['limit'] );
|
351 |
+
$pagination_Count = intval( $args['total_post'] );
|
352 |
+
$pagination_Paginationlist = ceil( $pagination_Count / $paginationLimit );
|
353 |
+
$last = ceil( $pagination_Paginationlist );
|
354 |
+
$paginationprev = $paginationNumber - 1;
|
355 |
+
$paginationnext = $paginationNumber + 1;
|
356 |
+
|
357 |
+
if ( $paginationNumber > 1 ) {
|
358 |
+
$paginationprev;
|
359 |
+
}
|
360 |
+
if ( $paginationNumber < $last ) {
|
361 |
+
$paginationnext;
|
362 |
+
}
|
363 |
+
|
364 |
+
$adjacents = "2";
|
365 |
+
$next_label = sanitize_text_field( $settings['pagination_next_label'] );
|
366 |
+
$prev_label = sanitize_text_field( $settings['pagination_prev_label'] );
|
367 |
+
$settings['eael_widget_name'] = realpath( sanitize_file_name( $_REQUEST['template_name'] ) );
|
368 |
+
$setPagination = "";
|
369 |
+
|
370 |
+
if ( $pagination_Paginationlist > 0 ) {
|
371 |
+
|
372 |
+
$setPagination .= "<ul class='page-numbers'>";
|
373 |
+
|
374 |
+
if ( 1 < $paginationNumber ) {
|
375 |
+
$setPagination .= "<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-pnumber='$paginationprev' >$prev_label</a></li>";
|
376 |
+
}
|
377 |
+
|
378 |
+
if ( $pagination_Paginationlist < 7 + ( $adjacents * 2 ) ) {
|
379 |
+
|
380 |
+
for ( $pagination = 1; $pagination <= $pagination_Paginationlist; $pagination ++ ) {
|
381 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
382 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, $pagination );
|
383 |
+
}
|
384 |
+
|
385 |
+
} else if ( $pagination_Paginationlist > 5 + ( $adjacents * 2 ) ) {
|
386 |
+
|
387 |
+
if ( $paginationNumber < 1 + ( $adjacents * 2 ) ) {
|
388 |
+
for ( $pagination = 1; $pagination <= 4 + ( $adjacents * 2 ); $pagination ++ ) {
|
389 |
+
|
390 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
391 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, $pagination );
|
392 |
+
}
|
393 |
+
$setPagination .= "<li class='pagitext dots'>...</li>";
|
394 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, $pagination );
|
395 |
+
|
396 |
+
} elseif ( $pagination_Paginationlist - ( $adjacents * 2 ) > $paginationNumber && $paginationNumber > ( $adjacents * 2 ) ) {
|
397 |
+
$active = '';
|
398 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, 1 );
|
399 |
+
$setPagination .= "<li class='pagitext dots'>...</li>";
|
400 |
+
for ( $pagination = $paginationNumber - $adjacents; $pagination <= $paginationNumber + $adjacents; $pagination ++ ) {
|
401 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
402 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, $pagination );
|
403 |
+
}
|
404 |
+
|
405 |
+
$setPagination .= "<li class='pagitext dots'>...</li>";
|
406 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, $last );
|
407 |
+
|
408 |
+
} else {
|
409 |
+
$active = '';
|
410 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, 1 );
|
411 |
+
$setPagination .= "<li class='pagitext dots'>...</li>";
|
412 |
+
for ( $pagination = $last - ( 2 + ( $adjacents * 2 ) ); $pagination <= $last; $pagination ++ ) {
|
413 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
414 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, $pagination );
|
415 |
+
}
|
416 |
+
}
|
417 |
+
|
418 |
+
} else {
|
419 |
+
for ( $pagination = 1; $pagination <= $pagination_Paginationlist; $pagination ++ ) {
|
420 |
+
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
421 |
+
$setPagination .= sprintf( "<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>", $active, $pagination );
|
422 |
+
}
|
423 |
+
|
424 |
+
}
|
425 |
+
|
426 |
+
if ( $paginationNumber < $pagination_Paginationlist ) {
|
427 |
+
$setPagination .= "<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-pnumber='$paginationnext' >$next_label</a></li>";
|
428 |
+
}
|
429 |
+
|
430 |
+
$setPagination .= "</ul>";
|
431 |
+
}
|
432 |
+
|
433 |
+
printf( '%1$s', $setPagination );
|
434 |
+
wp_die();
|
435 |
+
}
|
436 |
+
|
437 |
+
/**
|
438 |
+
* Product Add to Cart
|
439 |
+
* added product in cart through ajax
|
440 |
+
*
|
441 |
+
* @access public
|
442 |
+
* @return void of a html markup with AJAX call.
|
443 |
+
* @since unknown
|
444 |
+
*/
|
445 |
+
public function eael_product_add_to_cart() {
|
446 |
+
|
447 |
+
$ajax = wp_doing_ajax();
|
448 |
+
$cart_items = isset( $_POST['cart_item_data'] ) ? $_POST['cart_item_data'] : [];
|
449 |
+
$variation = [];
|
450 |
+
if ( ! empty( $cart_items ) ) {
|
451 |
+
foreach ( $cart_items as $key => $value ) {
|
452 |
+
if ( preg_match( "/^attribute*/", $value['name'] ) ) {
|
453 |
+
$variation[ $value['name'] ] = sanitize_text_field( $value['value'] );
|
454 |
+
}
|
455 |
+
}
|
456 |
+
}
|
457 |
+
|
458 |
+
if ( isset( $_POST['product_data'] ) ) {
|
459 |
+
foreach ( $_POST['product_data'] as $item ) {
|
460 |
+
$product_id = isset( $item['product_id'] ) ? sanitize_text_field( $item['product_id'] ) : 0;
|
461 |
+
$variation_id = isset( $item['variation_id'] ) ? sanitize_text_field( $item['variation_id'] ) : 0;
|
462 |
+
$quantity = isset( $item['quantity'] ) ? sanitize_text_field( $item['quantity'] ) : 0;
|
463 |
+
|
464 |
+
if ( $variation_id ) {
|
465 |
+
WC()->cart->add_to_cart( $product_id, $quantity, $variation_id, $variation );
|
466 |
+
} else {
|
467 |
+
WC()->cart->add_to_cart( $product_id, $quantity );
|
468 |
+
}
|
469 |
+
}
|
470 |
+
}
|
471 |
+
wp_send_json_success();
|
472 |
+
}
|
473 |
+
|
474 |
+
/**
|
475 |
+
* Woo Checkout Update Order Review
|
476 |
+
* return order review data
|
477 |
+
*
|
478 |
+
* @access public
|
479 |
+
* @return void
|
480 |
+
* @since 4.0.0
|
481 |
+
*/
|
482 |
+
public function woo_checkout_update_order_review() {
|
483 |
+
$setting = $_POST['orderReviewData'];
|
484 |
+
ob_start();
|
485 |
+
Woo_Checkout_Helper::checkout_order_review_default( $setting );
|
486 |
+
$woo_checkout_update_order_review = ob_get_clean();
|
487 |
+
|
488 |
+
wp_send_json(
|
489 |
+
array(
|
490 |
+
'order_review' => $woo_checkout_update_order_review,
|
491 |
+
)
|
492 |
+
);
|
493 |
+
}
|
494 |
+
|
495 |
+
/**
|
496 |
+
* Eael Product Quick View Popup
|
497 |
+
* Retrieve product quick view data
|
498 |
+
*
|
499 |
+
* @access public
|
500 |
+
* @return void
|
501 |
+
* @since 4.0.0
|
502 |
+
*/
|
503 |
+
public function eael_product_quickview_popup() {
|
504 |
+
//check nonce
|
505 |
+
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
506 |
+
$widget_id = sanitize_key( $_POST['widget_id'] );
|
507 |
+
$product_id = absint( $_POST['product_id'] );
|
508 |
+
$page_id = absint( $_POST['page_id'] );
|
509 |
+
|
510 |
+
if ( $widget_id == '' && $product_id == '' && $page_id == '' ) {
|
511 |
+
wp_send_json_error();
|
512 |
+
}
|
513 |
+
|
514 |
+
global $post, $product;
|
515 |
+
$product = wc_get_product( $product_id );
|
516 |
+
$post = get_post( $product_id );
|
517 |
+
setup_postdata( $post );
|
518 |
+
|
519 |
+
$settings = $this->eael_get_widget_settings( $page_id, $widget_id );
|
520 |
+
ob_start();
|
521 |
+
HelperClass::eael_product_quick_view( $product, $settings, $widget_id );
|
522 |
+
$data = ob_get_clean();
|
523 |
+
wp_reset_postdata();
|
524 |
+
|
525 |
+
wp_send_json_success( $data );
|
526 |
+
}
|
527 |
+
|
528 |
+
/**
|
529 |
+
* Ajax Eael Product Gallery
|
530 |
+
* Retrieve product quick view data
|
531 |
+
*
|
532 |
+
* @access public
|
533 |
+
* @return false|void
|
534 |
+
* @since 4.0.0
|
535 |
+
*/
|
536 |
+
public function ajax_eael_product_gallery() {
|
537 |
+
|
538 |
+
$ajax = wp_doing_ajax();
|
539 |
+
|
540 |
+
wp_parse_str( $_POST['args'], $args );
|
541 |
+
|
542 |
+
if ( empty( $_POST['nonce'] ) ) {
|
543 |
+
$err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
|
544 |
+
if ( $ajax ) {
|
545 |
+
wp_send_json_error( $err_msg );
|
546 |
+
}
|
547 |
+
|
548 |
+
return false;
|
549 |
+
}
|
550 |
+
|
551 |
+
if ( ! wp_verify_nonce( $_POST['nonce'], 'eael_product_gallery' ) ) {
|
552 |
+
$err_msg = __( 'Security token did not match', 'essential-addons-for-elementor-lite' );
|
553 |
+
if ( $ajax ) {
|
554 |
+
wp_send_json_error( $err_msg );
|
555 |
+
}
|
556 |
+
|
557 |
+
return false;
|
558 |
+
}
|
559 |
+
|
560 |
+
if ( ! empty( $_POST['page_id'] ) ) {
|
561 |
+
$page_id = intval( $_POST['page_id'], 10 );
|
562 |
+
} else {
|
563 |
+
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
564 |
+
if ( $ajax ) {
|
565 |
+
wp_send_json_error( $err_msg );
|
566 |
+
}
|
567 |
+
|
568 |
+
return false;
|
569 |
+
}
|
570 |
+
|
571 |
+
if ( ! empty( $_POST['widget_id'] ) ) {
|
572 |
+
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
573 |
+
} else {
|
574 |
+
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
575 |
+
if ( $ajax ) {
|
576 |
+
wp_send_json_error( $err_msg );
|
577 |
+
}
|
578 |
+
|
579 |
+
return false;
|
580 |
+
}
|
581 |
+
|
582 |
+
$settings = HelperClass::eael_get_widget_settings( $page_id, $widget_id );
|
583 |
+
if ( empty( $settings ) ) {
|
584 |
+
wp_send_json_error( [ 'message' => __( 'Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite' ) ] );
|
585 |
+
}
|
586 |
+
|
587 |
+
if ( $widget_id == '' && $page_id == '' ) {
|
588 |
+
wp_send_json_error();
|
589 |
+
}
|
590 |
+
|
591 |
+
$settings['eael_widget_id'] = $widget_id;
|
592 |
+
$settings['eael_page_id'] = $page_id;
|
593 |
+
$args['offset'] = (int) $args['offset'] + ( ( (int) $_REQUEST['page'] - 1 ) * (int) $args['posts_per_page'] );
|
594 |
+
|
595 |
+
if ( isset( $_REQUEST['taxonomy'] ) && isset( $_REQUEST['taxonomy']['taxonomy'] ) && $_REQUEST['taxonomy']['taxonomy'] != 'all' ) {
|
596 |
+
$args['tax_query'] = [
|
597 |
+
$this->sanitize_taxonomy_data( $_REQUEST['taxonomy'] ),
|
598 |
+
];
|
599 |
+
}
|
600 |
+
|
601 |
+
$template_info = $this->eael_sanitize_template_param( $_REQUEST['template_info'] );
|
602 |
+
|
603 |
+
if ( $template_info ) {
|
604 |
+
|
605 |
+
if ( $template_info['dir'] === 'theme' ) {
|
606 |
+
$dir_path = $this->retrive_theme_path();
|
607 |
+
} else if ( $template_info['dir'] === 'pro' ) {
|
608 |
+
$dir_path = sprintf( "%sincludes", EAEL_PRO_PLUGIN_PATH );
|
609 |
+
} else {
|
610 |
+
$dir_path = sprintf( "%sincludes", EAEL_PLUGIN_PATH );
|
611 |
+
}
|
612 |
+
|
613 |
+
$file_path = realpath( sprintf(
|
614 |
+
'%s/Template/%s/%s',
|
615 |
+
$dir_path,
|
616 |
+
$template_info['name'],
|
617 |
+
$template_info['file_name']
|
618 |
+
) );
|
619 |
+
|
620 |
+
if ( ! $file_path || 0 !== strpos( $file_path, realpath( $dir_path ) ) ) {
|
621 |
+
wp_send_json_error( 'Invalid template', 'invalid_template', 400 );
|
622 |
+
}
|
623 |
+
|
624 |
+
$html = '';
|
625 |
+
if ( $file_path ) {
|
626 |
+
$query = new \WP_Query( $args );
|
627 |
+
|
628 |
+
if ( $query->have_posts() ) {
|
629 |
+
|
630 |
+
while ( $query->have_posts() ) {
|
631 |
+
$query->the_post();
|
632 |
+
$html .= HelperClass::include_with_variable( $file_path, [ 'settings' => $settings ] );
|
633 |
+
}
|
634 |
+
printf( '%1$s', $html );
|
635 |
+
wp_reset_postdata();
|
636 |
+
}
|
637 |
+
}
|
638 |
+
}
|
639 |
+
wp_die();
|
640 |
+
}
|
641 |
+
|
642 |
+
/**
|
643 |
+
* Select2 Ajax Posts Filter Autocomplete
|
644 |
+
* Fetch post/taxonomy data and render in Elementor control select2 ajax search box
|
645 |
+
*
|
646 |
+
* @access public
|
647 |
+
* @return void
|
648 |
+
* @since 4.0.0
|
649 |
+
*/
|
650 |
+
public function select2_ajax_posts_filter_autocomplete() {
|
651 |
+
$post_type = 'post';
|
652 |
+
$source_name = 'post_type';
|
653 |
+
|
654 |
+
if ( ! empty( $_GET['post_type'] ) ) {
|
655 |
+
$post_type = sanitize_text_field( $_GET['post_type'] );
|
656 |
+
}
|
657 |
+
|
658 |
+
if ( ! empty( $_GET['source_name'] ) ) {
|
659 |
+
$source_name = sanitize_text_field( $_GET['source_name'] );
|
660 |
+
}
|
661 |
+
|
662 |
+
$search = ! empty( $_GET['term'] ) ? sanitize_text_field( $_GET['term'] ) : '';
|
663 |
+
$results = $post_list = [];
|
664 |
+
switch ( $source_name ) {
|
665 |
+
case 'taxonomy':
|
666 |
+
$args = [
|
667 |
+
'hide_empty' => false,
|
668 |
+
'orderby' => 'name',
|
669 |
+
'order' => 'ASC',
|
670 |
+
'search' => $search,
|
671 |
+
'number' => '5',
|
672 |
+
];
|
673 |
+
|
674 |
+
if ( $post_type !== 'all' ) {
|
675 |
+
$args['taxonomy'] = $post_type;
|
676 |
+
}
|
677 |
+
|
678 |
+
$post_list = wp_list_pluck( get_terms( $args ), 'name', 'term_id' );
|
679 |
+
break;
|
680 |
+
default:
|
681 |
+
$post_list = HelperClass::get_query_post_list( $post_type, 10, $search );
|
682 |
+
}
|
683 |
+
|
684 |
+
if ( ! empty( $post_list ) ) {
|
685 |
+
foreach ( $post_list as $key => $item ) {
|
686 |
+
$results[] = [ 'text' => $item, 'id' => $key ];
|
687 |
+
}
|
688 |
+
}
|
689 |
+
wp_send_json( [ 'results' => $results ] );
|
690 |
+
}
|
691 |
+
|
692 |
+
/**
|
693 |
+
* Select2 Ajax Get Posts Value Titles
|
694 |
+
* get selected value to show elementor editor panel in select2 ajax search box
|
695 |
+
*
|
696 |
+
* @access public
|
697 |
+
* @return void
|
698 |
+
* @since 4.0.0
|
699 |
+
*/
|
700 |
+
public function select2_ajax_get_posts_value_titles() {
|
701 |
+
|
702 |
+
if ( empty( $_POST['id'] ) ) {
|
703 |
+
wp_send_json_error( [] );
|
704 |
+
}
|
705 |
+
|
706 |
+
if ( empty( array_filter( $_POST['id'] ) ) ) {
|
707 |
+
wp_send_json_error( [] );
|
708 |
+
}
|
709 |
+
$ids = array_map( 'intval', $_POST['id'] );
|
710 |
+
$source_name = ! empty( $_POST['source_name'] ) ? sanitize_text_field( $_POST['source_name'] ) : '';
|
711 |
+
|
712 |
+
switch ( $source_name ) {
|
713 |
+
case 'taxonomy':
|
714 |
+
$args = [
|
715 |
+
'hide_empty' => false,
|
716 |
+
'orderby' => 'name',
|
717 |
+
'order' => 'ASC',
|
718 |
+
'include' => implode( ',', $ids ),
|
719 |
+
];
|
720 |
+
|
721 |
+
if ( $_POST['post_type'] !== 'all' ) {
|
722 |
+
$args['taxonomy'] = sanitize_text_field( $_POST['post_type'] );
|
723 |
+
}
|
724 |
+
|
725 |
+
$response = wp_list_pluck( get_terms( $args ), 'name', 'term_id' );
|
726 |
+
break;
|
727 |
+
default:
|
728 |
+
$post_info = get_posts( [
|
729 |
+
'post_type' => sanitize_text_field( $_POST['post_type'] ),
|
730 |
+
'include' => implode( ',', $ids )
|
731 |
+
] );
|
732 |
+
$response = wp_list_pluck( $post_info, 'post_title', 'ID' );
|
733 |
+
}
|
734 |
+
|
735 |
+
if ( ! empty( $response ) ) {
|
736 |
+
wp_send_json_success( [ 'results' => $response ] );
|
737 |
+
} else {
|
738 |
+
wp_send_json_error( [] );
|
739 |
+
}
|
740 |
+
}
|
741 |
+
|
742 |
+
/**
|
743 |
+
* Save Settings
|
744 |
+
* Save EA settings data through ajax request
|
745 |
+
*
|
746 |
+
* @access public
|
747 |
+
* @return void
|
748 |
+
* @since 1.1.2
|
749 |
+
*/
|
750 |
+
public function save_settings() {
|
751 |
+
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
752 |
+
|
753 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
754 |
+
wp_send_json_error( __( 'you are not allowed to do this action', 'essential-addons-for-elementor-lite' ) );
|
755 |
+
}
|
756 |
+
|
757 |
+
if ( ! isset( $_POST['fields'] ) ) {
|
758 |
+
return;
|
759 |
+
}
|
760 |
+
|
761 |
+
wp_parse_str( $_POST['fields'], $settings );
|
762 |
+
|
763 |
+
if ( ! empty( $_POST['is_login_register'] ) ) {
|
764 |
+
// Saving Login | Register Related Data
|
765 |
+
if ( isset( $settings['recaptchaSiteKey'] ) ) {
|
766 |
+
update_option( 'eael_recaptcha_sitekey', sanitize_text_field( $settings['recaptchaSiteKey'] ) );
|
767 |
+
}
|
768 |
+
if ( isset( $settings['recaptchaSiteSecret'] ) ) {
|
769 |
+
update_option( 'eael_recaptcha_secret', sanitize_text_field( $settings['recaptchaSiteSecret'] ) );
|
770 |
+
}
|
771 |
+
if ( isset( $settings['recaptchaLanguage'] ) ) {
|
772 |
+
update_option( 'eael_recaptcha_language', sanitize_text_field( $settings['recaptchaLanguage'] ) );
|
773 |
+
}
|
774 |
+
|
775 |
+
//pro settings
|
776 |
+
if ( isset( $settings['gClientId'] ) ) {
|
777 |
+
update_option( 'eael_g_client_id', sanitize_text_field( $settings['gClientId'] ) );
|
778 |
+
}
|
779 |
+
if ( isset( $settings['fbAppId'] ) ) {
|
780 |
+
update_option( 'eael_fb_app_id', sanitize_text_field( $settings['fbAppId'] ) );
|
781 |
+
}
|
782 |
+
if ( isset( $settings['fbAppSecret'] ) ) {
|
783 |
+
update_option( 'eael_fb_app_secret', sanitize_text_field( $settings['fbAppSecret'] ) );
|
784 |
+
}
|
785 |
+
|
786 |
+
wp_send_json_success( [ 'message' => __( 'Login | Register Settings updated', 'essential-addons-for-elementor-lite' ) ] );
|
787 |
+
}
|
788 |
+
|
789 |
+
//Login-register data
|
790 |
+
if ( isset( $settings['lr_recaptcha_sitekey'] ) ) {
|
791 |
+
update_option( 'eael_recaptcha_sitekey', sanitize_text_field( $settings['lr_recaptcha_sitekey'] ) );
|
792 |
+
}
|
793 |
+
if ( isset( $settings['lr_recaptcha_secret'] ) ) {
|
794 |
+
update_option( 'eael_recaptcha_secret', sanitize_text_field( $settings['lr_recaptcha_secret'] ) );
|
795 |
+
}
|
796 |
+
if ( isset( $settings['lr_recaptcha_language'] ) ) {
|
797 |
+
update_option( 'eael_recaptcha_language', sanitize_text_field( $settings['lr_recaptcha_language'] ) );
|
798 |
+
}
|
799 |
+
|
800 |
+
//pro settings
|
801 |
+
if ( isset( $settings['lr_g_client_id'] ) ) {
|
802 |
+
update_option( 'eael_g_client_id', sanitize_text_field( $settings['lr_g_client_id'] ) );
|
803 |
+
}
|
804 |
+
if ( isset( $settings['lr_fb_app_id'] ) ) {
|
805 |
+
update_option( 'eael_fb_app_id', sanitize_text_field( $settings['lr_fb_app_id'] ) );
|
806 |
+
}
|
807 |
+
if ( isset( $settings['lr_fb_app_secret'] ) ) {
|
808 |
+
update_option( 'eael_fb_app_secret', sanitize_text_field( $settings['lr_fb_app_secret'] ) );
|
809 |
+
}
|
810 |
+
|
811 |
+
// Saving Google Map Api Key
|
812 |
+
if ( isset( $settings['google-map-api'] ) ) {
|
813 |
+
update_option( 'eael_save_google_map_api', sanitize_text_field( $settings['google-map-api'] ) );
|
814 |
+
}
|
815 |
+
|
816 |
+
// Saving Mailchimp Api Key
|
817 |
+
if ( isset( $settings['mailchimp-api'] ) ) {
|
818 |
+
update_option( 'eael_save_mailchimp_api', sanitize_text_field( $settings['mailchimp-api'] ) );
|
819 |
+
}
|
820 |
+
|
821 |
+
// Saving TYpeForm token
|
822 |
+
if ( isset( $settings['typeform-personal-token'] ) ) {
|
823 |
+
update_option( 'eael_save_typeform_personal_token', sanitize_text_field( $settings['typeform-personal-token'] ) );
|
824 |
+
}
|
825 |
+
|
826 |
+
// Saving Duplicator Settings
|
827 |
+
if ( isset( $settings['post-duplicator-post-type'] ) ) {
|
828 |
+
update_option( 'eael_save_post_duplicator_post_type', sanitize_text_field( $settings['post-duplicator-post-type'] ) );
|
829 |
+
}
|
830 |
+
|
831 |
+
// save js print method
|
832 |
+
if ( isset( $settings['eael-js-print-method'] ) ) {
|
833 |
+
update_option( 'eael_js_print_method', sanitize_text_field( $settings['eael-js-print-method'] ) );
|
834 |
+
}
|
835 |
+
|
836 |
+
$settings = array_map( 'sanitize_text_field', $settings );
|
837 |
+
$defaults = array_fill_keys( array_keys( array_merge( $this->registered_elements, $this->registered_extensions ) ), false );
|
838 |
+
$elements = array_merge( $defaults, array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true ) );
|
839 |
+
|
840 |
+
// update new settings
|
841 |
+
$updated = update_option( 'eael_save_settings', $elements );
|
842 |
+
|
843 |
+
// clear assets files
|
844 |
+
$this->empty_dir( EAEL_ASSET_PATH );
|
845 |
+
|
846 |
+
wp_send_json( $updated );
|
847 |
+
}
|
848 |
+
|
849 |
+
/**
|
850 |
+
* Clear Cache Files
|
851 |
+
* Clear cache files from uploads/essential-addons-elementor
|
852 |
+
*
|
853 |
+
* @access public
|
854 |
+
* @return void
|
855 |
+
* @since 3.0.0
|
856 |
+
*/
|
857 |
+
public function clear_cache_files() {
|
858 |
+
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
859 |
+
|
860 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
861 |
+
wp_send_json_error( __( 'you are not allowed to do this action', 'essential-addons-for-elementor-lite' ) );
|
862 |
+
}
|
863 |
+
|
864 |
+
if ( isset( $_REQUEST['posts'] ) ) {
|
865 |
+
if ( ! empty( $_POST['posts'] ) ) {
|
866 |
+
foreach ( json_decode( $_POST['posts'] ) as $post ) {
|
867 |
+
$this->remove_files( 'post-' . $post );
|
868 |
+
}
|
869 |
+
}
|
870 |
+
} else {
|
871 |
+
// clear cache files
|
872 |
+
$this->empty_dir( EAEL_ASSET_PATH );
|
873 |
+
}
|
874 |
+
|
875 |
+
wp_send_json( true );
|
876 |
+
}
|
877 |
+
}
|
includes/Traits/Elements.php
CHANGED
@@ -13,15 +13,18 @@ trait Elements
|
|
13 |
{
|
14 |
public $extensions_data = [];
|
15 |
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
25 |
|
26 |
/**
|
27 |
* Add elementor category
|
13 |
{
|
14 |
public $extensions_data = [];
|
15 |
|
16 |
+
/**
|
17 |
+
* Register custom controls
|
18 |
+
*
|
19 |
+
* @since v4.4.2
|
20 |
+
*/
|
21 |
+
public function register_controls( $controls_manager ) {
|
22 |
+
if ( version_compare( ELEMENTOR_VERSION, '3.5.0', '>=' ) ) {
|
23 |
+
$controls_manager->register( new \Essential_Addons_Elementor\Controls\Select2() );
|
24 |
+
} else {
|
25 |
+
$controls_manager->register_control( 'eael-select2', new \Essential_Addons_Elementor\Controls\Select2() );
|
26 |
+
}
|
27 |
+
}
|
28 |
|
29 |
/**
|
30 |
* Add elementor category
|
includes/Traits/Helper.php
CHANGED
@@ -13,190 +13,11 @@ use \Essential_Addons_Elementor\Elements\Woo_Checkout;
|
|
13 |
trait Helper
|
14 |
{
|
15 |
use Template_Query;
|
16 |
-
/**
|
17 |
-
* This function is responsible for get the post data.
|
18 |
-
* It will return HTML markup with AJAX call and with normal call.
|
19 |
-
*
|
20 |
-
* @return string of an html markup with AJAX call.
|
21 |
-
* @return array of content and found posts count without AJAX call.
|
22 |
-
*/
|
23 |
-
public function ajax_load_more()
|
24 |
-
{
|
25 |
-
$ajax = wp_doing_ajax();
|
26 |
-
|
27 |
-
wp_parse_str($_POST['args'], $args);
|
28 |
-
if ( empty( $_POST['nonce'] ) ) {
|
29 |
-
$err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
|
30 |
-
if ( $ajax ) {
|
31 |
-
wp_send_json_error( $err_msg );
|
32 |
-
}
|
33 |
-
return false;
|
34 |
-
}
|
35 |
-
|
36 |
-
if ( ! wp_verify_nonce( $_POST['nonce'], 'load_more' ) ) {
|
37 |
-
$err_msg = __( 'Security token did not match', 'essential-addons-for-elementor-lite' );
|
38 |
-
if ( $ajax ) {
|
39 |
-
wp_send_json_error( $err_msg );
|
40 |
-
}
|
41 |
-
return false;
|
42 |
-
}
|
43 |
-
|
44 |
-
if ( ! empty( $_POST['page_id'] ) ) {
|
45 |
-
$page_id = intval( $_POST['page_id'], 10 );
|
46 |
-
} else {
|
47 |
-
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
48 |
-
if ( $ajax ) {
|
49 |
-
wp_send_json_error( $err_msg );
|
50 |
-
}
|
51 |
-
return false;
|
52 |
-
}
|
53 |
-
|
54 |
-
if ( ! empty( $_POST['widget_id'] ) ) {
|
55 |
-
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
56 |
-
} else {
|
57 |
-
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
58 |
-
if ( $ajax ) {
|
59 |
-
wp_send_json_error( $err_msg );
|
60 |
-
}
|
61 |
-
return false;
|
62 |
-
}
|
63 |
-
|
64 |
-
$settings = HelperClass::eael_get_widget_settings($page_id, $widget_id);
|
65 |
-
|
66 |
-
if (empty($settings)) {
|
67 |
-
wp_send_json_error(['message' => __('Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite')]);
|
68 |
-
}
|
69 |
-
|
70 |
-
$settings['eael_widget_id'] = $widget_id;
|
71 |
-
$settings['eael_page_id'] = $page_id;
|
72 |
-
$html = '';
|
73 |
-
$class = '\\' . str_replace( '\\\\', '\\', $_REQUEST[ 'class' ] );
|
74 |
-
$args[ 'offset' ] = (int)$args[ 'offset' ] + ( ( (int)$_REQUEST[ 'page' ] - 1 ) * (int)$args[ 'posts_per_page' ] );
|
75 |
-
|
76 |
-
if ( isset( $_REQUEST[ 'taxonomy' ] ) && isset($_REQUEST[ 'taxonomy' ][ 'taxonomy' ]) && $_REQUEST[ 'taxonomy' ][ 'taxonomy' ] != 'all' ) {
|
77 |
-
$args[ 'tax_query' ] = [
|
78 |
-
$this->sanitize_taxonomy_data( $_REQUEST[ 'taxonomy' ] ),
|
79 |
-
];
|
80 |
-
}
|
81 |
-
|
82 |
-
if ( $class == '\Essential_Addons_Elementor\Elements\Post_Grid' && $settings[ 'orderby' ] === 'rand' ) {
|
83 |
-
$args[ 'post__not_in' ] = array_map( 'intval', array_unique( $_REQUEST[ 'post__not_in' ] ) );
|
84 |
-
unset( $args['offset'] );
|
85 |
-
}
|
86 |
-
|
87 |
-
// ensure control name compatibility to old code if it is post block
|
88 |
-
if ($class === '\Essential_Addons_Elementor\Pro\Elements\Post_Block' ) {
|
89 |
-
$settings ['post_block_hover_animation'] = $settings['eael_post_block_hover_animation'];
|
90 |
-
$settings ['show_read_more_button'] = $settings['eael_show_read_more_button'];
|
91 |
-
$settings ['eael_post_block_bg_hover_icon'] = (isset($settings['__fa4_migrated']['eael_post_block_bg_hover_icon_new']) || empty($settings['eael_post_block_bg_hover_icon'])) ? $settings['eael_post_block_bg_hover_icon_new']['value'] : $settings['eael_post_block_bg_hover_icon'];
|
92 |
-
$settings ['expanison_indicator'] = $settings['excerpt_expanison_indicator'];
|
93 |
-
}
|
94 |
-
if ( $class === '\Essential_Addons_Elementor\Elements\Post_Timeline' ) {
|
95 |
-
$settings ['expanison_indicator'] = $settings['excerpt_expanison_indicator'];
|
96 |
-
}
|
97 |
-
if ($class === '\Essential_Addons_Elementor\Pro\Elements\Dynamic_Filterable_Gallery' ) {
|
98 |
-
$settings['eael_section_fg_zoom_icon'] = (isset($settings['__fa4_migrated']['eael_section_fg_zoom_icon_new']) || empty($settings['eael_section_fg_zoom_icon']) ? $settings['eael_section_fg_zoom_icon_new']['value'] : $settings['eael_section_fg_zoom_icon']);
|
99 |
-
$settings['eael_section_fg_link_icon'] = (isset($settings['__fa4_migrated']['eael_section_fg_link_icon_new']) || empty($settings['eael_section_fg_link_icon']) ? $settings['eael_section_fg_link_icon_new']['value'] : $settings['eael_section_fg_link_icon']);
|
100 |
-
$settings['show_load_more_text'] = $settings['eael_fg_loadmore_btn_text'];
|
101 |
-
$settings['layout_mode'] = isset($settings['layout_mode']) ? $settings['layout_mode'] : 'masonry';
|
102 |
-
|
103 |
-
}
|
104 |
-
|
105 |
-
$link_settings = [
|
106 |
-
'image_link_nofollow' => ! empty( $settings['image_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
107 |
-
'image_link_target_blank' => ! empty( $settings['image_link_target_blank'] ) ? 'target="_blank"' : '',
|
108 |
-
'title_link_nofollow' => ! empty( $settings['title_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
109 |
-
'title_link_target_blank' => ! empty( $settings['title_link_target_blank'] ) ? 'target="_blank"' : '',
|
110 |
-
'read_more_link_nofollow' => ! empty( $settings['read_more_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
111 |
-
'read_more_link_target_blank' => ! empty( $settings['read_more_link_target_blank'] ) ? 'target="_blank"' : '',
|
112 |
-
];
|
113 |
-
|
114 |
-
$template_info = $this->eael_sanitize_template_param( $_REQUEST['template_info'] );
|
115 |
-
|
116 |
-
if ( $template_info ) {
|
117 |
-
|
118 |
-
if ( $template_info[ 'dir' ] === 'theme' ) {
|
119 |
-
$dir_path = $this->retrive_theme_path();
|
120 |
-
} else if($template_info[ 'dir' ] === 'pro') {
|
121 |
-
$dir_path = sprintf("%sincludes",EAEL_PRO_PLUGIN_PATH);
|
122 |
-
} else {
|
123 |
-
$dir_path = sprintf("%sincludes",EAEL_PLUGIN_PATH);
|
124 |
-
}
|
125 |
-
|
126 |
-
$file_path = realpath( sprintf(
|
127 |
-
'%s/Template/%s/%s',
|
128 |
-
$dir_path,
|
129 |
-
$template_info['name'],
|
130 |
-
$template_info['file_name']
|
131 |
-
) );
|
132 |
-
|
133 |
-
if ( ! $file_path || 0 !== strpos( $file_path, realpath( $dir_path ) ) ) {
|
134 |
-
wp_send_json_error( 'Invalid template', 'invalid_template', 400 );
|
135 |
-
}
|
136 |
-
|
137 |
-
if ( $file_path ) {
|
138 |
-
$query = new \WP_Query( $args );
|
139 |
-
|
140 |
-
$iterator = 0;
|
141 |
-
|
142 |
-
if ( $query->have_posts() ) {
|
143 |
-
if ( $class === '\Essential_Addons_Elementor\Elements\Product_Grid' && boolval( $settings[ 'show_add_to_cart_custom_text' ] ) ) {
|
144 |
-
|
145 |
-
$add_to_cart_text = [
|
146 |
-
'add_to_cart_simple_product_button_text' => $settings[ 'add_to_cart_simple_product_button_text' ],
|
147 |
-
'add_to_cart_variable_product_button_text' => $settings[ 'add_to_cart_variable_product_button_text' ],
|
148 |
-
'add_to_cart_grouped_product_button_text' => $settings[ 'add_to_cart_grouped_product_button_text' ],
|
149 |
-
'add_to_cart_external_product_button_text' => $settings[ 'add_to_cart_external_product_button_text' ],
|
150 |
-
'add_to_cart_default_product_button_text' => $settings[ 'add_to_cart_default_product_button_text' ],
|
151 |
-
];
|
152 |
-
$this->change_add_to_cart_text($add_to_cart_text);
|
153 |
-
}
|
154 |
-
|
155 |
-
|
156 |
-
while ( $query->have_posts() ) {
|
157 |
-
$query->the_post();
|
158 |
-
|
159 |
-
$html .= HelperClass::include_with_variable( $file_path, [ 'settings' => $settings, 'link_settings' => $link_settings, 'iterator' => $iterator ] );
|
160 |
-
$iterator++;
|
161 |
-
}
|
162 |
-
} else {
|
163 |
-
$html .= __( '<p class="no-posts-found">No posts found!</p>', 'essential-addons-for-elementor-lite' );
|
164 |
-
}
|
165 |
-
}
|
166 |
-
}
|
167 |
-
|
168 |
|
169 |
-
while ( ob_get_status() ) {
|
170 |
-
ob_end_clean();
|
171 |
-
}
|
172 |
-
if (function_exists( 'gzencode' ) ) {
|
173 |
-
$response = gzencode( wp_json_encode( $html ) );
|
174 |
-
|
175 |
-
header( 'Content-Type: application/json; charset=utf-8' );
|
176 |
-
header( 'Content-Encoding: gzip' );
|
177 |
-
header( 'Content-Length: ' . strlen( $response ) );
|
178 |
-
|
179 |
-
printf( '%1$s', $response );
|
180 |
-
} else {
|
181 |
-
echo wp_kses_post( $html );
|
182 |
-
}
|
183 |
-
wp_die();
|
184 |
-
}
|
185 |
/**
|
186 |
* Woo Checkout
|
187 |
*/
|
188 |
-
|
189 |
-
$setting = $_POST[ 'orderReviewData' ];
|
190 |
-
ob_start();
|
191 |
-
Woo_Checkout::checkout_order_review_default( $setting );
|
192 |
-
$woo_checkout_update_order_review = ob_get_clean();
|
193 |
-
|
194 |
-
wp_send_json(
|
195 |
-
array(
|
196 |
-
'order_review' => $woo_checkout_update_order_review,
|
197 |
-
)
|
198 |
-
);
|
199 |
-
}
|
200 |
|
201 |
/** Filter to add plugins to the TOC list.
|
202 |
*
|
@@ -406,87 +227,6 @@ trait Helper
|
|
406 |
return $html;
|
407 |
}
|
408 |
|
409 |
-
public function select2_ajax_posts_filter_autocomplete() {
|
410 |
-
$post_type = 'post';
|
411 |
-
$source_name = 'post_type';
|
412 |
-
|
413 |
-
if ( !empty( $_GET[ 'post_type' ] ) ) {
|
414 |
-
$post_type = sanitize_text_field( $_GET[ 'post_type' ] );
|
415 |
-
}
|
416 |
-
|
417 |
-
if ( !empty( $_GET[ 'source_name' ] ) ) {
|
418 |
-
$source_name = sanitize_text_field( $_GET[ 'source_name' ] );
|
419 |
-
}
|
420 |
-
|
421 |
-
$search = !empty( $_GET[ 'term' ] ) ? sanitize_text_field( $_GET[ 'term' ] ) : '';
|
422 |
-
$results = $post_list = [];
|
423 |
-
switch($source_name){
|
424 |
-
case 'taxonomy':
|
425 |
-
$args = [
|
426 |
-
'hide_empty' => false,
|
427 |
-
'orderby' => 'name',
|
428 |
-
'order' => 'ASC',
|
429 |
-
'search' => $search,
|
430 |
-
'number' => '5',
|
431 |
-
];
|
432 |
-
|
433 |
-
if ( $post_type !== 'all' ) {
|
434 |
-
$args['taxonomy'] = $post_type;
|
435 |
-
}
|
436 |
-
|
437 |
-
$post_list = wp_list_pluck( get_terms( $args ), 'name', 'term_id' );
|
438 |
-
break;
|
439 |
-
default:
|
440 |
-
$post_list = HelperClass::get_query_post_list( $post_type, 10, $search );
|
441 |
-
}
|
442 |
-
|
443 |
-
if ( !empty( $post_list ) ) {
|
444 |
-
foreach ( $post_list as $key => $item ) {
|
445 |
-
$results[] = [ 'text' => $item, 'id' => $key ];
|
446 |
-
}
|
447 |
-
}
|
448 |
-
wp_send_json( [ 'results' => $results ] );
|
449 |
-
}
|
450 |
-
|
451 |
-
public function select2_ajax_get_posts_value_titles() {
|
452 |
-
|
453 |
-
if ( empty( $_POST[ 'id' ] ) ) {
|
454 |
-
wp_send_json_error( [] );
|
455 |
-
}
|
456 |
-
|
457 |
-
if ( empty( array_filter($_POST[ 'id' ]) ) ) {
|
458 |
-
wp_send_json_error( [] );
|
459 |
-
}
|
460 |
-
$ids = array_map('intval',$_POST[ 'id' ]);
|
461 |
-
$source_name = !empty( $_POST[ 'source_name' ] ) ? sanitize_text_field( $_POST[ 'source_name' ] ) : '';
|
462 |
-
|
463 |
-
switch ( $source_name ) {
|
464 |
-
case 'taxonomy':
|
465 |
-
$args = [
|
466 |
-
'hide_empty' => false,
|
467 |
-
'orderby' => 'name',
|
468 |
-
'order' => 'ASC',
|
469 |
-
'include' => implode( ',', $ids ),
|
470 |
-
];
|
471 |
-
|
472 |
-
if ( $_POST[ 'post_type' ] !== 'all' ) {
|
473 |
-
$args['taxonomy'] = sanitize_text_field( $_POST[ 'post_type' ] );
|
474 |
-
}
|
475 |
-
|
476 |
-
$response = wp_list_pluck( get_terms( $args ), 'name', 'term_id' );
|
477 |
-
break;
|
478 |
-
default:
|
479 |
-
$post_info = get_posts( [ 'post_type' => sanitize_text_field( $_POST[ 'post_type' ] ), 'include' => implode( ',', $ids ) ] );
|
480 |
-
$response = wp_list_pluck( $post_info, 'post_title', 'ID' );
|
481 |
-
}
|
482 |
-
|
483 |
-
if ( !empty( $response ) ) {
|
484 |
-
wp_send_json_success( [ 'results' => $response ] );
|
485 |
-
} else {
|
486 |
-
wp_send_json_error( [] );
|
487 |
-
}
|
488 |
-
}
|
489 |
-
|
490 |
/**
|
491 |
* It returns the widget settings provided the page id and widget id
|
492 |
* @param int $page_id Page ID where the widget is used
|
@@ -601,203 +341,13 @@ trait Helper
|
|
601 |
return $html;
|
602 |
}
|
603 |
|
604 |
-
public function eael_woo_pagination_product_ajax() {
|
605 |
-
|
606 |
-
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
607 |
-
|
608 |
-
if ( ! empty( $_POST['page_id'] ) ) {
|
609 |
-
$page_id = intval( $_POST['page_id'], 10 );
|
610 |
-
} else {
|
611 |
-
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
612 |
-
wp_send_json_error( $err_msg );
|
613 |
-
}
|
614 |
-
|
615 |
-
if ( ! empty( $_POST['widget_id'] ) ) {
|
616 |
-
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
617 |
-
} else {
|
618 |
-
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
619 |
-
wp_send_json_error( $err_msg );
|
620 |
-
}
|
621 |
-
|
622 |
-
$settings = HelperClass::eael_get_widget_settings( $page_id, $widget_id );
|
623 |
-
if ( empty( $settings ) ) {
|
624 |
-
wp_send_json_error( [ 'message' => __( 'Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite' ) ] );
|
625 |
-
}
|
626 |
-
$settings['eael_page_id'] = $page_id;
|
627 |
-
wp_parse_str( $_REQUEST['args'], $args );
|
628 |
-
|
629 |
-
$paginationNumber = absint( $_POST['number'] );
|
630 |
-
$paginationLimit = absint( $_POST['limit'] );
|
631 |
-
|
632 |
-
$args['posts_per_page'] = $paginationLimit;
|
633 |
-
|
634 |
-
if( $paginationNumber == "1" ){
|
635 |
-
$paginationOffsetValue = "0";
|
636 |
-
}else{
|
637 |
-
$paginationOffsetValue = ($paginationNumber-1)*$paginationLimit;
|
638 |
-
$args['offset'] = $paginationOffsetValue;
|
639 |
-
}
|
640 |
-
|
641 |
-
|
642 |
-
$template_info = $this->eael_sanitize_template_param( $_REQUEST['templateInfo'] );
|
643 |
-
|
644 |
-
$this->set_widget_name( $template_info['name'] );
|
645 |
-
$template = realpath( $this->get_template( $template_info['file_name'] ) );
|
646 |
-
|
647 |
-
ob_start();
|
648 |
-
$query = new \WP_Query( $args );
|
649 |
-
if ( $query->have_posts() ) {
|
650 |
-
while ( $query->have_posts() ) {
|
651 |
-
$query->the_post();
|
652 |
-
include( $template );
|
653 |
-
}
|
654 |
-
wp_reset_postdata();
|
655 |
-
}
|
656 |
-
echo ob_get_clean();
|
657 |
-
wp_die();
|
658 |
-
}
|
659 |
-
|
660 |
-
public function eael_woo_pagination_ajax() {
|
661 |
-
|
662 |
-
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
663 |
-
|
664 |
-
if ( ! empty( $_POST['page_id'] ) ) {
|
665 |
-
$page_id = intval( $_POST['page_id'], 10 );
|
666 |
-
} else {
|
667 |
-
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
668 |
-
wp_send_json_error( $err_msg );
|
669 |
-
}
|
670 |
-
|
671 |
-
if ( ! empty( $_POST['widget_id'] ) ) {
|
672 |
-
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
673 |
-
} else {
|
674 |
-
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
675 |
-
wp_send_json_error( $err_msg );
|
676 |
-
}
|
677 |
-
|
678 |
-
$settings = HelperClass::eael_get_widget_settings( $page_id, $widget_id );
|
679 |
-
|
680 |
-
if ( empty( $settings ) ) {
|
681 |
-
wp_send_json_error( [ 'message' => __( 'Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite' ) ] );
|
682 |
-
}
|
683 |
-
|
684 |
-
$settings['eael_page_id'] = $page_id;
|
685 |
-
wp_parse_str( $_REQUEST['args'], $args );
|
686 |
-
|
687 |
-
$paginationNumber = absint( $_POST['number'] );
|
688 |
-
$paginationLimit = absint( $_POST['limit'] );
|
689 |
-
$pagination_Count = intval( $args['total_post'] );
|
690 |
-
$pagination_Paginationlist = ceil( $pagination_Count / $paginationLimit );
|
691 |
-
$last = ceil( $pagination_Paginationlist );
|
692 |
-
$paginationprev = $paginationNumber - 1;
|
693 |
-
$paginationnext = $paginationNumber + 1;
|
694 |
-
|
695 |
-
if( $paginationNumber>1 ){ $paginationprev; }
|
696 |
-
if( $paginationNumber < $last ){ $paginationnext; }
|
697 |
-
|
698 |
-
$adjacents = "2";
|
699 |
-
$next_label = sanitize_text_field( $settings['pagination_next_label'] );
|
700 |
-
$prev_label = sanitize_text_field( $settings['pagination_prev_label'] );
|
701 |
-
$settings['eael_widget_name'] = realpath( sanitize_file_name( $_REQUEST['template_name'] ) );
|
702 |
-
$setPagination = "";
|
703 |
-
|
704 |
-
if( $pagination_Paginationlist > 0 ){
|
705 |
-
|
706 |
-
$setPagination .="<ul class='page-numbers'>";
|
707 |
-
|
708 |
-
if( 1< $paginationNumber ){
|
709 |
-
$setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-pnumber='$paginationprev' >$prev_label</a></li>";
|
710 |
-
}
|
711 |
-
|
712 |
-
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
713 |
-
|
714 |
-
for( $pagination=1; $pagination<=$pagination_Paginationlist; $pagination++){
|
715 |
-
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
716 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
717 |
-
}
|
718 |
-
|
719 |
-
} else if ( $pagination_Paginationlist > 5 + ($adjacents * 2) ){
|
720 |
-
|
721 |
-
if( $paginationNumber < 1 + ($adjacents * 2) ){
|
722 |
-
for( $pagination=1; $pagination <=4 + ($adjacents * 2); $pagination++){
|
723 |
-
|
724 |
-
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
725 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
726 |
-
}
|
727 |
-
$setPagination .="<li class='pagitext dots'>...</li>";
|
728 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
729 |
-
|
730 |
-
} elseif( $pagination_Paginationlist - ($adjacents * 2) > $paginationNumber && $paginationNumber > ($adjacents * 2)) {
|
731 |
-
$active = '';
|
732 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,1);
|
733 |
-
$setPagination .="<li class='pagitext dots'>...</li>";
|
734 |
-
for ( $pagination = $paginationNumber - $adjacents; $pagination <= $paginationNumber + $adjacents; $pagination ++ ) {
|
735 |
-
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
736 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
737 |
-
}
|
738 |
-
|
739 |
-
$setPagination .="<li class='pagitext dots'>...</li>";
|
740 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$last);
|
741 |
-
|
742 |
-
} else {
|
743 |
-
$active = '';
|
744 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,1);
|
745 |
-
$setPagination .="<li class='pagitext dots'>...</li>";
|
746 |
-
for ($pagination = $last - (2 + ($adjacents * 2)); $pagination <= $last; $pagination++){
|
747 |
-
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
748 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
749 |
-
}
|
750 |
-
}
|
751 |
-
|
752 |
-
} else {
|
753 |
-
for( $pagination=1; $pagination<=$pagination_Paginationlist; $pagination++){
|
754 |
-
$active = ( $paginationNumber == $pagination ) ? 'current' : '';
|
755 |
-
$setPagination .= sprintf("<li><a href='javascript:void(0);' id='post' class='page-numbers %s' data-pnumber='%2\$d'>%2\$d</a></li>" ,$active ,$pagination);
|
756 |
-
}
|
757 |
-
|
758 |
-
}
|
759 |
-
|
760 |
-
if ($paginationNumber < $pagination_Paginationlist){
|
761 |
-
$setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-pnumber='$paginationnext' >$next_label</a></li>";
|
762 |
-
}
|
763 |
-
|
764 |
-
$setPagination .="</ul>";
|
765 |
-
}
|
766 |
|
767 |
-
printf('%1$s', $setPagination);
|
768 |
-
wp_die();
|
769 |
-
}
|
770 |
|
771 |
-
public function eael_product_add_to_cart () {
|
772 |
|
773 |
-
$ajax = wp_doing_ajax();
|
774 |
-
$cart_items = isset($_POST['cart_item_data'])?$_POST['cart_item_data']:[];
|
775 |
-
$variation = [];
|
776 |
-
if(!empty($cart_items)){
|
777 |
-
foreach ($cart_items as $key => $value) {
|
778 |
-
if (preg_match("/^attribute*/", $value['name'])) {
|
779 |
-
$variation[$value['name']] = sanitize_text_field( $value['value'] );
|
780 |
-
}
|
781 |
-
}
|
782 |
-
}
|
783 |
|
784 |
-
if(isset($_POST['product_data'])){
|
785 |
-
foreach ($_POST['product_data'] as $item){
|
786 |
-
$product_id = isset( $item['product_id'] ) ? sanitize_text_field( $item['product_id'] ) : 0;
|
787 |
-
$variation_id = isset( $item['variation_id'] ) ? sanitize_text_field( $item['variation_id'] ) : 0;
|
788 |
-
$quantity = isset( $item['quantity'] ) ? sanitize_text_field( $item['quantity'] ) : 0;
|
789 |
|
790 |
-
if ( $variation_id ) {
|
791 |
-
WC()->cart->add_to_cart( $product_id, $quantity, $variation_id, $variation );
|
792 |
-
} else {
|
793 |
-
WC()->cart->add_to_cart( $product_id, $quantity );
|
794 |
-
}
|
795 |
-
}
|
796 |
-
}
|
797 |
-
wp_send_json_success();
|
798 |
-
}
|
799 |
|
800 |
-
public function
|
801 |
add_filter( 'woocommerce_product_add_to_cart_text', function ( $default ) use ( $add_to_cart_text ) {
|
802 |
global $product;
|
803 |
switch ( $product->get_type() ) {
|
@@ -891,30 +441,7 @@ trait Helper
|
|
891 |
*
|
892 |
* @return string
|
893 |
*/
|
894 |
-
public function eael_product_quickview_popup(){
|
895 |
-
//check nonce
|
896 |
-
check_ajax_referer( 'essential-addons-elementor', 'security' );
|
897 |
-
$widget_id = sanitize_key( $_POST[ 'widget_id' ] );
|
898 |
-
$product_id = absint( $_POST[ 'product_id' ] );
|
899 |
-
$page_id = absint( $_POST[ 'page_id' ] );
|
900 |
-
|
901 |
-
if ( $widget_id == '' && $product_id == '' && $page_id == '' ) {
|
902 |
-
wp_send_json_error();
|
903 |
-
}
|
904 |
|
905 |
-
global $post, $product;
|
906 |
-
$product = wc_get_product( $product_id );
|
907 |
-
$post = get_post( $product_id );
|
908 |
-
setup_postdata( $post );
|
909 |
-
|
910 |
-
$settings = $this->eael_get_widget_settings( $page_id, $widget_id );
|
911 |
-
ob_start();
|
912 |
-
HelperClass::eael_product_quick_view( $product, $settings, $widget_id );
|
913 |
-
$data = ob_get_clean();
|
914 |
-
wp_reset_postdata();
|
915 |
-
|
916 |
-
wp_send_json_success( $data );
|
917 |
-
}
|
918 |
|
919 |
/**
|
920 |
* return file path which are store in theme Template directory
|
@@ -946,114 +473,6 @@ trait Helper
|
|
946 |
}
|
947 |
}
|
948 |
|
949 |
-
|
950 |
-
/**
|
951 |
-
* Retrieve product quick view data
|
952 |
-
*
|
953 |
-
* @return string
|
954 |
-
*/
|
955 |
-
public function ajax_eael_product_gallery(){
|
956 |
-
|
957 |
-
$ajax = wp_doing_ajax();
|
958 |
-
|
959 |
-
wp_parse_str( $_POST['args'], $args );
|
960 |
-
|
961 |
-
if ( empty( $_POST['nonce'] ) ) {
|
962 |
-
$err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
|
963 |
-
if ( $ajax ) {
|
964 |
-
wp_send_json_error( $err_msg );
|
965 |
-
}
|
966 |
-
return false;
|
967 |
-
}
|
968 |
-
|
969 |
-
if ( ! wp_verify_nonce( $_POST['nonce'], 'eael_product_gallery' ) ) {
|
970 |
-
$err_msg = __( 'Security token did not match', 'essential-addons-for-elementor-lite' );
|
971 |
-
if ( $ajax ) {
|
972 |
-
wp_send_json_error( $err_msg );
|
973 |
-
}
|
974 |
-
return false;
|
975 |
-
}
|
976 |
-
|
977 |
-
if ( ! empty( $_POST['page_id'] ) ) {
|
978 |
-
$page_id = intval( $_POST['page_id'], 10 );
|
979 |
-
} else {
|
980 |
-
$err_msg = __( 'Page ID is missing', 'essential-addons-for-elementor-lite' );
|
981 |
-
if ( $ajax ) {
|
982 |
-
wp_send_json_error( $err_msg );
|
983 |
-
}
|
984 |
-
return false;
|
985 |
-
}
|
986 |
-
|
987 |
-
if ( ! empty( $_POST['widget_id'] ) ) {
|
988 |
-
$widget_id = sanitize_text_field( $_POST['widget_id'] );
|
989 |
-
} else {
|
990 |
-
$err_msg = __( 'Widget ID is missing', 'essential-addons-for-elementor-lite' );
|
991 |
-
if ( $ajax ) {
|
992 |
-
wp_send_json_error( $err_msg );
|
993 |
-
}
|
994 |
-
return false;
|
995 |
-
}
|
996 |
-
|
997 |
-
$settings = HelperClass::eael_get_widget_settings($page_id, $widget_id);
|
998 |
-
if (empty($settings)) {
|
999 |
-
wp_send_json_error(['message' => __('Widget settings are not found. Did you save the widget before using load more??', 'essential-addons-for-elementor-lite')]);
|
1000 |
-
}
|
1001 |
-
|
1002 |
-
if ( $widget_id == '' && $page_id == '' ) {
|
1003 |
-
wp_send_json_error();
|
1004 |
-
}
|
1005 |
-
|
1006 |
-
$settings['eael_widget_id'] = $widget_id;
|
1007 |
-
$settings['eael_page_id'] = $page_id;
|
1008 |
-
$args[ 'offset' ] = (int)$args[ 'offset' ] + ( ( (int)$_REQUEST[ 'page' ] - 1 ) * (int)$args[ 'posts_per_page' ] );
|
1009 |
-
|
1010 |
-
if ( isset( $_REQUEST[ 'taxonomy' ] ) && isset($_REQUEST[ 'taxonomy' ][ 'taxonomy' ]) && $_REQUEST[ 'taxonomy' ][ 'taxonomy' ] != 'all' ) {
|
1011 |
-
$args[ 'tax_query' ] = [
|
1012 |
-
$this->sanitize_taxonomy_data( $_REQUEST[ 'taxonomy' ] ),
|
1013 |
-
];
|
1014 |
-
}
|
1015 |
-
|
1016 |
-
$template_info = $this->eael_sanitize_template_param( $_REQUEST['template_info'] );
|
1017 |
-
|
1018 |
-
if ( $template_info ) {
|
1019 |
-
|
1020 |
-
if ( $template_info[ 'dir' ] === 'theme' ) {
|
1021 |
-
$dir_path = $this->retrive_theme_path();
|
1022 |
-
} else if($template_info[ 'dir' ] === 'pro') {
|
1023 |
-
$dir_path = sprintf("%sincludes",EAEL_PRO_PLUGIN_PATH);
|
1024 |
-
} else {
|
1025 |
-
$dir_path = sprintf("%sincludes",EAEL_PLUGIN_PATH);
|
1026 |
-
}
|
1027 |
-
|
1028 |
-
$file_path = realpath( sprintf(
|
1029 |
-
'%s/Template/%s/%s',
|
1030 |
-
$dir_path,
|
1031 |
-
$template_info['name'],
|
1032 |
-
$template_info['file_name']
|
1033 |
-
) );
|
1034 |
-
|
1035 |
-
if ( ! $file_path || 0 !== strpos( $file_path, realpath( $dir_path ) ) ) {
|
1036 |
-
wp_send_json_error( 'Invalid template', 'invalid_template', 400 );
|
1037 |
-
}
|
1038 |
-
|
1039 |
-
$html = '';
|
1040 |
-
if ( $file_path ) {
|
1041 |
-
$query = new \WP_Query( $args );
|
1042 |
-
|
1043 |
-
if ( $query->have_posts() ) {
|
1044 |
-
|
1045 |
-
while ( $query->have_posts() ) {
|
1046 |
-
$query->the_post();
|
1047 |
-
$html .= HelperClass::include_with_variable( $file_path, [ 'settings' => $settings ] );
|
1048 |
-
}
|
1049 |
-
printf( '%1$s', $html );
|
1050 |
-
wp_reset_postdata();
|
1051 |
-
}
|
1052 |
-
}
|
1053 |
-
}
|
1054 |
-
wp_die();
|
1055 |
-
}
|
1056 |
-
|
1057 |
/**
|
1058 |
* eael_wpml_template_translation
|
1059 |
* @param $id
|
13 |
trait Helper
|
14 |
{
|
15 |
use Template_Query;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
/**
|
18 |
* Woo Checkout
|
19 |
*/
|
20 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
/** Filter to add plugins to the TOC list.
|
23 |
*
|
227 |
return $html;
|
228 |
}
|
229 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
/**
|
231 |
* It returns the widget settings provided the page id and widget id
|
232 |
* @param int $page_id Page ID where the widget is used
|
341 |
return $html;
|
342 |
}
|
343 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
|
|
|
|
|
|
|
345 |
|
|
|
346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
|
|
|
|
|
|
|
|
|
|
|
348 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
349 |
|
350 |
+
public function change_add_woo_checkout_update_order_reviewto_cart_text( $add_to_cart_text ) {
|
351 |
add_filter( 'woocommerce_product_add_to_cart_text', function ( $default ) use ( $add_to_cart_text ) {
|
352 |
global $product;
|
353 |
switch ( $product->get_type() ) {
|
441 |
*
|
442 |
* @return string
|
443 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
|
446 |
/**
|
447 |
* return file path which are store in theme Template directory
|
473 |
}
|
474 |
}
|
475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
/**
|
477 |
* eael_wpml_template_translation
|
478 |
* @param $id
|
includes/Traits/Library.php
CHANGED
@@ -153,27 +153,7 @@ trait Library
|
|
153 |
*
|
154 |
* @since 3.0.0
|
155 |
*/
|
156 |
-
public function clear_cache_files()
|
157 |
-
{
|
158 |
-
check_ajax_referer('essential-addons-elementor', 'security');
|
159 |
-
|
160 |
-
if(!current_user_can('manage_options')){
|
161 |
-
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
162 |
-
}
|
163 |
-
|
164 |
-
if (isset($_REQUEST['posts'])) {
|
165 |
-
if (!empty($_POST['posts'])) {
|
166 |
-
foreach (json_decode($_POST['posts']) as $post) {
|
167 |
-
$this->remove_files('post-' . $post);
|
168 |
-
}
|
169 |
-
}
|
170 |
-
} else {
|
171 |
-
// clear cache files
|
172 |
-
$this->empty_dir(EAEL_ASSET_PATH);
|
173 |
-
}
|
174 |
|
175 |
-
wp_send_json(true);
|
176 |
-
}
|
177 |
|
178 |
/**
|
179 |
* Check if wp running in background
|
153 |
*
|
154 |
* @since 3.0.0
|
155 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
|
|
|
|
|
157 |
|
158 |
/**
|
159 |
* Check if wp running in background
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -17,11 +17,11 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
-
#: ../includes/Classes/Helper.php:205, ../includes/Elements/Adv_Accordion.php:325, ../includes/Elements/Adv_Tabs.php:298, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:
|
21 |
msgid "Go Premium for More Features"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: ../includes/Classes/Helper.php:212, ../includes/Elements/Adv_Accordion.php:332, ../includes/Elements/Adv_Tabs.php:305, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:
|
25 |
msgid "Unlock more possibilities"
|
26 |
msgstr ""
|
27 |
|
@@ -65,7 +65,7 @@ msgstr ""
|
|
65 |
msgid "Install Now!"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:188, ../includes/Classes/WPDeveloper_Setup_Wizard.php:517, ../includes/Classes/WPDeveloper_Setup_Wizard.php:543, ../includes/Traits/
|
69 |
msgid "you are not allowed to do this action"
|
70 |
msgstr ""
|
71 |
|
@@ -125,7 +125,7 @@ msgstr ""
|
|
125 |
msgid "Next"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:
|
129 |
msgid "Right"
|
130 |
msgstr ""
|
131 |
|
@@ -169,7 +169,7 @@ msgid ""
|
|
169 |
" dynamic elements will be activated in this option."
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:206, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Contact_Form_7.php:1190, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/Formstack.php:1400, ../includes/Elements/GravityForms.php:
|
173 |
msgid "Custom"
|
174 |
msgstr ""
|
175 |
|
@@ -201,7 +201,7 @@ msgstr ""
|
|
201 |
msgid "Upgrade to PRO"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:324, ../includes/Traits/Helper.php:
|
205 |
msgid "Install Templately"
|
206 |
msgstr ""
|
207 |
|
@@ -384,7 +384,7 @@ msgstr ""
|
|
384 |
msgid "Post Grid"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:665, ../includes/Elements/Post_Timeline.php:
|
388 |
msgid "Post Timeline"
|
389 |
msgstr ""
|
390 |
|
@@ -536,7 +536,7 @@ msgstr ""
|
|
536 |
msgid "Woo Product Gallery"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:852, ../includes/Elements/Adv_Accordion.php:116, ../includes/Elements/Login_Register.php:3029, ../includes/Elements/Woo_Product_Carousel.php:2554, ../includes/Traits/Elements.php:
|
540 |
msgid "Toggle"
|
541 |
msgstr ""
|
542 |
|
@@ -544,11 +544,11 @@ msgstr ""
|
|
544 |
msgid "Advanced Google Map"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:862, ../includes/Traits/Elements.php:
|
548 |
msgid "Dynamic Gallery"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:867, ../includes/Traits/Elements.php:
|
552 |
msgid "Image Hotspots"
|
553 |
msgstr ""
|
554 |
|
@@ -556,11 +556,11 @@ msgstr ""
|
|
556 |
msgid "Lightbox and Modal"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:877, ../includes/Traits/Elements.php:
|
560 |
msgid "Mailchimp"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:882, ../includes/Traits/Elements.php:
|
564 |
msgid "Instagram Feed"
|
565 |
msgstr ""
|
566 |
|
@@ -576,19 +576,19 @@ msgstr ""
|
|
576 |
msgid "Remove"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: ../includes/Controls/Select2.php:30, ../includes/Elements/Adv_Tabs.php:179, ../includes/Elements/Adv_Tabs.php:206, ../includes/Elements/Data_Table.php:156, ../includes/Elements/Data_Table.php:188, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:167, ../includes/Elements/Filterable_Gallery.php:564, ../includes/Elements/Flip_Box.php:205, ../includes/Elements/Flip_Box.php:436, ../includes/Elements/Info_Box.php:111, ../includes/Elements/Post_Grid.php:120, ../includes/Elements/Tooltip.php:82, ../includes/Elements/Tooltip.php:177, ../includes/Elements/Woo_Cart.php:196, ../includes/Traits/Controls.php:578, ../includes/Traits/Controls.php:739, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71
|
580 |
msgid "Image"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../includes/Controls/Select2.php:31, ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1146, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:
|
584 |
msgid "Title"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../includes/Controls/Select2.php:32, ../includes/Elements/GravityForms.php:
|
588 |
msgid "Price"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../includes/Controls/Select2.php:33, ../includes/Elements/Product_Grid.php:
|
592 |
msgid "Quantity"
|
593 |
msgstr ""
|
594 |
|
@@ -656,11 +656,11 @@ msgstr ""
|
|
656 |
msgid "Sort"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Betterdocs_Search_Form.php:155, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:2292, ../includes/Elements/FluentForm.php:203, ../includes/Elements/FluentForm.php:891, ../includes/Elements/Formstack.php:244, ../includes/Elements/Formstack.php:1090, ../includes/Elements/GravityForms.php:231, ../includes/Elements/GravityForms.php:
|
660 |
msgid "Placeholder"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: ../includes/Elements/Advanced_Data_Table.php:180, ../includes/Elements/Advanced_Data_Table.php:1069, ../includes/Elements/Facebook_Feed.php:391, ../includes/Elements/FluentForm.php:1731, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:
|
664 |
msgid "Pagination"
|
665 |
msgstr ""
|
666 |
|
@@ -668,7 +668,7 @@ msgstr ""
|
|
668 |
msgid "Pagination Type"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: ../includes/Elements/Advanced_Data_Table.php:193, ../includes/Elements/Advanced_Data_Table.php:1345, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Flip_Box.php:657, ../includes/Elements/FluentForm.php:1965, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:350, ../includes/Elements/Interactive_Circle.php:84, ../includes/Elements/Interactive_Circle.php:134, ../includes/Elements/Pricing_Table.php:502, ../includes/Elements/Pricing_Table.php:1835, ../includes/Elements/Product_Grid.php:
|
672 |
msgid "Button"
|
673 |
msgstr ""
|
674 |
|
@@ -716,19 +716,19 @@ msgstr ""
|
|
716 |
msgid "Table"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: ../includes/Elements/Advanced_Data_Table.php:324, ../includes/Elements/Advanced_Data_Table.php:885, ../includes/Elements/Advanced_Data_Table.php:1080, ../includes/Elements/Betterdocs_Search_Form.php:320, ../includes/Elements/Caldera_Forms.php:1159, ../includes/Elements/Caldera_Forms.php:1173, ../includes/Elements/Contact_Form_7.php:1185, ../includes/Elements/Contact_Form_7.php:1199, ../includes/Elements/Creative_Button.php:467, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:1150, ../includes/Elements/Dual_Color_Header.php:749, ../includes/Elements/Dual_Color_Header.php:829, ../includes/Elements/Filterable_Gallery.php:2157, ../includes/Elements/Filterable_Gallery.php:2315, ../includes/Elements/FluentForm.php:1509, ../includes/Elements/FluentForm.php:1523, ../includes/Elements/Formstack.php:1395, ../includes/Elements/Formstack.php:1409, ../includes/Elements/GravityForms.php:
|
720 |
msgid "Width"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:384, ../includes/Elements/Adv_Accordion.php:573, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:694, ../includes/Elements/Adv_Accordion.php:777, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Accordion.php:945, ../includes/Elements/Adv_Accordion.php:991, ../includes/Elements/Adv_Tabs.php:360, ../includes/Elements/Adv_Tabs.php:554, ../includes/Elements/Adv_Tabs.php:621, ../includes/Elements/Adv_Tabs.php:690, ../includes/Elements/Adv_Tabs.php:784, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:
|
724 |
msgid "Border"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Accordion.php:580, ../includes/Elements/Adv_Accordion.php:640, ../includes/Elements/Adv_Accordion.php:701, ../includes/Elements/Adv_Tabs.php:368, ../includes/Elements/Adv_Tabs.php:561, ../includes/Elements/Adv_Tabs.php:628, ../includes/Elements/Adv_Tabs.php:697, ../includes/Elements/Adv_Tabs.php:791, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:206, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:
|
728 |
msgid "Border Radius"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: ../includes/Elements/Advanced_Data_Table.php:400, ../includes/Elements/Advanced_Data_Table.php:1463, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:697, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Event_Calendar.php:1709, ../includes/Elements/Product_Grid.php:
|
732 |
msgid "Box Shadow"
|
733 |
msgstr ""
|
734 |
|
@@ -736,7 +736,7 @@ msgstr ""
|
|
736 |
msgid "Head"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:739, ../includes/Elements/Event_Calendar.php:769, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1058, ../includes/Elements/Event_Calendar.php:1092, ../includes/Elements/Event_Calendar.php:1335, ../includes/Elements/Event_Calendar.php:1398, ../includes/Elements/Event_Calendar.php:1427, ../includes/Elements/Event_Calendar.php:1495, ../includes/Elements/Event_Calendar.php:1653, ../includes/Elements/Filterable_Gallery.php:1965, ../includes/Elements/Filterable_Gallery.php:2012, ../includes/Elements/Filterable_Gallery.php:2048, ../includes/Elements/Filterable_Gallery.php:2105, ../includes/Elements/Filterable_Gallery.php:2399, ../includes/Elements/Filterable_Gallery.php:2559, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:
|
740 |
msgid "Typography"
|
741 |
msgstr ""
|
742 |
|
@@ -744,19 +744,19 @@ msgstr ""
|
|
744 |
msgid "Text Alignment"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:
|
748 |
msgid "Left"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:
|
752 |
msgid "Center"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:549, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:736, ../includes/Elements/Adv_Tabs.php:527, ../includes/Elements/Adv_Tabs.php:594, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:
|
756 |
msgid "Text Color"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:885, ../includes/Elements/Adv_Accordion.php:931, ../includes/Elements/Adv_Accordion.php:977, ../includes/Elements/Adv_Tabs.php:508, ../includes/Elements/Adv_Tabs.php:724, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:
|
760 |
msgid "Background Color"
|
761 |
msgstr ""
|
762 |
|
@@ -764,7 +764,7 @@ msgstr ""
|
|
764 |
msgid "Cell Border"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:514, ../includes/Elements/Adv_Accordion.php:754, ../includes/Elements/Adv_Tabs.php:337, ../includes/Elements/Adv_Tabs.php:482, ../includes/Elements/Adv_Tabs.php:761, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:440, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:
|
768 |
msgid "Padding"
|
769 |
msgstr ""
|
770 |
|
@@ -784,7 +784,7 @@ msgstr ""
|
|
784 |
msgid "Highlight"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../includes/Elements/Advanced_Data_Table.php:651, ../includes/Elements/Adv_Tabs.php:171, ../includes/Elements/Countdown.php:402, ../includes/Elements/Data_Table.php:148, ../includes/Elements/Filterable_Gallery.php:189, ../includes/Elements/Filterable_Gallery.php:229, ../includes/Elements/Flip_Box.php:204, ../includes/Elements/Flip_Box.php:435, ../includes/Elements/Flip_Box.php:654, ../includes/Elements/GravityForms.php:
|
788 |
msgid "None"
|
789 |
msgstr ""
|
790 |
|
@@ -812,7 +812,7 @@ msgstr ""
|
|
812 |
msgid "Odd Row"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../includes/Elements/Advanced_Data_Table.php:913, ../includes/Elements/Dual_Color_Header.php:775, ../includes/Elements/Dual_Color_Header.php:855, ../includes/Elements/Flip_Box.php:123, ../includes/Elements/FluentForm.php:1317, ../includes/Elements/FluentForm.php:1402, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/Formstack.php:1661, ../includes/Elements/Image_Accordion.php:304, ../includes/Elements/Login_Register.php:2069, ../includes/Elements/Progress_Bar.php:384, ../includes/Elements/Progress_Bar.php:436, ../includes/Elements/Sticky_Video.php:460, ../includes/Elements/Team_Member.php:318, ../includes/Elements/Twitter_Feed.php:831, ../includes/Elements/Woo_Product_Carousel.php:1322, ../includes/Elements/Woo_Product_Carousel.php:2155, ../includes/Elements/Woo_Product_Carousel.php:2355, ../includes/Elements/Woo_Product_Carousel.php:2443, ../includes/Extensions/Reading_Progress.php:128, ../includes/Extensions/Scroll_to_Top.php:266, ../includes/Extensions/Table_of_Content.php:283
|
816 |
msgid "Height"
|
817 |
msgstr ""
|
818 |
|
@@ -820,23 +820,23 @@ msgstr ""
|
|
820 |
msgid "Margin Bottom"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:
|
824 |
msgid "Alignment"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:525, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Tabs.php:348, ../includes/Elements/Adv_Tabs.php:493, ../includes/Elements/Adv_Tabs.php:772, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:
|
828 |
msgid "Margin"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:536, ../includes/Elements/Adv_Accordion.php:864, ../includes/Elements/Adv_Tabs.php:504, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:398, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:
|
832 |
msgid "Normal"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:594, ../includes/Elements/Adv_Accordion.php:911, ../includes/Elements/Adv_Tabs.php:571, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:
|
836 |
msgid "Hover"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:246, ../includes/Elements/Betterdocs_Search_Form.php:283, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:609, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Cta_Box.php:
|
840 |
msgid "Color"
|
841 |
msgstr ""
|
842 |
|
@@ -860,39 +860,39 @@ msgstr ""
|
|
860 |
msgid "Select Accordion Tab Title Tag"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../includes/Elements/Adv_Accordion.php:127, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:
|
864 |
msgid "H1"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../includes/Elements/Adv_Accordion.php:128, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:
|
868 |
msgid "H2"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../includes/Elements/Adv_Accordion.php:129, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:
|
872 |
msgid "H3"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../includes/Elements/Adv_Accordion.php:130, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:
|
876 |
msgid "H4"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../includes/Elements/Adv_Accordion.php:131, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:
|
880 |
msgid "H5"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:
|
884 |
msgid "H6"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:
|
888 |
msgid "Span"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:
|
892 |
msgid "P"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:
|
896 |
msgid "Div"
|
897 |
msgstr ""
|
898 |
|
@@ -912,7 +912,7 @@ msgstr ""
|
|
912 |
msgid "Toggle Speed (ms)"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../includes/Elements/Adv_Accordion.php:195, ../includes/Elements/Countdown.php:142, ../includes/Elements/Cta_Box.php:
|
916 |
msgid "Content Settings"
|
917 |
msgstr ""
|
918 |
|
@@ -924,7 +924,7 @@ msgstr ""
|
|
924 |
msgid "Enable Tab Icon"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../includes/Elements/Adv_Accordion.php:224, ../includes/Elements/Adv_Tabs.php:175, ../includes/Elements/Adv_Tabs.php:190, ../includes/Elements/Betterdocs_Category_Box.php:407, ../includes/Elements/Betterdocs_Category_Box.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:1065, ../includes/Elements/Betterdocs_Category_Grid.php:1074, ../includes/Elements/Betterdocs_Category_Grid.php:1206, ../includes/Elements/Betterdocs_Category_Grid.php:1313, ../includes/Elements/Creative_Button.php:131, ../includes/Elements/Cta_Box.php:
|
928 |
msgid "Icon"
|
929 |
msgstr ""
|
930 |
|
@@ -932,19 +932,19 @@ msgstr ""
|
|
932 |
msgid "Tab Title"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: ../includes/Elements/Adv_Accordion.php:252, ../includes/Elements/Adv_Tabs.php:231, ../includes/Elements/Cta_Box.php:
|
936 |
msgid "Content Type"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: ../includes/Elements/Adv_Accordion.php:255, ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Adv_Tabs.php:717, ../includes/Elements/Cta_Box.php:
|
940 |
msgid "Content"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../includes/Elements/Adv_Accordion.php:256, ../includes/Elements/Adv_Tabs.php:235, ../includes/Elements/Countdown.php:405, ../includes/Elements/Cta_Box.php:
|
944 |
msgid "Saved Templates"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../includes/Elements/Adv_Accordion.php:266, ../includes/Elements/Adv_Tabs.php:244, ../includes/Elements/Countdown.php:452, ../includes/Elements/Cta_Box.php:
|
948 |
msgid "Choose Template"
|
949 |
msgstr ""
|
950 |
|
@@ -984,7 +984,7 @@ msgstr ""
|
|
984 |
msgid "Tab Style"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: ../includes/Elements/Adv_Accordion.php:428, ../includes/Elements/Adv_Accordion.php:805, ../includes/Elements/Adv_Tabs.php:433, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Data_Table.php:711, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1523, ../includes/Elements/Feature_List.php:575, ../includes/Elements/Filterable_Gallery.php:1775, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2574, ../includes/Elements/Flip_Box.php:967, ../includes/Elements/Flip_Box.php:1080, ../includes/Elements/Info_Box.php:936, ../includes/Elements/Info_Box.php:1178, ../includes/Elements/Interactive_Circle.php:438, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Pricing_Table.php:1237, ../includes/Elements/Pricing_Table.php:1696, ../includes/Elements/Pricing_Table.php:1867, ../includes/Elements/Product_Grid.php:
|
988 |
msgid "Icon Size"
|
989 |
msgstr ""
|
990 |
|
@@ -996,15 +996,15 @@ msgstr ""
|
|
996 |
msgid "Distance"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../includes/Elements/Adv_Accordion.php:560, ../includes/Elements/Adv_Accordion.php:620, ../includes/Elements/Adv_Accordion.php:681, ../includes/Elements/Adv_Tabs.php:538, ../includes/Elements/Adv_Tabs.php:605, ../includes/Elements/Adv_Tabs.php:672, ../includes/Elements/Data_Table.php:1087, ../includes/Elements/Data_Table.php:1105, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:1474, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1004, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Interactive_Circle.php:487, ../includes/Elements/Interactive_Circle.php:549, ../includes/Elements/Interactive_Circle.php:615, ../includes/Elements/Post_Grid.php:986, ../includes/Elements/Pricing_Table.php:338, ../includes/Elements/Pricing_Table.php:1760, ../includes/Elements/Simple_Menu.php:305, ../includes/Elements/Team_Member.php:719, ../includes/Elements/Twitter_Feed.php:631, ../includes/Elements/Woo_Cart.php:237, ../includes/Elements/Woo_Cart.php:809, ../includes/Elements/Woo_Cart.php:1931, ../includes/Elements/Woo_Cart.php:2291, ../includes/Elements/Woo_Cart.php:2374, ../includes/Elements/Woo_Cart.php:2461, ../includes/Elements/Woo_Checkout.php:1198, ../includes/Elements/Woo_Checkout.php:1536, ../includes/Extensions/Scroll_to_Top.php:412
|
1000 |
msgid "Icon Color"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:956, ../includes/Elements/Adv_Tabs.php:638, ../includes/Elements/Event_Calendar.php:901, ../includes/Elements/Filterable_Gallery.php:1021, ../includes/Elements/Interactive_Circle.php:586, ../includes/Elements/Product_Grid.php:
|
1004 |
msgid "Active"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: ../includes/Elements/Adv_Accordion.php:719, ../includes/Elements/Countdown.php:1100, ../includes/Elements/Cta_Box.php:
|
1008 |
msgid "Content Style"
|
1009 |
msgstr ""
|
1010 |
|
@@ -1108,11 +1108,11 @@ msgstr ""
|
|
1108 |
msgid "Caret Size"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: ../includes/Elements/Adv_Tabs.php:888, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Data_Table.php:87, ../includes/Elements/Data_Table.php:1141, ../includes/Elements/Facebook_Feed.php:403, ../includes/Elements/Filterable_Gallery.php:288, ../includes/Elements/Filterable_Gallery.php:433, ../includes/Elements/Filterable_Gallery.php:482, ../includes/Elements/Filterable_Gallery.php:507, ../includes/Elements/Filterable_Gallery.php:532, ../includes/Elements/Filterable_Gallery.php:592, ../includes/Elements/Filterable_Gallery.php:607, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:932, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:
|
1112 |
msgid "Yes"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: ../includes/Elements/Adv_Tabs.php:889, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:195, ../includes/Elements/Content_Ticker.php:228, ../includes/Elements/Content_Ticker.php:243, ../includes/Elements/Content_Ticker.php:278, ../includes/Elements/Cta_Box.php:
|
1116 |
msgid "No"
|
1117 |
msgstr ""
|
1118 |
|
@@ -1132,11 +1132,11 @@ msgstr ""
|
|
1132 |
msgid "Show Icon"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:
|
1136 |
msgid "Show"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:
|
1140 |
msgid "Hide"
|
1141 |
msgstr ""
|
1142 |
|
@@ -1144,7 +1144,7 @@ msgstr ""
|
|
1144 |
msgid "Show Title"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:
|
1148 |
msgid "Select Tag"
|
1149 |
msgstr ""
|
1150 |
|
@@ -1184,11 +1184,11 @@ msgstr ""
|
|
1184 |
msgid "Area"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:423, ../includes/Elements/Betterdocs_Category_Box.php:458, ../includes/Elements/Betterdocs_Category_Box.php:815, ../includes/Elements/Betterdocs_Category_Box.php:922, ../includes/Elements/Betterdocs_Category_Grid.php:539, ../includes/Elements/Betterdocs_Category_Grid.php:777, ../includes/Elements/Betterdocs_Category_Grid.php:1097, ../includes/Elements/Betterdocs_Category_Grid.php:1250, ../includes/Elements/Betterdocs_Search_Form.php:257, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:555, ../includes/Elements/Filterable_Gallery.php:716, ../includes/Elements/FluentForm.php:941, ../includes/Elements/Formstack.php:1137, ../includes/Elements/Formstack.php:1290, ../includes/Elements/GravityForms.php:
|
1188 |
msgid "Size"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:527, ../includes/Elements/Betterdocs_Category_Box.php:695, ../includes/Elements/Betterdocs_Category_Box.php:942, ../includes/Elements/Betterdocs_Category_Grid.php:1116, ../includes/Elements/Betterdocs_Category_Grid.php:1194, ../includes/Elements/Caldera_Forms.php:753, ../includes/Elements/Caldera_Forms.php:870, ../includes/Elements/Contact_Form_7.php:575, ../includes/Elements/Contact_Form_7.php:860, ../includes/Elements/Contact_Form_7.php:1486, ../includes/Elements/Feature_List.php:656, ../includes/Elements/Filterable_Gallery.php:2420, ../includes/Elements/FluentForm.php:802, ../includes/Elements/FluentForm.php:1800, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:
|
1192 |
msgid "Spacing"
|
1193 |
msgstr ""
|
1194 |
|
@@ -1212,7 +1212,7 @@ msgstr ""
|
|
1212 |
msgid "File Not Found"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:1185, ../includes/Elements/Betterdocs_Category_Box.php:1150, ../includes/Elements/Betterdocs_Category_Grid.php:1687, ../includes/Elements/Betterdocs_Category_Grid.php:1654, ../includes/Elements/Post_Grid.php:1102, ../includes/Elements/Post_Timeline.php:
|
1216 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1217 |
msgstr ""
|
1218 |
|
@@ -1248,7 +1248,7 @@ msgstr ""
|
|
1248 |
msgid "Show Button"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/
|
1252 |
msgid "Button Text"
|
1253 |
msgstr ""
|
1254 |
|
@@ -1272,7 +1272,7 @@ msgstr ""
|
|
1272 |
msgid "List"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1229, ../includes/Elements/Filterable_Gallery.php:1609, ../includes/Elements/Filterable_Gallery.php:2375, ../includes/Elements/Pricing_Table.php:1794, ../includes/Elements/Product_Grid.php:
|
1276 |
msgid "Hover Color"
|
1277 |
msgstr ""
|
1278 |
|
@@ -1336,7 +1336,7 @@ msgstr ""
|
|
1336 |
msgid "Close Icon"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:
|
1340 |
msgid "Border Color"
|
1341 |
msgstr ""
|
1342 |
|
@@ -1376,19 +1376,19 @@ msgstr ""
|
|
1376 |
msgid "Custom Title & Description"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: ../includes/Elements/Caldera_Forms.php:134, ../includes/Elements/Caldera_Forms.php:319, ../includes/Elements/Contact_Form_7.php:187, ../includes/Elements/Contact_Form_7.php:496, ../includes/Elements/Event_Calendar.php:265, ../includes/Elements/Feature_List.php:788, ../includes/Elements/FluentForm.php:176, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:1182, ../includes/Elements/Formstack.php:217, ../includes/Elements/Formstack.php:521, ../includes/Elements/Formstack.php:704, ../includes/Elements/GravityForms.php:173, ../includes/Elements/GravityForms.php:204, ../includes/Elements/GravityForms.php:
|
1380 |
msgid "Description"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: ../includes/Elements/Caldera_Forms.php:149, ../includes/Elements/Caldera_Forms.php:515, ../includes/Elements/Contact_Form_7.php:202, ../includes/Elements/Contact_Form_7.php:805, ../includes/Elements/FluentForm.php:191, ../includes/Elements/FluentForm.php:562, ../includes/Elements/Formstack.php:232, ../includes/Elements/Formstack.php:789, ../includes/Elements/GravityForms.php:219, ../includes/Elements/GravityForms.php:
|
1384 |
msgid "Labels"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: ../includes/Elements/Caldera_Forms.php:180, ../includes/Elements/Caldera_Forms.php:1412, ../includes/Elements/Contact_Form_7.php:220, ../includes/Elements/Contact_Form_7.php:1381, ../includes/Elements/FluentForm.php:221, ../includes/Elements/FluentForm.php:2148, ../includes/Elements/Formstack.php:262, ../includes/Elements/Formstack.php:1903, ../includes/Elements/GravityForms.php:261, ../includes/Elements/GravityForms.php:
|
1388 |
msgid "Errors"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: ../includes/Elements/Caldera_Forms.php:187, ../includes/Elements/Caldera_Forms.php:1420, ../includes/Elements/Contact_Form_7.php:227, ../includes/Elements/Contact_Form_7.php:1389, ../includes/Elements/FluentForm.php:228, ../includes/Elements/FluentForm.php:2156, ../includes/Elements/Formstack.php:269, ../includes/Elements/Formstack.php:1911, ../includes/Elements/GravityForms.php:268, ../includes/Elements/GravityForms.php:
|
1392 |
msgid "Error Messages"
|
1393 |
msgstr ""
|
1394 |
|
@@ -1412,7 +1412,7 @@ msgstr ""
|
|
1412 |
msgid "Form Alignment"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:
|
1416 |
msgid "Default"
|
1417 |
msgstr ""
|
1418 |
|
@@ -1428,35 +1428,35 @@ msgstr ""
|
|
1428 |
msgid "Form Padding"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: ../includes/Elements/Caldera_Forms.php:549, ../includes/Elements/Contact_Form_7.php:533, ../includes/Elements/FluentForm.php:596, ../includes/Elements/Formstack.php:823, ../includes/Elements/GravityForms.php:
|
1432 |
msgid "Input & Textarea"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: ../includes/Elements/Caldera_Forms.php:640, ../includes/Elements/Contact_Form_7.php:610, ../includes/Elements/FluentForm.php:689, ../includes/Elements/Formstack.php:888, ../includes/Elements/GravityForms.php:
|
1436 |
msgid "Text Indent"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: ../includes/Elements/Caldera_Forms.php:665, ../includes/Elements/Contact_Form_7.php:634, ../includes/Elements/FluentForm.php:714, ../includes/Elements/Formstack.php:913, ../includes/Elements/GravityForms.php:
|
1440 |
msgid "Input Width"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: ../includes/Elements/Caldera_Forms.php:684, ../includes/Elements/Contact_Form_7.php:653, ../includes/Elements/FluentForm.php:733, ../includes/Elements/Formstack.php:932, ../includes/Elements/GravityForms.php:
|
1444 |
msgid "Input Height"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: ../includes/Elements/Caldera_Forms.php:703, ../includes/Elements/Contact_Form_7.php:672, ../includes/Elements/FluentForm.php:752, ../includes/Elements/Formstack.php:951, ../includes/Elements/GravityForms.php:
|
1448 |
msgid "Textarea Width"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: ../includes/Elements/Caldera_Forms.php:722, ../includes/Elements/Contact_Form_7.php:691, ../includes/Elements/FluentForm.php:771, ../includes/Elements/Formstack.php:970, ../includes/Elements/GravityForms.php:
|
1452 |
msgid "Textarea Height"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: ../includes/Elements/Caldera_Forms.php:793, ../includes/Elements/Contact_Form_7.php:756, ../includes/Elements/FluentForm.php:842, ../includes/Elements/Formstack.php:1041, ../includes/Elements/GravityForms.php:
|
1456 |
msgid "Focus"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: ../includes/Elements/Caldera_Forms.php:842, ../includes/Elements/Formstack.php:577, ../includes/Elements/GravityForms.php:
|
1460 |
msgid "Field Description"
|
1461 |
msgstr ""
|
1462 |
|
@@ -1464,35 +1464,35 @@ msgstr ""
|
|
1464 |
msgid "Radio & Checkbox"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: ../includes/Elements/Caldera_Forms.php:934, ../includes/Elements/Contact_Form_7.php:961, ../includes/Elements/FluentForm.php:930, ../includes/Elements/Formstack.php:1126, ../includes/Elements/GravityForms.php:
|
1468 |
msgid "Custom Styles"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: ../includes/Elements/Caldera_Forms.php:998, ../includes/Elements/Contact_Form_7.php:1025, ../includes/Elements/Feature_List.php:616, ../includes/Elements/FluentForm.php:994, ../includes/Elements/GravityForms.php:
|
1472 |
msgid "Border Width"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: ../includes/Elements/Caldera_Forms.php:1035, ../includes/Elements/Contact_Form_7.php:1062, ../includes/Elements/FluentForm.php:1031, ../includes/Elements/Formstack.php:1191, ../includes/Elements/GravityForms.php:
|
1476 |
msgid "Checkbox"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: ../includes/Elements/Caldera_Forms.php:1061, ../includes/Elements/Contact_Form_7.php:1088, ../includes/Elements/FluentForm.php:1057, ../includes/Elements/Formstack.php:1217, ../includes/Elements/GravityForms.php:
|
1480 |
msgid "Radio Buttons"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: ../includes/Elements/Caldera_Forms.php:1089, ../includes/Elements/Contact_Form_7.php:1116, ../includes/Elements/FluentForm.php:1085, ../includes/Elements/Formstack.php:1245, ../includes/Elements/GravityForms.php:
|
1484 |
msgid "Checked"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: ../includes/Elements/Caldera_Forms.php:1124, ../includes/Elements/Contact_Form_7.php:1150, ../includes/Elements/FluentForm.php:1474, ../includes/Elements/Formstack.php:1360, ../includes/Elements/GravityForms.php:
|
1488 |
msgid "Submit Button"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: ../includes/Elements/Caldera_Forms.php:1163, ../includes/Elements/Contact_Form_7.php:1189, ../includes/Elements/FluentForm.php:1513, ../includes/Elements/Formstack.php:1399, ../includes/Elements/GravityForms.php:
|
1492 |
msgid "Full Width"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: ../includes/Elements/Caldera_Forms.php:1263, ../includes/Elements/Contact_Form_7.php:1288, ../includes/Elements/FluentForm.php:1614, ../includes/Elements/Formstack.php:1334, ../includes/Elements/Formstack.php:1499, ../includes/Elements/GravityForms.php:
|
1496 |
msgid "Margin Top"
|
1497 |
msgstr ""
|
1498 |
|
@@ -1544,7 +1544,7 @@ msgstr ""
|
|
1544 |
msgid "Form Description"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: ../includes/Elements/Contact_Form_7.php:247, ../includes/Elements/Formstack.php:282, ../includes/Elements/GravityForms.php:288, ../includes/Elements/GravityForms.php:
|
1548 |
msgid "Validation Errors"
|
1549 |
msgstr ""
|
1550 |
|
@@ -1552,7 +1552,7 @@ msgstr ""
|
|
1552 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:
|
1556 |
msgid "Background"
|
1557 |
msgstr ""
|
1558 |
|
@@ -1600,7 +1600,7 @@ msgstr ""
|
|
1600 |
msgid "After Submit Feedback"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: ../includes/Elements/Contact_Form_7.php:1629, ../includes/Elements/Dual_Color_Header.php:801, ../includes/Elements/Dual_Color_Header.php:881, ../includes/Elements/Flip_Box.php:877, ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:639, ../includes/Elements/Info_Box.php:807, ../includes/Elements/Info_Box.php:887, ../includes/Elements/Info_Box.php:1025, ../includes/Elements/Info_Box.php:1121, ../includes/Elements/Post_Grid.php:344, ../includes/Elements/Product_Grid.php:
|
1604 |
msgid "Radius"
|
1605 |
msgstr ""
|
1606 |
|
@@ -1636,7 +1636,7 @@ msgstr ""
|
|
1636 |
msgid "Animation Settings"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: ../includes/Elements/Content_Ticker.php:158, ../includes/Elements/Cta_Box.php:
|
1640 |
msgid "Effect"
|
1641 |
msgstr ""
|
1642 |
|
@@ -1832,11 +1832,11 @@ msgstr ""
|
|
1832 |
msgid "Separator Style"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: ../includes/Elements/Countdown.php:296, ../includes/Elements/Feature_List.php:431, ../includes/Elements/GravityForms.php:
|
1836 |
msgid "Solid"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: ../includes/Elements/Countdown.php:297, ../includes/Elements/Feature_List.php:433, ../includes/Elements/GravityForms.php:
|
1840 |
msgid "Dotted"
|
1841 |
msgstr ""
|
1842 |
|
@@ -1912,7 +1912,7 @@ msgstr ""
|
|
1912 |
msgid "Space Below Container"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:441, ../includes/Elements/Facebook_Feed.php:879, ../includes/Elements/Flip_Box.php:1167, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1333, ../includes/Elements/Product_Grid.php:
|
1916 |
msgid "Color & Typography"
|
1917 |
msgstr ""
|
1918 |
|
@@ -1940,11 +1940,11 @@ msgstr ""
|
|
1940 |
msgid "Expire Message"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:
|
1944 |
msgid "Title Style"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1406, ../includes/Elements/FluentForm.php:1859, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1457, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Timeline.php:
|
1948 |
msgid "Title Color"
|
1949 |
msgstr ""
|
1950 |
|
@@ -2048,7 +2048,7 @@ msgstr ""
|
|
2048 |
msgid "Shikoba (Pro)"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:
|
2052 |
msgid "Use Gradient Background"
|
2053 |
msgstr ""
|
2054 |
|
@@ -2060,131 +2060,155 @@ msgstr ""
|
|
2060 |
msgid "<strong>Crowdfundly</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=crowdfundly&tab=search&type=term\" target=\"_blank\">Crowdfundly</a> first."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: ../includes/Elements/Cta_Box.php:
|
2064 |
msgid "Call to Action"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: ../includes/Elements/Cta_Box.php:
|
2068 |
msgid "Basic"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: ../includes/Elements/Cta_Box.php:
|
2072 |
msgid "Flex Grid"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: ../includes/Elements/Cta_Box.php:
|
2076 |
msgid "Flex Grid with Icon"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: ../includes/Elements/Cta_Box.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2080 |
msgid "Color Style"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: ../includes/Elements/Cta_Box.php:
|
2084 |
msgid "Background Image"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: ../includes/Elements/Cta_Box.php:
|
2088 |
msgid "Background Fixed Image"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: ../includes/Elements/Cta_Box.php:
|
2092 |
msgid "Background Overlay"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: ../includes/Elements/Cta_Box.php:
|
2096 |
msgid "Sub Title"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: ../includes/Elements/Cta_Box.php:
|
2100 |
-
msgid "
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: ../includes/Elements/Cta_Box.php:
|
2104 |
msgid "Add a strong one liner supporting the heading above and giving users a reason to click on the button below."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: ../includes/Elements/Cta_Box.php:
|
|
|
|
|
|
|
|
|
2108 |
msgid "Primary Button Text"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: ../includes/Elements/Cta_Box.php:
|
|
|
|
|
|
|
|
|
2112 |
msgid "Primary Button Link"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: ../includes/Elements/Cta_Box.php:
|
2116 |
msgid "Show Secondary Button"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: ../includes/Elements/Cta_Box.php:
|
2120 |
msgid "Secondary Button Text"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: ../includes/Elements/Cta_Box.php:
|
2124 |
-
msgid "
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: ../includes/Elements/Cta_Box.php:
|
2128 |
msgid "Secondary Button Link"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: ../includes/Elements/Cta_Box.php:
|
2132 |
msgid "Call to Action Style"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: ../includes/Elements/Cta_Box.php:
|
2136 |
msgid "Set max width for the container?"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: ../includes/Elements/Cta_Box.php:
|
2140 |
msgid "yes"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: ../includes/Elements/Cta_Box.php:
|
2144 |
msgid "no"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: ../includes/Elements/Cta_Box.php:
|
2148 |
msgid "Container Max Width (% or px)"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: ../includes/Elements/Cta_Box.php:
|
2152 |
msgid "Background Color Opacity"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: ../includes/Elements/Cta_Box.php:
|
2156 |
msgid "Color & Typography "
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: ../includes/Elements/Cta_Box.php:
|
2160 |
msgid "Space"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: ../includes/Elements/Cta_Box.php:
|
2164 |
msgid "Sub Title Style"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: ../includes/Elements/Cta_Box.php:
|
2168 |
msgid "Primary Button Style"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: ../includes/Elements/Cta_Box.php:
|
2172 |
msgid "Top to Bottom"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: ../includes/Elements/Cta_Box.php:
|
2176 |
msgid "Left to Right"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: ../includes/Elements/Cta_Box.php:
|
|
|
|
|
|
|
|
|
2180 |
msgid "Secondary Button Style"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: ../includes/Elements/Cta_Box.php:
|
2184 |
msgid "Icon Style"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: ../includes/Elements/Cta_Box.php:
|
2188 |
msgid "Font Size"
|
2189 |
msgstr ""
|
2190 |
|
@@ -2288,7 +2312,7 @@ msgstr ""
|
|
2288 |
msgid "Icon Space"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: ../includes/Elements/Data_Table.php:773, ../includes/Elements/Post_Grid.php:638, ../includes/Elements/Post_Timeline.php:
|
2292 |
msgid "Title Alignment"
|
2293 |
msgstr ""
|
2294 |
|
@@ -2396,7 +2420,7 @@ msgstr ""
|
|
2396 |
msgid "Separator Type"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: ../includes/Elements/Dual_Color_Header.php:272, ../includes/Elements/Progress_Bar.php:84
|
2400 |
msgid "Line"
|
2401 |
msgstr ""
|
2402 |
|
@@ -2636,7 +2660,7 @@ msgstr ""
|
|
2636 |
msgid "Outside Space"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: ../includes/Elements/Event_Calendar.php:1049
|
2640 |
msgid "Time"
|
2641 |
msgstr ""
|
2642 |
|
@@ -2672,15 +2696,15 @@ msgstr ""
|
|
2672 |
msgid "Date Icon"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: ../includes/Elements/Event_Calendar.php:1503, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Product_Grid.php:
|
2676 |
msgid "Content Color"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
-
#: ../includes/Elements/Event_Calendar.php:1514, ../includes/Elements/Product_Grid.php:
|
2680 |
msgid " Close Button"
|
2681 |
msgstr ""
|
2682 |
|
2683 |
-
#: ../includes/Elements/Event_Calendar.php:1549, ../includes/Elements/Product_Grid.php:
|
2684 |
msgid "Button Size"
|
2685 |
msgstr ""
|
2686 |
|
@@ -2752,7 +2776,7 @@ msgstr ""
|
|
2752 |
msgid "Layout Settings"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: ../includes/Elements/Facebook_Feed.php:197, ../includes/Elements/Filterable_Gallery.php:176
|
2756 |
msgid "Card"
|
2757 |
msgstr ""
|
2758 |
|
@@ -2836,7 +2860,7 @@ msgstr ""
|
|
2836 |
msgid "Show Preview Description"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: ../includes/Elements/Facebook_Feed.php:399, ../includes/Elements/Product_Grid.php:
|
2840 |
msgid "Show Load More"
|
2841 |
msgstr ""
|
2842 |
|
@@ -2844,7 +2868,7 @@ msgstr ""
|
|
2844 |
msgid "Label"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: ../includes/Elements/Facebook_Feed.php:421, ../includes/Elements/Filterable_Gallery.php:693, ../includes/Elements/Product_Grid.php:
|
2848 |
msgid "Load More"
|
2849 |
msgstr ""
|
2850 |
|
@@ -2904,7 +2928,7 @@ msgstr ""
|
|
2904 |
msgid "Likes & Comments"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: ../includes/Elements/Facebook_Feed.php:1161, ../includes/Elements/Image_Accordion.php:391, ../includes/Elements/Post_Timeline.php:
|
2908 |
msgid "Overlay Color"
|
2909 |
msgstr ""
|
2910 |
|
@@ -3120,7 +3144,7 @@ msgstr ""
|
|
3120 |
msgid "Framed"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: ../includes/Elements/Feature_List.php:307, ../includes/Elements/Flip_Box.php:338, ../includes/Elements/Flip_Box.php:569, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:749, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Tooltip.php:290, ../includes/Elements/Twitter_Feed.php:365, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1763
|
3124 |
msgid "Top"
|
3125 |
msgstr ""
|
3126 |
|
@@ -3152,7 +3176,7 @@ msgstr ""
|
|
3152 |
msgid "Connector Styles"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: ../includes/Elements/Feature_List.php:432, ../includes/Elements/GravityForms.php:
|
3156 |
msgid "Dashed"
|
3157 |
msgstr ""
|
3158 |
|
@@ -3224,7 +3248,7 @@ msgstr ""
|
|
3224 |
msgid "Media"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
-
#: ../includes/Elements/Filterable_Gallery.php:231, ../includes/Elements/Product_Grid.php:
|
3228 |
msgid "Buttons"
|
3229 |
msgstr ""
|
3230 |
|
@@ -3340,7 +3364,7 @@ msgstr ""
|
|
3340 |
msgid "Item Category"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: ../includes/Elements/Filterable_Gallery.php:544, ../includes/Traits/Admin.php:21, ../includes/Traits/Admin.php:22, ../includes/Traits/Elements.php:
|
3344 |
msgid "Essential Addons"
|
3345 |
msgstr ""
|
3346 |
|
@@ -3416,7 +3440,7 @@ msgstr ""
|
|
3416 |
msgid "Item Hover Style"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: ../includes/Elements/Filterable_Gallery.php:1208, ../includes/Elements/Filterable_Gallery.php:1570, ../includes/Elements/Login_Register.php:2395, ../includes/Elements/Post_Timeline.php:
|
3420 |
msgid "Title Typography"
|
3421 |
msgstr ""
|
3422 |
|
@@ -3504,7 +3528,7 @@ msgstr ""
|
|
3504 |
msgid "Dropdown"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
#: ../includes/Elements/Filterable_Gallery.php:2463, ../includes/Elements/Product_Grid.php:
|
3508 |
msgid "Top Spacing"
|
3509 |
msgstr ""
|
3510 |
|
@@ -3572,11 +3596,11 @@ msgstr ""
|
|
3572 |
msgid "Vertical Position"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:573, ../includes/Elements/Info_Box.php:134, ../includes/Elements/Twitter_Feed.php:369
|
3576 |
msgid "Middle"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:577, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Twitter_Feed.php:373, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:1767
|
3580 |
msgid "Bottom"
|
3581 |
msgstr ""
|
3582 |
|
@@ -3748,87 +3772,87 @@ msgstr ""
|
|
3748 |
msgid "<strong>Gravity Forms</strong> is not installed/activated on your site. Please install and activate <strong>Gravity Forms</strong> first."
|
3749 |
msgstr ""
|
3750 |
|
3751 |
-
#: ../includes/Elements/GravityForms.php:
|
3752 |
msgid "Sub-Labels"
|
3753 |
msgstr ""
|
3754 |
|
3755 |
-
#: ../includes/Elements/GravityForms.php:
|
3756 |
msgid "Spacing Right"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: ../includes/Elements/GravityForms.php:
|
3760 |
msgid "Section Field"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
#: ../includes/Elements/GravityForms.php:
|
3764 |
msgid "Border Type"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: ../includes/Elements/GravityForms.php:
|
3768 |
msgid "Double"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: ../includes/Elements/GravityForms.php:
|
3772 |
msgid "Border Height"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: ../includes/Elements/GravityForms.php:
|
3776 |
msgid "Price Label Color"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: ../includes/Elements/GravityForms.php:
|
3780 |
msgid "Price Color"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
-
#: ../includes/Elements/GravityForms.php:
|
3784 |
msgid "Total Price"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: ../includes/Elements/GravityForms.php:
|
3788 |
msgid "Radio"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: ../includes/Elements/GravityForms.php:
|
3792 |
msgid "File Upload"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
-
#: ../includes/Elements/GravityForms.php:
|
3796 |
msgid "Rules"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
-
#: ../includes/Elements/GravityForms.php:
|
3800 |
msgid "Scrolling Text"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: ../includes/Elements/GravityForms.php:
|
3804 |
msgid "Next/Previous Button"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: ../includes/Elements/GravityForms.php:
|
3808 |
msgid "Error Description Color"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: ../includes/Elements/GravityForms.php:
|
3812 |
msgid "Error Border Color"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: ../includes/Elements/GravityForms.php:
|
3816 |
msgid "Error Field Background Color"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: ../includes/Elements/GravityForms.php:
|
3820 |
msgid "Error Field Label Color"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: ../includes/Elements/GravityForms.php:
|
3824 |
msgid "Error Field Input Border Color"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: ../includes/Elements/GravityForms.php:
|
3828 |
msgid "Error Field Input Border Width"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: ../includes/Elements/GravityForms.php:
|
3832 |
msgid "Thank You Message"
|
3833 |
msgstr ""
|
3834 |
|
@@ -4016,19 +4040,11 @@ msgstr ""
|
|
4016 |
msgid "Preset"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: ../includes/Elements/Interactive_Circle.php:
|
4020 |
-
msgid "Preset 1"
|
4021 |
-
msgstr ""
|
4022 |
-
|
4023 |
-
#: ../includes/Elements/Interactive_Circle.php:74, ../includes/Elements/Product_Grid.php:273, ../includes/Elements/Product_Grid.php:1671, ../includes/Elements/Product_Grid.php:1792, ../includes/Elements/Simple_Menu.php:146, ../includes/Elements/Woo_Product_Carousel.php:804, ../includes/Elements/Woo_Product_Carousel.php:2098, ../includes/Elements/Woo_Product_Gallery.php:328, ../includes/Elements/Woo_Product_Gallery.php:1503, ../includes/Traits/Controls.php:427, ../includes/Template/Woo-Product-Carousel/preset-2.php:4
|
4024 |
-
msgid "Preset 2"
|
4025 |
-
msgstr ""
|
4026 |
-
|
4027 |
-
#: ../includes/Elements/Interactive_Circle.php:75, ../includes/Elements/Product_Grid.php:274, ../includes/Elements/Product_Grid.php:1672, ../includes/Elements/Simple_Menu.php:147, ../includes/Elements/Woo_Product_Carousel.php:805, ../includes/Elements/Woo_Product_Carousel.php:2099, ../includes/Elements/Woo_Product_Gallery.php:329, ../includes/Elements/Woo_Product_Gallery.php:1504, ../includes/Traits/Controls.php:428, ../includes/Template/Woo-Product-Carousel/preset-3.php:4
|
4028 |
msgid "Preset 3"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: ../includes/Elements/Interactive_Circle.php:76, ../includes/Elements/Product_Grid.php:275, ../includes/Elements/Product_Grid.php:
|
4032 |
msgid "Preset 4"
|
4033 |
msgstr ""
|
4034 |
|
@@ -5119,19 +5135,19 @@ msgstr ""
|
|
5119 |
msgid "Required Fields Notice"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: ../includes/Elements/Post_Grid.php:92, ../includes/Elements/Post_Timeline.php:
|
5123 |
msgid "Links"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
-
#: ../includes/Elements/Post_Grid.php:131, ../includes/Elements/Post_Grid.php:171, ../includes/Elements/Post_Grid.php:211, ../includes/Elements/Post_Timeline.php:
|
5127 |
msgid "No Follow"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
-
#: ../includes/Elements/Post_Grid.php:145, ../includes/Elements/Post_Grid.php:185, ../includes/Elements/Post_Grid.php:225, ../includes/Elements/Post_Timeline.php:
|
5131 |
msgid "Target Blank"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: ../includes/Elements/Post_Grid.php:200, ../includes/Elements/Product_Grid.php:
|
5135 |
msgid "Read More"
|
5136 |
msgstr ""
|
5137 |
|
@@ -5187,23 +5203,23 @@ msgstr ""
|
|
5187 |
msgid "Title Hover Color"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: ../includes/Elements/Post_Grid.php:685, ../includes/Elements/Post_Timeline.php:
|
5191 |
msgid "Excerpt Style"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: ../includes/Elements/Post_Grid.php:694, ../includes/Elements/Post_Timeline.php:
|
5195 |
msgid "Excerpt Color"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: ../includes/Elements/Post_Grid.php:706, ../includes/Elements/Post_Timeline.php:
|
5199 |
msgid "Excerpt Alignment"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: ../includes/Elements/Post_Grid.php:722, ../includes/Elements/Post_Timeline.php:
|
5203 |
msgid "Justified"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: ../includes/Elements/Post_Grid.php:736, ../includes/Elements/Post_Timeline.php:
|
5207 |
msgid "Excerpt Typography"
|
5208 |
msgstr ""
|
5209 |
|
@@ -5255,63 +5271,75 @@ msgstr ""
|
|
5255 |
msgid "<p class=\"no-posts-found\">No Layout Found!</p>"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5259 |
msgid "Timeline Style"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5263 |
msgid "Show Overlay"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5267 |
msgid "Leave blank or Clear to use default gradient overlay"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: ../includes/Elements/Post_Timeline.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5271 |
msgid "Line Width"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5275 |
msgid "Line Position From Right"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5279 |
msgid "Bullet Size"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5283 |
msgid "Left-sided Bullet Positon"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5287 |
msgid "Right-sided Bullet Position"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5291 |
msgid "Timeline Bullet Color"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5295 |
msgid "Timeline Bullet Border Color"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5299 |
msgid "Timeline Vertical Line Color"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: ../includes/Elements/Post_Timeline.php:
|
5303 |
-
msgid "Border & Arrow Color"
|
5304 |
-
msgstr ""
|
5305 |
-
|
5306 |
-
#: ../includes/Elements/Post_Timeline.php:294
|
5307 |
-
msgid "Date Background Color"
|
5308 |
-
msgstr ""
|
5309 |
-
|
5310 |
-
#: ../includes/Elements/Post_Timeline.php:308
|
5311 |
-
msgid "Date Text Color"
|
5312 |
-
msgstr ""
|
5313 |
-
|
5314 |
-
#: ../includes/Elements/Post_Timeline.php:502, ../includes/Elements/Product_Grid.php:3048, ../includes/Elements/Woo_Product_Gallery.php:2393
|
5315 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
5316 |
msgstr ""
|
5317 |
|
@@ -5599,11 +5627,11 @@ msgstr ""
|
|
5599 |
msgid "Product ID"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: ../includes/Elements/Product_Grid.php:142, ../includes/Elements/Product_Grid.php:
|
5603 |
msgid "Product Title"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: ../includes/Elements/Product_Grid.php:144, ../includes/Elements/Product_Grid.php:
|
5607 |
msgid "SKU"
|
5608 |
msgstr ""
|
5609 |
|
@@ -5647,7 +5675,7 @@ msgstr ""
|
|
5647 |
msgid "Layouts"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: ../includes/Elements/Product_Grid.php:246, ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Product_Grid.php:
|
5651 |
msgid "Style Preset"
|
5652 |
msgstr ""
|
5653 |
|
@@ -5663,7 +5691,7 @@ msgstr ""
|
|
5663 |
msgid "Overlay Style"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
#: ../includes/Elements/Product_Grid.php:254, ../includes/Elements/Product_Grid.php:
|
5667 |
msgid "Preset 5"
|
5668 |
msgstr ""
|
5669 |
|
@@ -5683,7 +5711,7 @@ msgstr ""
|
|
5683 |
msgid "Product Settings"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
-
#: ../includes/Elements/Product_Grid.php:339, ../includes/Elements/Product_Grid.php:
|
5687 |
msgid "Products"
|
5688 |
msgstr ""
|
5689 |
|
@@ -5731,219 +5759,227 @@ msgstr ""
|
|
5731 |
msgid "p"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
-
#: ../includes/Elements/Product_Grid.php:
|
5735 |
msgid "Show Product Rating?"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: ../includes/Elements/Product_Grid.php:
|
5739 |
msgid "Show Product Price?"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: ../includes/Elements/Product_Grid.php:
|
5743 |
msgid "Short Description?"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
-
#: ../includes/Elements/Product_Grid.php:
|
5747 |
msgid "Excerpt Words"
|
5748 |
msgstr ""
|
5749 |
|
5750 |
-
#: ../includes/Elements/Product_Grid.php:
|
5751 |
msgid "Expansion Indicator"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: ../includes/Elements/Product_Grid.php:
|
5755 |
msgid "Show Product Compare?"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
-
#: ../includes/Elements/Product_Grid.php:
|
5759 |
msgid "Image Clickable?"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
-
#: ../includes/Elements/Product_Grid.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5763 |
msgid "Add To Cart"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: ../includes/Elements/Product_Grid.php:
|
5767 |
msgid "Show Add to cart custom text"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: ../includes/Elements/Product_Grid.php:
|
5771 |
msgid "Simple Product"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: ../includes/Elements/Product_Grid.php:
|
5775 |
msgid "Buy Now"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: ../includes/Elements/Product_Grid.php:
|
5779 |
msgid "Variable Product"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
-
#: ../includes/Elements/Product_Grid.php:
|
5783 |
msgid "Select options"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: ../includes/Elements/Product_Grid.php:
|
5787 |
msgid "Grouped Product"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: ../includes/Elements/Product_Grid.php:
|
5791 |
msgid "View products"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#: ../includes/Elements/Product_Grid.php:
|
5795 |
msgid "External Product"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#: ../includes/Elements/Product_Grid.php:
|
5799 |
msgid "Default Product"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
-
#: ../includes/Elements/Product_Grid.php:
|
5803 |
msgid "Label Text"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
-
#: ../includes/Elements/Product_Grid.php:
|
5807 |
msgid "Content Background Color"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: ../includes/Elements/Product_Grid.php:
|
5811 |
msgid "Image Width(%)"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
-
#: ../includes/Elements/Product_Grid.php:
|
5815 |
msgid "Product Details"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
-
#: ../includes/Elements/Product_Grid.php:
|
5819 |
msgid "Padding (PX)"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: ../includes/Elements/Product_Grid.php:
|
5823 |
msgid "Width (%)"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
-
#: ../includes/Elements/Product_Grid.php:
|
5827 |
msgid "Product Title Color"
|
5828 |
msgstr ""
|
5829 |
|
5830 |
-
#: ../includes/Elements/Product_Grid.php:
|
5831 |
msgid "Product Price"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
-
#: ../includes/Elements/Product_Grid.php:
|
5835 |
msgid "Sale Price Color"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
-
#: ../includes/Elements/Product_Grid.php:
|
5839 |
msgid "Star Rating"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
-
#: ../includes/Elements/Product_Grid.php:
|
5843 |
msgid "Rating Color"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
-
#: ../includes/Elements/Product_Grid.php:
|
5847 |
msgid "Product Description"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
-
#: ../includes/Elements/Product_Grid.php:
|
5851 |
msgid "Sale Badge Style"
|
5852 |
msgstr ""
|
5853 |
|
5854 |
-
#: ../includes/Elements/Product_Grid.php:
|
5855 |
msgid "Sale Badge Color"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
-
#: ../includes/Elements/Product_Grid.php:
|
5859 |
msgid "Sale Badge Background"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
-
#: ../includes/Elements/Product_Grid.php:
|
5863 |
msgid "Stock Out Badge"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
-
#: ../includes/Elements/Product_Grid.php:
|
5867 |
msgid "Stock Out Badge Color"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
-
#: ../includes/Elements/Product_Grid.php:
|
5871 |
msgid "Stock Out Badge Background"
|
5872 |
msgstr ""
|
5873 |
|
5874 |
-
#: ../includes/Elements/Product_Grid.php:
|
5875 |
msgid "Add to Cart Button Styles"
|
5876 |
msgstr ""
|
5877 |
|
5878 |
-
#: ../includes/Elements/Product_Grid.php:
|
5879 |
msgid "Button Color"
|
5880 |
msgstr ""
|
5881 |
|
5882 |
-
#: ../includes/Elements/Product_Grid.php:
|
5883 |
msgid "Sale / Stock Out Badge"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
-
#: ../includes/Elements/Product_Grid.php:
|
5887 |
msgid "Sale Text"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
-
#: ../includes/Elements/Product_Grid.php:
|
5891 |
msgid "Stock Out Text"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#: ../includes/Elements/Product_Grid.php:
|
5895 |
msgid "Show Quick view?"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: ../includes/Elements/Product_Grid.php:
|
5899 |
msgid "Quick view Title Tag"
|
5900 |
msgstr ""
|
5901 |
|
5902 |
-
#: ../includes/Elements/Product_Grid.php:
|
5903 |
msgid "Icons Size"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
-
#: ../includes/Elements/Product_Grid.php:
|
5907 |
msgid "Show pagination"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
-
#: ../includes/Elements/Product_Grid.php:
|
5911 |
msgid "Previous Label"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#: ../includes/Elements/Product_Grid.php:
|
5915 |
msgid "←"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: ../includes/Elements/Product_Grid.php:
|
5919 |
msgid "Next Label"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
-
#: ../includes/Elements/Product_Grid.php:
|
5923 |
msgid "→"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
-
#: ../includes/Elements/Product_Grid.php:
|
5927 |
msgid "Loader"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
-
#: ../includes/Elements/Product_Grid.php:
|
5931 |
msgid "Popup"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
-
#: ../includes/Elements/Product_Grid.php:
|
5935 |
msgid "Review Link Color"
|
5936 |
msgstr ""
|
5937 |
|
5938 |
-
#: ../includes/Elements/Product_Grid.php:
|
5939 |
msgid "Review Link Hover"
|
5940 |
msgstr ""
|
5941 |
|
5942 |
-
#: ../includes/Elements/Product_Grid.php:
|
5943 |
msgid "Sale"
|
5944 |
msgstr ""
|
5945 |
|
5946 |
-
#: ../includes/Elements/Product_Grid.php:
|
5947 |
msgid "Cart Button"
|
5948 |
msgstr ""
|
5949 |
|
@@ -6031,7 +6067,7 @@ msgstr ""
|
|
6031 |
msgid "Fill Color"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
-
#: ../includes/Elements/Progress_Bar.php:704, ../includes/Traits/Elements.php:
|
6035 |
msgid "Counter"
|
6036 |
msgstr ""
|
6037 |
|
@@ -6047,7 +6083,7 @@ msgstr ""
|
|
6047 |
msgid "Prefix/Postfix Color"
|
6048 |
msgstr ""
|
6049 |
|
6050 |
-
#: ../includes/Elements/Progress_Bar.php:797, ../includes/Elements/Progress_Bar.php:828, ../includes/Elements/Progress_Bar.php:874
|
6051 |
msgid "%"
|
6052 |
msgstr ""
|
6053 |
|
@@ -6615,10 +6651,6 @@ msgstr ""
|
|
6615 |
msgid "Tooltip Max Width"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
-
#: ../includes/Elements/Tooltip.php:685
|
6619 |
-
msgid "Arrow Color"
|
6620 |
-
msgstr ""
|
6621 |
-
|
6622 |
#: ../includes/Elements/Twitter_Feed.php:82
|
6623 |
msgid "Account Settings"
|
6624 |
msgstr ""
|
@@ -7355,10 +7387,6 @@ msgstr ""
|
|
7355 |
msgid "Chevron Circle"
|
7356 |
msgstr ""
|
7357 |
|
7358 |
-
#: ../includes/Elements/Woo_Product_Carousel.php:2548, ../includes/Extensions/Table_of_Content.php:862
|
7359 |
-
msgid "Arrow"
|
7360 |
-
msgstr ""
|
7361 |
-
|
7362 |
#: ../includes/Elements/Woo_Product_Carousel.php:2549
|
7363 |
msgid "Long Arrow"
|
7364 |
msgstr ""
|
@@ -7423,7 +7451,7 @@ msgstr ""
|
|
7423 |
msgid "Show Link?"
|
7424 |
msgstr ""
|
7425 |
|
7426 |
-
#: ../includes/Elements/Woo_Product_Gallery.php:
|
7427 |
msgid "<p class=\"no-posts-found\">No Category Found!</p>"
|
7428 |
msgstr ""
|
7429 |
|
@@ -7763,38 +7791,58 @@ msgstr ""
|
|
7763 |
msgid "Go Premium"
|
7764 |
msgstr ""
|
7765 |
|
7766 |
-
#: ../includes/Traits/Admin.php:
|
7767 |
-
msgid "Login | Register Settings updated"
|
7768 |
-
msgstr ""
|
7769 |
-
|
7770 |
-
#: ../includes/Traits/Admin.php:256
|
7771 |
msgid "Ok, you deserve it!"
|
7772 |
msgstr ""
|
7773 |
|
7774 |
-
#: ../includes/Traits/Admin.php:
|
7775 |
msgid "I already did"
|
7776 |
msgstr ""
|
7777 |
|
7778 |
-
#: ../includes/Traits/Admin.php:
|
7779 |
msgid "Maybe Later"
|
7780 |
msgstr ""
|
7781 |
|
7782 |
-
#: ../includes/Traits/Admin.php:
|
7783 |
msgid "I need help"
|
7784 |
msgstr ""
|
7785 |
|
7786 |
-
#: ../includes/Traits/Admin.php:
|
7787 |
msgid "Never show again"
|
7788 |
msgstr ""
|
7789 |
|
7790 |
-
#: ../includes/Traits/Admin.php:
|
7791 |
msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
7792 |
msgstr ""
|
7793 |
|
7794 |
-
#: ../includes/Traits/Admin.php:
|
7795 |
msgid "You are using an incompatible version of Essential Addons PRO. Please update to v4.0.0+. If you do not see automatic update, <a href=\"https://essential-addons.com/elementor/docs/manually-update-essential-addons-pro/\" target=\"_blank\">Follow manual update guide.</a>"
|
7796 |
msgstr ""
|
7797 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7798 |
#: ../includes/Traits/Controls.php:27
|
7799 |
msgid "Manual Selection"
|
7800 |
msgstr ""
|
@@ -8043,107 +8091,107 @@ msgid ""
|
|
8043 |
" popular plugins and themes. No spam, I promise."
|
8044 |
msgstr ""
|
8045 |
|
8046 |
-
#: ../includes/Traits/Elements.php:
|
8047 |
msgid "Advanced Menu"
|
8048 |
msgstr ""
|
8049 |
|
8050 |
-
#: ../includes/Traits/Elements.php:
|
8051 |
msgid "Content Timeline"
|
8052 |
msgstr ""
|
8053 |
|
8054 |
-
#: ../includes/Traits/Elements.php:
|
8055 |
msgid "Divider"
|
8056 |
msgstr ""
|
8057 |
|
8058 |
-
#: ../includes/Traits/Elements.php:
|
8059 |
msgid "Flip Carousel"
|
8060 |
msgstr ""
|
8061 |
|
8062 |
-
#: ../includes/Traits/Elements.php:
|
8063 |
msgid "Google Map"
|
8064 |
msgstr ""
|
8065 |
|
8066 |
-
#: ../includes/Traits/Elements.php:
|
8067 |
msgid "Image Comparison"
|
8068 |
msgstr ""
|
8069 |
|
8070 |
-
#: ../includes/Traits/Elements.php:
|
8071 |
msgid "Image Scroller"
|
8072 |
msgstr ""
|
8073 |
|
8074 |
-
#: ../includes/Traits/Elements.php:
|
8075 |
msgid "Interactive Card"
|
8076 |
msgstr ""
|
8077 |
|
8078 |
-
#: ../includes/Traits/Elements.php:
|
8079 |
msgid "Interactive Promo"
|
8080 |
msgstr ""
|
8081 |
|
8082 |
-
#: ../includes/Traits/Elements.php:
|
8083 |
msgid "LearnDash Course List"
|
8084 |
msgstr ""
|
8085 |
|
8086 |
-
#: ../includes/Traits/Elements.php:
|
8087 |
msgid "Lightbox & Modal"
|
8088 |
msgstr ""
|
8089 |
|
8090 |
-
#: ../includes/Traits/Elements.php:
|
8091 |
msgid "Logo Carousel"
|
8092 |
msgstr ""
|
8093 |
|
8094 |
-
#: ../includes/Traits/Elements.php:
|
8095 |
msgid "Offcanvas"
|
8096 |
msgstr ""
|
8097 |
|
8098 |
-
#: ../includes/Traits/Elements.php:
|
8099 |
msgid "One Page Navigation"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
-
#: ../includes/Traits/Elements.php:
|
8103 |
msgid "Post Block"
|
8104 |
msgstr ""
|
8105 |
|
8106 |
-
#: ../includes/Traits/Elements.php:
|
8107 |
msgid "Post Carousel"
|
8108 |
msgstr ""
|
8109 |
|
8110 |
-
#: ../includes/Traits/Elements.php:
|
8111 |
msgid "Smart Post List"
|
8112 |
msgstr ""
|
8113 |
|
8114 |
-
#: ../includes/Traits/Elements.php:
|
8115 |
msgid "Price Menu"
|
8116 |
msgstr ""
|
8117 |
|
8118 |
-
#: ../includes/Traits/Elements.php:
|
8119 |
msgid "Protected Content"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
-
#: ../includes/Traits/Elements.php:
|
8123 |
msgid "Static Product"
|
8124 |
msgstr ""
|
8125 |
|
8126 |
-
#: ../includes/Traits/Elements.php:
|
8127 |
msgid "Team Member Carousel"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
-
#: ../includes/Traits/Elements.php:
|
8131 |
msgid "Testimonial Slider"
|
8132 |
msgstr ""
|
8133 |
|
8134 |
-
#: ../includes/Traits/Elements.php:
|
8135 |
msgid "Twitter Feed Carousel"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
-
#: ../includes/Traits/Elements.php:
|
8139 |
msgid "Woo Product Collections"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
-
#: ../includes/Traits/Elements.php:
|
8143 |
msgid "Woo Product Slider"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
-
#: ../includes/Traits/Elements.php:
|
8147 |
msgid "Advanced Search"
|
8148 |
msgstr ""
|
8149 |
|
@@ -8163,63 +8211,43 @@ msgstr ""
|
|
8163 |
msgid "Post ID is missing"
|
8164 |
msgstr ""
|
8165 |
|
8166 |
-
#: ../includes/Traits/
|
8167 |
-
msgid "Widget ID is missing"
|
8168 |
-
msgstr ""
|
8169 |
-
|
8170 |
-
#: ../includes/Traits/Helper.php:29, ../includes/Traits/Helper.php:962, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:200
|
8171 |
-
msgid "Insecure form submitted without security token"
|
8172 |
-
msgstr ""
|
8173 |
-
|
8174 |
-
#: ../includes/Traits/Helper.php:37, ../includes/Traits/Helper.php:970, ../includes/Traits/Login_Registration.php:92, ../includes/Traits/Login_Registration.php:210, ../includes/Traits/Woo_Product_Comparable.php:2170
|
8175 |
-
msgid "Security token did not match"
|
8176 |
-
msgstr ""
|
8177 |
-
|
8178 |
-
#: ../includes/Traits/Helper.php:47, ../includes/Traits/Helper.php:611, ../includes/Traits/Helper.php:667, ../includes/Traits/Helper.php:980, ../includes/Traits/Login_Registration.php:55, ../includes/Traits/Login_Registration.php:222, ../includes/Traits/Woo_Product_Comparable.php:2128
|
8179 |
-
msgid "Page ID is missing"
|
8180 |
-
msgstr ""
|
8181 |
-
|
8182 |
-
#: ../includes/Traits/Helper.php:67, ../includes/Traits/Helper.php:624, ../includes/Traits/Helper.php:681, ../includes/Traits/Helper.php:999
|
8183 |
-
msgid "Widget settings are not found. Did you save the widget before using load more??"
|
8184 |
-
msgstr ""
|
8185 |
-
|
8186 |
-
#: ../includes/Traits/Helper.php:209
|
8187 |
msgid "Essential Addons for Elementor"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
-
#: ../includes/Traits/Helper.php:
|
8191 |
msgid "%s ago"
|
8192 |
msgstr ""
|
8193 |
|
8194 |
-
#: ../includes/Traits/Helper.php:
|
8195 |
msgid "1,700+ Stunning Templates"
|
8196 |
msgstr ""
|
8197 |
|
8198 |
-
#: ../includes/Traits/Helper.php:
|
8199 |
msgid "Supports Elementor & Gutenberg"
|
8200 |
msgstr ""
|
8201 |
|
8202 |
-
#: ../includes/Traits/Helper.php:
|
8203 |
msgid "Powering up 100,000+ Websites"
|
8204 |
msgstr ""
|
8205 |
|
8206 |
-
#: ../includes/Traits/Helper.php:
|
8207 |
msgid "Cloud Collaboration with Team"
|
8208 |
msgstr ""
|
8209 |
|
8210 |
-
#: ../includes/Traits/Helper.php:
|
8211 |
msgid "Don’t Show This Again"
|
8212 |
msgstr ""
|
8213 |
|
8214 |
-
#: ../includes/Traits/Helper.php:
|
8215 |
msgid "Activate Templately"
|
8216 |
msgstr ""
|
8217 |
|
8218 |
-
#: ../includes/Traits/Helper.php:
|
8219 |
msgid "Activated Templately"
|
8220 |
msgstr ""
|
8221 |
|
8222 |
-
#: ../includes/Traits/Helper.php:
|
8223 |
msgid "Submit"
|
8224 |
msgstr ""
|
8225 |
|
@@ -8679,19 +8707,19 @@ msgstr ""
|
|
8679 |
msgid "No products found!"
|
8680 |
msgstr ""
|
8681 |
|
8682 |
-
#: ../includes/Template/Content/Product_Grid.php:63, ../includes/Template/Content/Product_Grid.php:29, ../includes/Template/Eicon-Woocommerce/default.php:
|
8683 |
msgid "Sale!"
|
8684 |
msgstr ""
|
8685 |
|
8686 |
-
#: ../includes/Template/Content/Product_Grid.php:27, ../includes/Template/Eicon-Woocommerce/default.php:
|
8687 |
msgid "Stock <br/> Out"
|
8688 |
msgstr ""
|
8689 |
|
8690 |
-
#: ../includes/Template/Eicon-Woocommerce/default.php:
|
8691 |
msgid "Stock "
|
8692 |
msgstr ""
|
8693 |
|
8694 |
-
#: ../includes/Template/Eicon-Woocommerce/default.php:
|
8695 |
msgid "Out"
|
8696 |
msgstr ""
|
8697 |
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
+
#: ../includes/Classes/Helper.php:205, ../includes/Elements/Adv_Accordion.php:325, ../includes/Elements/Adv_Tabs.php:298, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:397, ../includes/Elements/Data_Table.php:482, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:269, ../includes/Elements/Filterable_Gallery.php:796, ../includes/Elements/Flip_Box.php:733, ../includes/Elements/Info_Box.php:493, ../includes/Elements/Login_Register.php:1038, ../includes/Elements/Pricing_Table.php:698, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:237, ../includes/Elements/Testimonial.php:214, ../includes/Elements/Tooltip.php:513, ../includes/Elements/Twitter_Feed.php:308, ../includes/Elements/WeForms.php:110
|
21 |
msgid "Go Premium for More Features"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: ../includes/Classes/Helper.php:212, ../includes/Elements/Adv_Accordion.php:332, ../includes/Elements/Adv_Tabs.php:305, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:404, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:276, ../includes/Elements/Filterable_Gallery.php:803, ../includes/Elements/Flip_Box.php:740, ../includes/Elements/Info_Box.php:500, ../includes/Elements/Login_Register.php:1045, ../includes/Elements/Pricing_Table.php:705, ../includes/Elements/Progress_Bar.php:278, ../includes/Elements/Team_Member.php:244, ../includes/Elements/Testimonial.php:221, ../includes/Elements/Tooltip.php:520, ../includes/Elements/Twitter_Feed.php:315, ../includes/Elements/WeForms.php:117
|
25 |
msgid "Unlock more possibilities"
|
26 |
msgstr ""
|
27 |
|
65 |
msgid "Install Now!"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:188, ../includes/Classes/WPDeveloper_Setup_Wizard.php:517, ../includes/Classes/WPDeveloper_Setup_Wizard.php:543, ../includes/Traits/Ajax_Handler.php:754, ../includes/Traits/Ajax_Handler.php:861, ../includes/Traits/Helper.php:428
|
69 |
msgid "you are not allowed to do this action"
|
70 |
msgstr ""
|
71 |
|
125 |
msgid "Next"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1015, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:311, ../includes/Elements/Filterable_Gallery.php:776, ../includes/Elements/Filterable_Gallery.php:1308, ../includes/Elements/Filterable_Gallery.php:1691, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:681, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2208, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:716, ../includes/Elements/Login_Register.php:2595, ../includes/Elements/Login_Register.php:3263, ../includes/Elements/Login_Register.php:3583, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:718, ../includes/Elements/Post_Grid.php:813, ../includes/Elements/Post_Grid.php:896, ../includes/Elements/Post_Timeline.php:325, ../includes/Elements/Post_Timeline.php:383, ../includes/Elements/Pricing_Table.php:258, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:729, ../includes/Elements/Product_Grid.php:1047, ../includes/Elements/Product_Grid.php:1717, ../includes/Elements/Product_Grid.php:2206, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:206, ../includes/Elements/Simple_Menu.php:351, ../includes/Elements/Simple_Menu.php:758, ../includes/Elements/Simple_Menu.php:784, ../includes/Elements/Simple_Menu.php:809, ../includes/Elements/Simple_Menu.php:1104, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:217, ../includes/Elements/Tooltip.php:289, ../includes/Elements/Tooltip.php:385, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:277, ../includes/Elements/Woo_Cart.php:498, ../includes/Elements/Woo_Cart.php:594, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:743, ../includes/Elements/Woo_Cart.php:851, ../includes/Elements/Woo_Cart.php:1596, ../includes/Elements/Woo_Cart.php:2202, ../includes/Elements/Woo_Product_Carousel.php:705, ../includes/Elements/Woo_Product_Carousel.php:824, ../includes/Elements/Woo_Product_Carousel.php:877, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:560, ../includes/Elements/Woo_Product_Gallery.php:1523, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:463, ../includes/Traits/Controls.php:602, ../includes/Traits/Controls.php:1267, ../includes/Traits/Controls.php:1605, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1979
|
129 |
msgid "Right"
|
130 |
msgstr ""
|
131 |
|
169 |
" dynamic elements will be activated in this option."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:206, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Contact_Form_7.php:1190, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/FluentForm.php:1514, ../includes/Elements/Formstack.php:1400, ../includes/Elements/GravityForms.php:1981, ../includes/Elements/Login_Register.php:301, ../includes/Elements/Login_Register.php:461, ../includes/Elements/Login_Register.php:567, ../includes/Elements/Login_Register.php:876, ../includes/Elements/Login_Register.php:1319, ../includes/Elements/Login_Register.php:1425, ../includes/Elements/Login_Register.php:1493, ../includes/Elements/Login_Register.php:1619, ../includes/Elements/Login_Register.php:1876, ../includes/Elements/Login_Register.php:2020, ../includes/Elements/Login_Register.php:2170, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2404, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/Login_Register.php:2704, ../includes/Elements/Login_Register.php:2749, ../includes/Elements/Login_Register.php:2781, ../includes/Elements/Login_Register.php:3015, ../includes/Elements/Login_Register.php:3177, ../includes/Elements/Login_Register.php:3476, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/WpForms.php:1168, ../includes/Traits/Woo_Product_Comparable.php:420, ../includes/Traits/Woo_Product_Comparable.php:534, ../includes/Traits/Woo_Product_Comparable.php:625, ../includes/Traits/Woo_Product_Comparable.php:694
|
173 |
msgid "Custom"
|
174 |
msgstr ""
|
175 |
|
201 |
msgid "Upgrade to PRO"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:324, ../includes/Traits/Helper.php:404, ../includes/templates/admin/general.php:31
|
205 |
msgid "Install Templately"
|
206 |
msgstr ""
|
207 |
|
384 |
msgid "Post Grid"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:665, ../includes/Elements/Post_Timeline.php:28, ../includes/templates/admin/elements.php:147
|
388 |
msgid "Post Timeline"
|
389 |
msgstr ""
|
390 |
|
536 |
msgid "Woo Product Gallery"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:852, ../includes/Elements/Adv_Accordion.php:116, ../includes/Elements/Login_Register.php:3029, ../includes/Elements/Woo_Product_Carousel.php:2554, ../includes/Traits/Elements.php:290, ../includes/templates/admin/elements.php:83, ../includes/templates/admin/go-pro.php:75
|
540 |
msgid "Toggle"
|
541 |
msgstr ""
|
542 |
|
544 |
msgid "Advanced Google Map"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:862, ../includes/Traits/Elements.php:152, ../includes/templates/admin/elements.php:207, ../includes/templates/admin/go-pro.php:88
|
548 |
msgid "Dynamic Gallery"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:867, ../includes/Traits/Elements.php:176, ../includes/templates/admin/elements.php:312, ../includes/templates/admin/go-pro.php:94
|
552 |
msgid "Image Hotspots"
|
553 |
msgstr ""
|
554 |
|
556 |
msgid "Lightbox and Modal"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:877, ../includes/Traits/Elements.php:224, ../includes/templates/admin/elements.php:428
|
560 |
msgid "Mailchimp"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:882, ../includes/Traits/Elements.php:188, ../includes/templates/admin/elements.php:461, ../includes/templates/admin/go-pro.php:112
|
564 |
msgid "Instagram Feed"
|
565 |
msgstr ""
|
566 |
|
576 |
msgid "Remove"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../includes/Controls/Select2.php:30, ../includes/Elements/Adv_Tabs.php:179, ../includes/Elements/Adv_Tabs.php:206, ../includes/Elements/Data_Table.php:156, ../includes/Elements/Data_Table.php:188, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:167, ../includes/Elements/Filterable_Gallery.php:564, ../includes/Elements/Flip_Box.php:205, ../includes/Elements/Flip_Box.php:436, ../includes/Elements/Info_Box.php:111, ../includes/Elements/Post_Grid.php:120, ../includes/Elements/Post_Timeline.php:235, ../includes/Elements/Tooltip.php:82, ../includes/Elements/Tooltip.php:177, ../includes/Elements/Woo_Cart.php:196, ../includes/Traits/Controls.php:578, ../includes/Traits/Controls.php:739, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71
|
580 |
msgid "Image"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: ../includes/Controls/Select2.php:31, ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1146, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:219, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:1389, ../includes/Elements/Feature_List.php:181, ../includes/Elements/Feature_List.php:183, ../includes/Elements/Feature_List.php:735, ../includes/Elements/Flip_Box.php:656, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:293, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:507, ../includes/Elements/Image_Accordion.php:197, ../includes/Elements/Image_Accordion.php:487, ../includes/Elements/Interactive_Circle.php:154, ../includes/Elements/Login_Register.php:2310, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:160, ../includes/Elements/Pricing_Table.php:137, ../includes/Elements/Product_Grid.php:2428, ../includes/Elements/Progress_Bar.php:122, ../includes/Elements/Progress_Bar.php:681, ../includes/Elements/Woo_Cart.php:197, ../includes/Elements/Woo_Cart.php:439, ../includes/Elements/Woo_Cart.php:570, ../includes/Elements/Woo_Cart.php:641, ../includes/Elements/Woo_Cart.php:719, ../includes/Elements/Woo_Checkout.php:335, ../includes/Elements/Woo_Checkout.php:445, ../includes/Elements/Woo_Checkout.php:539, ../includes/Elements/Woo_Product_Carousel.php:1512, ../includes/Elements/Woo_Product_Gallery.php:1764, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:410, ../includes/Extensions/Table_of_Content.php:110, ../includes/Traits/Woo_Product_Comparable.php:41, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1083, ../includes/Traits/Woo_Product_Comparable.php:1201
|
584 |
msgid "Title"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../includes/Controls/Select2.php:32, ../includes/Elements/GravityForms.php:1135, ../includes/Elements/Pricing_Table.php:196, ../includes/Elements/Pricing_Table.php:203, ../includes/Elements/Product_Grid.php:143, ../includes/Elements/Product_Grid.php:2458, ../includes/Elements/Woo_Cart.php:198, ../includes/Elements/Woo_Cart.php:394, ../includes/Elements/Woo_Cart.php:557, ../includes/Elements/Woo_Cart.php:572, ../includes/Elements/Woo_Checkout.php:220, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1541, ../includes/Elements/Woo_Product_Gallery.php:113, ../includes/Elements/Woo_Product_Gallery.php:1793, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:79
|
588 |
msgid "Price"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../includes/Controls/Select2.php:33, ../includes/Elements/Product_Grid.php:2607, ../includes/Elements/Woo_Cart.php:199, ../includes/Elements/Woo_Cart.php:398, ../includes/Elements/Woo_Cart.php:628, ../includes/Elements/Woo_Cart.php:643, ../includes/Elements/Woo_Checkout.php:203, ../includes/Elements/Woo_Product_Carousel.php:1702, ../includes/Elements/Woo_Product_Gallery.php:1942
|
592 |
msgid "Quantity"
|
593 |
msgstr ""
|
594 |
|
656 |
msgid "Sort"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Betterdocs_Search_Form.php:155, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:2292, ../includes/Elements/FluentForm.php:203, ../includes/Elements/FluentForm.php:891, ../includes/Elements/Formstack.php:244, ../includes/Elements/Formstack.php:1090, ../includes/Elements/GravityForms.php:231, ../includes/Elements/GravityForms.php:1209, ../includes/Elements/Login_Register.php:1092, ../includes/Elements/NinjaForms.php:183, ../includes/Elements/NinjaForms.php:939, ../includes/Elements/Woo_Cart.php:946, ../includes/Elements/WpForms.php:190, ../includes/Elements/WpForms.php:896
|
660 |
msgid "Placeholder"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../includes/Elements/Advanced_Data_Table.php:180, ../includes/Elements/Advanced_Data_Table.php:1069, ../includes/Elements/Facebook_Feed.php:391, ../includes/Elements/FluentForm.php:1731, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:2131, ../includes/Elements/Product_Grid.php:2182
|
664 |
msgid "Pagination"
|
665 |
msgstr ""
|
666 |
|
668 |
msgid "Pagination Type"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../includes/Elements/Advanced_Data_Table.php:193, ../includes/Elements/Advanced_Data_Table.php:1345, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Flip_Box.php:657, ../includes/Elements/FluentForm.php:1965, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:350, ../includes/Elements/Interactive_Circle.php:84, ../includes/Elements/Interactive_Circle.php:134, ../includes/Elements/Pricing_Table.php:502, ../includes/Elements/Pricing_Table.php:1835, ../includes/Elements/Product_Grid.php:1834, ../includes/Elements/Woo_Cart.php:1756, ../includes/Elements/Woo_Cart.php:2004, ../includes/Elements/Woo_Checkout.php:1351, ../includes/Elements/Woo_Checkout.php:1682, ../includes/Elements/Woo_Checkout.php:2541, ../includes/Elements/Woo_Product_Carousel.php:1295, ../includes/Elements/Woo_Product_Gallery.php:1641, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1261
|
672 |
msgid "Button"
|
673 |
msgstr ""
|
674 |
|
716 |
msgid "Table"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: ../includes/Elements/Advanced_Data_Table.php:324, ../includes/Elements/Advanced_Data_Table.php:885, ../includes/Elements/Advanced_Data_Table.php:1080, ../includes/Elements/Betterdocs_Search_Form.php:320, ../includes/Elements/Caldera_Forms.php:1159, ../includes/Elements/Caldera_Forms.php:1173, ../includes/Elements/Contact_Form_7.php:1185, ../includes/Elements/Contact_Form_7.php:1199, ../includes/Elements/Creative_Button.php:467, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:1150, ../includes/Elements/Dual_Color_Header.php:749, ../includes/Elements/Dual_Color_Header.php:829, ../includes/Elements/Filterable_Gallery.php:2157, ../includes/Elements/Filterable_Gallery.php:2315, ../includes/Elements/FluentForm.php:1509, ../includes/Elements/FluentForm.php:1523, ../includes/Elements/Formstack.php:1395, ../includes/Elements/Formstack.php:1409, ../includes/Elements/GravityForms.php:1860, ../includes/Elements/GravityForms.php:1976, ../includes/Elements/GravityForms.php:1990, ../includes/Elements/GravityForms.php:2223, ../includes/Elements/Interactive_Circle.php:419, ../includes/Elements/Login_Register.php:1498, ../includes/Elements/Login_Register.php:2026, ../includes/Elements/NinjaForms.php:1323, ../includes/Elements/NinjaForms.php:1337, ../includes/Elements/Progress_Bar.php:356, ../includes/Elements/Sticky_Video.php:442, ../includes/Elements/Sticky_Video.php:526, ../includes/Elements/Twitter_Feed.php:804, ../includes/Elements/Woo_Cart.php:451, ../includes/Elements/Woo_Cart.php:607, ../includes/Elements/Woo_Cart.php:685, ../includes/Elements/Woo_Cart.php:756, ../includes/Elements/Woo_Cart.php:864, ../includes/Elements/Woo_Cart.php:2164, ../includes/Elements/Woo_Product_Carousel.php:1303, ../includes/Elements/Woo_Product_Carousel.php:2133, ../includes/Elements/Woo_Product_Carousel.php:2336, ../includes/Elements/Woo_Product_Carousel.php:2416, ../includes/Elements/Woo_Product_Gallery.php:1163, ../includes/Elements/WpForms.php:1163, ../includes/Elements/WpForms.php:1177, ../includes/Extensions/Scroll_to_Top.php:239, ../includes/Extensions/Table_of_Content.php:431, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118
|
720 |
msgid "Width"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:384, ../includes/Elements/Adv_Accordion.php:573, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:694, ../includes/Elements/Adv_Accordion.php:777, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Accordion.php:945, ../includes/Elements/Adv_Accordion.php:991, ../includes/Elements/Adv_Tabs.php:360, ../includes/Elements/Adv_Tabs.php:554, ../includes/Elements/Adv_Tabs.php:621, ../includes/Elements/Adv_Tabs.php:690, ../includes/Elements/Adv_Tabs.php:784, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:557, ../includes/Elements/Cta_Box.php:884, ../includes/Elements/Cta_Box.php:1201, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:810, ../includes/Elements/Event_Calendar.php:877, ../includes/Elements/Event_Calendar.php:931, ../includes/Elements/Event_Calendar.php:1603, ../includes/Elements/Event_Calendar.php:1674, ../includes/Elements/Facebook_Feed.php:466, ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1051, ../includes/Elements/Filterable_Gallery.php:1131, ../includes/Elements/Filterable_Gallery.php:1278, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:1554, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:1890, ../includes/Elements/Filterable_Gallery.php:2411, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:994, ../includes/Elements/Flip_Box.php:1107, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:879, ../includes/Elements/GravityForms.php:943, ../includes/Elements/GravityForms.php:1678, ../includes/Elements/GravityForms.php:1884, ../includes/Elements/GravityForms.php:2053, ../includes/Elements/GravityForms.php:2280, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Interactive_Circle.php:357, ../includes/Elements/Interactive_Circle.php:503, ../includes/Elements/Interactive_Circle.php:730, ../includes/Elements/Login_Register.php:2778, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1786, ../includes/Elements/Pricing_Table.php:1952, ../includes/Elements/Product_Grid.php:2277, ../includes/Elements/Simple_Menu.php:631, ../includes/Elements/Simple_Menu.php:704, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:482, ../includes/Elements/Twitter_Feed.php:461, ../includes/Elements/Twitter_Feed.php:551, ../includes/Elements/Twitter_Feed.php:868, ../includes/Elements/Woo_Checkout.php:1571, ../includes/Elements/Woo_Checkout.php:1850, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2675, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:545, ../includes/Traits/Controls.php:1324, ../includes/Traits/Controls.php:1378, ../includes/Traits/Controls.php:1508
|
724 |
msgid "Border"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Accordion.php:580, ../includes/Elements/Adv_Accordion.php:640, ../includes/Elements/Adv_Accordion.php:701, ../includes/Elements/Adv_Tabs.php:368, ../includes/Elements/Adv_Tabs.php:561, ../includes/Elements/Adv_Tabs.php:628, ../includes/Elements/Adv_Tabs.php:697, ../includes/Elements/Adv_Tabs.php:791, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:206, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:565, ../includes/Elements/Cta_Box.php:896, ../includes/Elements/Cta_Box.php:1209, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:818, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Event_Calendar.php:939, ../includes/Elements/Event_Calendar.php:1175, ../includes/Elements/Event_Calendar.php:1343, ../includes/Elements/Event_Calendar.php:1611, ../includes/Elements/Event_Calendar.php:1682, ../includes/Elements/Facebook_Feed.php:491, ../includes/Elements/Facebook_Feed.php:551, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:880, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1059, ../includes/Elements/Filterable_Gallery.php:1139, ../includes/Elements/Filterable_Gallery.php:1343, ../includes/Elements/Filterable_Gallery.php:1837, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:2069, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2433, ../includes/Elements/Filterable_Gallery.php:2542, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1017, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/Flip_Box.php:1391, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:890, ../includes/Elements/GravityForms.php:1360, ../includes/Elements/GravityForms.php:1556, ../includes/Elements/GravityForms.php:1688, ../includes/Elements/GravityForms.php:1894, ../includes/Elements/GravityForms.php:2063, ../includes/Elements/GravityForms.php:2290, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1214, ../includes/Elements/Login_Register.php:1579, ../includes/Elements/Login_Register.php:1814, ../includes/Elements/Login_Register.php:1988, ../includes/Elements/Login_Register.php:2144, ../includes/Elements/Login_Register.php:2284, ../includes/Elements/Login_Register.php:2378, ../includes/Elements/Login_Register.php:2469, ../includes/Elements/Login_Register.php:2643, ../includes/Elements/Login_Register.php:2680, ../includes/Elements/Login_Register.php:2794, ../includes/Elements/Login_Register.php:3304, ../includes/Elements/Login_Register.php:3341, ../includes/Elements/Login_Register.php:3625, ../includes/Elements/Login_Register.php:3662, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Post_Timeline.php:183, ../includes/Elements/Post_Timeline.php:266, ../includes/Elements/Post_Timeline.php:564, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Pricing_Table.php:1560, ../includes/Elements/Pricing_Table.php:1809, ../includes/Elements/Pricing_Table.php:1960, ../includes/Elements/Product_Grid.php:969, ../includes/Elements/Product_Grid.php:2021, ../includes/Elements/Product_Grid.php:2377, ../includes/Elements/Product_Grid.php:2717, ../includes/Elements/Product_Grid.php:2916, ../includes/Elements/Product_Grid.php:2948, ../includes/Elements/Simple_Menu.php:639, ../includes/Elements/Sticky_Video.php:592, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:499, ../includes/Elements/Twitter_Feed.php:469, ../includes/Elements/Twitter_Feed.php:562, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Cart.php:1317, ../includes/Elements/Woo_Cart.php:1464, ../includes/Elements/Woo_Cart.php:1720, ../includes/Elements/Woo_Cart.php:1859, ../includes/Elements/Woo_Cart.php:1960, ../includes/Elements/Woo_Cart.php:2114, ../includes/Elements/Woo_Cart.php:2319, ../includes/Elements/Woo_Cart.php:2405, ../includes/Elements/Woo_Cart.php:2489, ../includes/Elements/Woo_Checkout.php:659, ../includes/Elements/Woo_Checkout.php:808, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1252, ../includes/Elements/Woo_Checkout.php:1457, ../includes/Elements/Woo_Checkout.php:1580, ../includes/Elements/Woo_Checkout.php:1788, ../includes/Elements/Woo_Checkout.php:1996, ../includes/Elements/Woo_Checkout.php:2198, ../includes/Elements/Woo_Checkout.php:2378, ../includes/Elements/Woo_Checkout.php:2658, ../includes/Elements/Woo_Product_Carousel.php:1008, ../includes/Elements/Woo_Product_Carousel.php:1410, ../includes/Elements/Woo_Product_Carousel.php:1813, ../includes/Elements/Woo_Product_Carousel.php:2009, ../includes/Elements/Woo_Product_Carousel.php:2041, ../includes/Elements/Woo_Product_Carousel.php:2251, ../includes/Elements/Woo_Product_Carousel.php:2374, ../includes/Elements/Woo_Product_Carousel.php:2498, ../includes/Elements/Woo_Product_Carousel.php:2685, ../includes/Elements/Woo_Product_Gallery.php:675, ../includes/Elements/Woo_Product_Gallery.php:1692, ../includes/Elements/Woo_Product_Gallery.php:2052, ../includes/Elements/Woo_Product_Gallery.php:2251, ../includes/Elements/Woo_Product_Gallery.php:2283, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Scroll_to_Top.php:443, ../includes/Extensions/Table_of_Content.php:568, ../includes/Extensions/Table_of_Content.php:783, ../includes/Traits/Controls.php:1332, ../includes/Traits/Controls.php:1386, ../includes/Traits/Controls.php:1516, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394
|
728 |
msgid "Border Radius"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../includes/Elements/Advanced_Data_Table.php:400, ../includes/Elements/Advanced_Data_Table.php:1463, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:697, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Event_Calendar.php:1709, ../includes/Elements/Product_Grid.php:929, ../includes/Elements/Product_Grid.php:957, ../includes/Elements/Product_Grid.php:2940, ../includes/Elements/Product_Grid.php:2975, ../includes/Elements/Progress_Bar.php:652, ../includes/Elements/Twitter_Feed.php:664, ../includes/Elements/Twitter_Feed.php:876, ../includes/Elements/Woo_Cart.php:1296, ../includes/Elements/Woo_Cart.php:1453, ../includes/Elements/Woo_Cart.php:2311, ../includes/Elements/Woo_Cart.php:2396, ../includes/Elements/Woo_Cart.php:2481, ../includes/Elements/Woo_Product_Carousel.php:967, ../includes/Elements/Woo_Product_Carousel.php:996, ../includes/Elements/Woo_Product_Carousel.php:2033, ../includes/Elements/Woo_Product_Carousel.php:2068, ../includes/Elements/Woo_Product_Carousel.php:2747, ../includes/Elements/Woo_Product_Gallery.php:635, ../includes/Elements/Woo_Product_Gallery.php:663, ../includes/Elements/Woo_Product_Gallery.php:1243, ../includes/Elements/Woo_Product_Gallery.php:1419, ../includes/Elements/Woo_Product_Gallery.php:2275, ../includes/Elements/Woo_Product_Gallery.php:2310, ../includes/Extensions/Table_of_Content.php:557, ../includes/Extensions/Table_of_Content.php:802, ../includes/Traits/Woo_Product_Comparable.php:1418
|
732 |
msgid "Box Shadow"
|
733 |
msgstr ""
|
734 |
|
736 |
msgid "Head"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:739, ../includes/Elements/Event_Calendar.php:769, ../includes/Elements/Event_Calendar.php:983, ../includes/Elements/Event_Calendar.php:1058, ../includes/Elements/Event_Calendar.php:1092, ../includes/Elements/Event_Calendar.php:1335, ../includes/Elements/Event_Calendar.php:1398, ../includes/Elements/Event_Calendar.php:1427, ../includes/Elements/Event_Calendar.php:1495, ../includes/Elements/Event_Calendar.php:1653, ../includes/Elements/Filterable_Gallery.php:1965, ../includes/Elements/Filterable_Gallery.php:2012, ../includes/Elements/Filterable_Gallery.php:2048, ../includes/Elements/Filterable_Gallery.php:2105, ../includes/Elements/Filterable_Gallery.php:2399, ../includes/Elements/Filterable_Gallery.php:2559, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:529, ../includes/Elements/GravityForms.php:560, ../includes/Elements/GravityForms.php:601, ../includes/Elements/GravityForms.php:644, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1046, ../includes/Elements/GravityForms.php:1182, ../includes/Elements/GravityForms.php:1772, ../includes/Elements/GravityForms.php:1792, ../includes/Elements/GravityForms.php:1827, ../includes/Elements/GravityForms.php:2162, ../includes/Elements/GravityForms.php:2383, ../includes/Elements/GravityForms.php:2576, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Post_Grid.php:510, ../includes/Elements/Post_Grid.php:522, ../includes/Elements/Post_Grid.php:664, ../includes/Elements/Post_Grid.php:876, ../includes/Elements/Post_Timeline.php:283, ../includes/Elements/Post_Timeline.php:544, ../includes/Elements/Product_Grid.php:2437, ../includes/Elements/Product_Grid.php:2468, ../includes/Elements/Product_Grid.php:2510, ../includes/Elements/Product_Grid.php:2576, ../includes/Elements/Product_Grid.php:2617, ../includes/Elements/Product_Grid.php:2674, ../includes/Elements/Product_Grid.php:2791, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Simple_Menu.php:841, ../includes/Elements/Simple_Menu.php:1152, ../includes/Elements/Woo_Cart.php:1705, ../includes/Elements/Woo_Cart.php:1766, ../includes/Elements/Woo_Cart.php:1943, ../includes/Elements/Woo_Cart.php:2013, ../includes/Elements/Woo_Checkout.php:1360, ../includes/Elements/Woo_Checkout.php:1691, ../includes/Elements/Woo_Product_Carousel.php:1521, ../includes/Elements/Woo_Product_Carousel.php:1551, ../includes/Elements/Woo_Product_Carousel.php:1593, ../includes/Elements/Woo_Product_Carousel.php:1672, ../includes/Elements/Woo_Product_Carousel.php:1712, ../includes/Elements/Woo_Product_Carousel.php:1769, ../includes/Elements/Woo_Product_Carousel.php:1888, ../includes/Elements/Woo_Product_Gallery.php:1773, ../includes/Elements/Woo_Product_Gallery.php:1803, ../includes/Elements/Woo_Product_Gallery.php:1845, ../includes/Elements/Woo_Product_Gallery.php:1911, ../includes/Elements/Woo_Product_Gallery.php:1952, ../includes/Elements/Woo_Product_Gallery.php:2009, ../includes/Elements/Woo_Product_Gallery.php:2126, ../includes/Elements/WpForms.php:432, ../includes/Elements/WpForms.php:481, ../includes/Elements/WpForms.php:545, ../includes/Elements/WpForms.php:785, ../includes/Elements/WpForms.php:863, ../includes/Elements/WpForms.php:1287, ../includes/Traits/Woo_Product_Comparable.php:1077, ../includes/Traits/Woo_Product_Comparable.php:1195
|
740 |
msgid "Typography"
|
741 |
msgstr ""
|
742 |
|
744 |
msgid "Text Alignment"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1007, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:303, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:673, ../includes/Elements/GravityForms.php:1950, ../includes/Elements/GravityForms.php:2200, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:712, ../includes/Elements/Login_Register.php:745, ../includes/Elements/Login_Register.php:2587, ../includes/Elements/Login_Register.php:3255, ../includes/Elements/Login_Register.php:3575, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:642, ../includes/Elements/Post_Grid.php:710, ../includes/Elements/Post_Grid.php:805, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:317, ../includes/Elements/Post_Timeline.php:375, ../includes/Elements/Pricing_Table.php:257, ../includes/Elements/Pricing_Table.php:374, ../includes/Elements/Pricing_Table.php:676, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Pricing_Table.php:841, ../includes/Elements/Product_Grid.php:721, ../includes/Elements/Product_Grid.php:1039, ../includes/Elements/Product_Grid.php:1713, ../includes/Elements/Product_Grid.php:2198, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:198, ../includes/Elements/Simple_Menu.php:343, ../includes/Elements/Simple_Menu.php:750, ../includes/Elements/Simple_Menu.php:776, ../includes/Elements/Simple_Menu.php:801, ../includes/Elements/Simple_Menu.php:1096, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:209, ../includes/Elements/Tooltip.php:288, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:269, ../includes/Elements/Woo_Cart.php:494, ../includes/Elements/Woo_Cart.php:586, ../includes/Elements/Woo_Cart.php:657, ../includes/Elements/Woo_Cart.php:735, ../includes/Elements/Woo_Cart.php:843, ../includes/Elements/Woo_Cart.php:1588, ../includes/Elements/Woo_Cart.php:2194, ../includes/Elements/Woo_Product_Carousel.php:704, ../includes/Elements/Woo_Product_Carousel.php:820, ../includes/Elements/Woo_Product_Carousel.php:869, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:552, ../includes/Elements/Woo_Product_Gallery.php:1519, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:462, ../includes/Traits/Controls.php:604, ../includes/Traits/Controls.php:1259, ../includes/Traits/Controls.php:1597, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1971
|
748 |
msgid "Left"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1011, ../includes/Elements/Event_Calendar.php:1143, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:677, ../includes/Elements/GravityForms.php:1954, ../includes/Elements/GravityForms.php:2204, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:3237, ../includes/Elements/Login_Register.php:3259, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3556, ../includes/Elements/Login_Register.php:3579, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:646, ../includes/Elements/Post_Grid.php:714, ../includes/Elements/Post_Grid.php:809, ../includes/Elements/Post_Grid.php:892, ../includes/Elements/Post_Timeline.php:321, ../includes/Elements/Post_Timeline.php:379, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:725, ../includes/Elements/Product_Grid.php:1043, ../includes/Elements/Product_Grid.php:2202, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:202, ../includes/Elements/Simple_Menu.php:347, ../includes/Elements/Simple_Menu.php:754, ../includes/Elements/Simple_Menu.php:780, ../includes/Elements/Simple_Menu.php:805, ../includes/Elements/Simple_Menu.php:1100, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:213, ../includes/Elements/Tooltip.php:381, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:273, ../includes/Elements/Woo_Cart.php:590, ../includes/Elements/Woo_Cart.php:661, ../includes/Elements/Woo_Cart.php:739, ../includes/Elements/Woo_Cart.php:847, ../includes/Elements/Woo_Cart.php:1592, ../includes/Elements/Woo_Cart.php:2198, ../includes/Elements/Woo_Product_Carousel.php:873, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:556, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:603, ../includes/Traits/Controls.php:1263, ../includes/Traits/Controls.php:1601, ../includes/Traits/Controls.php:1975
|
752 |
msgid "Center"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:549, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:736, ../includes/Elements/Adv_Tabs.php:527, ../includes/Elements/Adv_Tabs.php:594, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:810, ../includes/Elements/Cta_Box.php:825, ../includes/Elements/Cta_Box.php:954, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Cta_Box.php:1161, ../includes/Elements/Cta_Box.php:1176, ../includes/Elements/Cta_Box.php:1230, ../includes/Elements/Cta_Box.php:1245, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Event_Calendar.php:1286, ../includes/Elements/Filterable_Gallery.php:960, ../includes/Elements/Filterable_Gallery.php:1026, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:516, ../includes/Elements/GravityForms.php:547, ../includes/Elements/GravityForms.php:586, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:716, ../includes/Elements/GravityForms.php:980, ../includes/Elements/GravityForms.php:1033, ../includes/Elements/GravityForms.php:1220, ../includes/Elements/GravityForms.php:1663, ../includes/Elements/GravityForms.php:1739, ../includes/Elements/GravityForms.php:2039, ../includes/Elements/GravityForms.php:2131, ../includes/Elements/GravityForms.php:2267, ../includes/Elements/GravityForms.php:2354, ../includes/Elements/GravityForms.php:2428, ../includes/Elements/GravityForms.php:2563, ../includes/Elements/Info_Box.php:1236, ../includes/Elements/Info_Box.php:1282, ../includes/Elements/Interactive_Circle.php:476, ../includes/Elements/Interactive_Circle.php:536, ../includes/Elements/Interactive_Circle.php:604, ../includes/Elements/Interactive_Circle.php:689, ../includes/Elements/Login_Register.php:2616, ../includes/Elements/Login_Register.php:2755, ../includes/Elements/Login_Register.php:3099, ../includes/Elements/Login_Register.php:3284, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:3605, ../includes/Elements/Login_Register.php:3642, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1912, ../includes/Elements/Pricing_Table.php:1981, ../includes/Elements/Product_Grid.php:2252, ../includes/Elements/Product_Grid.php:2290, ../includes/Elements/Product_Grid.php:2334, ../includes/Elements/Simple_Menu.php:373, ../includes/Elements/Simple_Menu.php:407, ../includes/Elements/Simple_Menu.php:441, ../includes/Elements/Simple_Menu.php:499, ../includes/Elements/Simple_Menu.php:533, ../includes/Elements/Simple_Menu.php:859, ../includes/Elements/Simple_Menu.php:986, ../includes/Elements/Simple_Menu.php:1170, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Tooltip.php:418, ../includes/Elements/Tooltip.php:461, ../includes/Elements/Tooltip.php:634, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/Woo_Cart.php:1248, ../includes/Elements/Woo_Cart.php:1502, ../includes/Elements/Woo_Cart.php:1793, ../includes/Elements/Woo_Cart.php:1831, ../includes/Elements/Woo_Cart.php:1919, ../includes/Elements/Woo_Cart.php:2043, ../includes/Elements/Woo_Cart.php:2084, ../includes/Elements/Woo_Cart.php:2279, ../includes/Elements/Woo_Cart.php:2362, ../includes/Elements/Woo_Cart.php:2449, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:626, ../includes/Extensions/Table_of_Content.php:941, ../includes/Extensions/Table_of_Content.php:964, ../includes/Extensions/Table_of_Content.php:990, ../includes/Traits/Controls.php:1298, ../includes/Traits/Controls.php:1353, ../includes/Traits/Controls.php:1483, ../includes/Traits/Controls.php:1545, ../includes/Traits/Controls.php:1928
|
756 |
msgid "Text Color"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:885, ../includes/Elements/Adv_Accordion.php:931, ../includes/Elements/Adv_Accordion.php:977, ../includes/Elements/Adv_Tabs.php:508, ../includes/Elements/Adv_Tabs.php:724, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:477, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:839, ../includes/Elements/Cta_Box.php:855, ../includes/Elements/Cta_Box.php:983, ../includes/Elements/Cta_Box.php:1000, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1265, ../includes/Elements/Filterable_Gallery.php:835, ../includes/Elements/Filterable_Gallery.php:972, ../includes/Elements/Filterable_Gallery.php:1038, ../includes/Elements/Filterable_Gallery.php:1184, ../includes/Elements/Filterable_Gallery.php:1374, ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1509, ../includes/Elements/Filterable_Gallery.php:1525, ../includes/Elements/Filterable_Gallery.php:1727, ../includes/Elements/Filterable_Gallery.php:1865, ../includes/Elements/Filterable_Gallery.php:2495, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:704, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1649, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1848, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2118, ../includes/Elements/GravityForms.php:2255, ../includes/Elements/GravityForms.php:2342, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1248, ../includes/Elements/Info_Box.php:1294, ../includes/Elements/Interactive_Circle.php:465, ../includes/Elements/Interactive_Circle.php:522, ../includes/Elements/Interactive_Circle.php:590, ../includes/Elements/Interactive_Circle.php:672, ../includes/Elements/Login_Register.php:1594, ../includes/Elements/Login_Register.php:1727, ../includes/Elements/Login_Register.php:1829, ../includes/Elements/Login_Register.php:2003, ../includes/Elements/Login_Register.php:2359, ../includes/Elements/Login_Register.php:2450, ../includes/Elements/Login_Register.php:2630, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:2765, ../includes/Elements/Login_Register.php:3292, ../includes/Elements/Login_Register.php:3329, ../includes/Elements/Login_Register.php:3613, ../includes/Elements/Login_Register.php:3650, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:962, ../includes/Elements/Post_Timeline.php:154, ../includes/Elements/Pricing_Table.php:737, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Pricing_Table.php:1427, ../includes/Elements/Pricing_Table.php:1496, ../includes/Elements/Pricing_Table.php:1662, ../includes/Elements/Pricing_Table.php:1924, ../includes/Elements/Pricing_Table.php:1993, ../includes/Elements/Product_Grid.php:1862, ../includes/Elements/Product_Grid.php:1970, ../includes/Elements/Product_Grid.php:2078, ../includes/Elements/Product_Grid.php:2264, ../includes/Elements/Product_Grid.php:2302, ../includes/Elements/Product_Grid.php:2346, ../includes/Elements/Product_Grid.php:2594, ../includes/Elements/Product_Grid.php:2637, ../includes/Elements/Product_Grid.php:2698, ../includes/Elements/Product_Grid.php:2749, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:277, ../includes/Elements/Simple_Menu.php:386, ../includes/Elements/Simple_Menu.php:420, ../includes/Elements/Simple_Menu.php:454, ../includes/Elements/Simple_Menu.php:512, ../includes/Elements/Simple_Menu.php:546, ../includes/Elements/Simple_Menu.php:618, ../includes/Elements/Simple_Menu.php:690, ../includes/Elements/Simple_Menu.php:873, ../includes/Elements/Simple_Menu.php:953, ../includes/Elements/Simple_Menu.php:1001, ../includes/Elements/Simple_Menu.php:1048, ../includes/Elements/Simple_Menu.php:1182, ../includes/Elements/Simple_Menu.php:1262, ../includes/Elements/Simple_Menu.php:1309, ../includes/Elements/Simple_Menu.php:1356, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/Twitter_Feed.php:414, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Cart.php:1143, ../includes/Elements/Woo_Cart.php:1782, ../includes/Elements/Woo_Cart.php:1820, ../includes/Elements/Woo_Cart.php:2031, ../includes/Elements/Woo_Cart.php:2072, ../includes/Elements/Woo_Checkout.php:629, ../includes/Elements/Woo_Checkout.php:744, ../includes/Elements/Woo_Checkout.php:866, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1416, ../includes/Elements/Woo_Checkout.php:1707, ../includes/Elements/Woo_Checkout.php:1747, ../includes/Elements/Woo_Checkout.php:2337, ../includes/Elements/Woo_Checkout.php:2467, ../includes/Elements/Woo_Checkout.php:2577, ../includes/Elements/Woo_Checkout.php:2617, ../includes/Elements/Woo_Product_Carousel.php:895, ../includes/Elements/Woo_Product_Carousel.php:1388, ../includes/Elements/Woo_Product_Carousel.php:1470, ../includes/Elements/Woo_Product_Carousel.php:1689, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Carousel.php:1794, ../includes/Elements/Woo_Product_Carousel.php:1846, ../includes/Elements/Woo_Product_Carousel.php:2650, ../includes/Elements/Woo_Product_Carousel.php:2706, ../includes/Elements/Woo_Product_Gallery.php:1680, ../includes/Elements/Woo_Product_Gallery.php:1730, ../includes/Elements/Woo_Product_Gallery.php:1929, ../includes/Elements/Woo_Product_Gallery.php:1972, ../includes/Elements/Woo_Product_Gallery.php:2033, ../includes/Elements/Woo_Product_Gallery.php:2084, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:428, ../includes/Extensions/Table_of_Content.php:613, ../includes/Extensions/Table_of_Content.php:759, ../includes/Extensions/Table_of_Content.php:823, ../includes/Traits/Controls.php:1495, ../includes/Traits/Controls.php:1557, ../includes/Traits/Controls.php:1938, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486
|
760 |
msgid "Background Color"
|
761 |
msgstr ""
|
762 |
|
764 |
msgid "Cell Border"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:514, ../includes/Elements/Adv_Accordion.php:754, ../includes/Elements/Adv_Tabs.php:337, ../includes/Elements/Adv_Tabs.php:482, ../includes/Elements/Adv_Tabs.php:761, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:440, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:532, ../includes/Elements/Cta_Box.php:745, ../includes/Elements/Cta_Box.php:1125, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:646, ../includes/Elements/Facebook_Feed.php:718, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:597, ../includes/Elements/Filterable_Gallery.php:847, ../includes/Elements/Filterable_Gallery.php:924, ../includes/Elements/Filterable_Gallery.php:1106, ../includes/Elements/Filterable_Gallery.php:1196, ../includes/Elements/Filterable_Gallery.php:1540, ../includes/Elements/Filterable_Gallery.php:1751, ../includes/Elements/Filterable_Gallery.php:2614, ../includes/Elements/Flip_Box.php:1005, ../includes/Elements/Flip_Box.php:1118, ../includes/Elements/Flip_Box.php:1354, ../includes/Elements/FluentForm.php:790, ../includes/Elements/FluentForm.php:1158, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1336, ../includes/Elements/FluentForm.php:1421, ../includes/Elements/FluentForm.php:1602, ../includes/Elements/FluentForm.php:2025, ../includes/Elements/FluentForm.php:2191, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:766, ../includes/Elements/GravityForms.php:1387, ../includes/Elements/GravityForms.php:1583, ../includes/Elements/GravityForms.php:1702, ../includes/Elements/GravityForms.php:1906, ../includes/Elements/GravityForms.php:2076, ../includes/Elements/GravityForms.php:2302, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:556, ../includes/Elements/Interactive_Circle.php:334, ../includes/Elements/Interactive_Circle.php:707, ../includes/Elements/Login_Register.php:1557, ../includes/Elements/Login_Register.php:2122, ../includes/Elements/Login_Register.php:2261, ../includes/Elements/Login_Register.php:2334, ../includes/Elements/Login_Register.php:2425, ../includes/Elements/Login_Register.php:2527, ../includes/Elements/Login_Register.php:2563, ../includes/Elements/Login_Register.php:2725, ../includes/Elements/Login_Register.php:3197, ../includes/Elements/Login_Register.php:3496, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Post_Timeline.php:168, ../includes/Elements/Post_Timeline.php:552, ../includes/Elements/Pricing_Table.php:749, ../includes/Elements/Pricing_Table.php:1538, ../includes/Elements/Pricing_Table.php:1843, ../includes/Elements/Product_Grid.php:832, ../includes/Elements/Product_Grid.php:1083, ../includes/Elements/Product_Grid.php:1495, ../includes/Elements/Simple_Menu.php:318, ../includes/Elements/Simple_Menu.php:478, ../includes/Elements/Simple_Menu.php:651, ../includes/Elements/Simple_Menu.php:1115, ../includes/Elements/Team_Member.php:487, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:349, ../includes/Elements/Tooltip.php:601, ../includes/Elements/Twitter_Feed.php:444, ../includes/Elements/Twitter_Feed.php:503, ../includes/Elements/Twitter_Feed.php:536, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Cart.php:1202, ../includes/Elements/Woo_Cart.php:1732, ../includes/Elements/Woo_Cart.php:1879, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2127, ../includes/Elements/Woo_Cart.php:2229, ../includes/Elements/Woo_Checkout.php:640, ../includes/Elements/Woo_Checkout.php:1232, ../includes/Elements/Woo_Checkout.php:1279, ../includes/Elements/Woo_Checkout.php:1477, ../includes/Elements/Woo_Checkout.php:1607, ../includes/Elements/Woo_Checkout.php:1636, ../includes/Elements/Woo_Checkout.php:1808, ../includes/Elements/Woo_Checkout.php:2023, ../includes/Elements/Woo_Checkout.php:2359, ../includes/Elements/Woo_Checkout.php:2690, ../includes/Elements/Woo_Product_Carousel.php:1030, ../includes/Elements/Woo_Product_Carousel.php:2263, ../includes/Elements/Woo_Product_Gallery.php:590, ../includes/Elements/Woo_Product_Gallery.php:694, ../includes/Elements/Woo_Product_Gallery.php:973, ../includes/Elements/Woo_Product_Gallery.php:1218, ../includes/Elements/Woo_Product_Gallery.php:1280, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:648, ../includes/Extensions/Table_of_Content.php:836, ../includes/Traits/Controls.php:1402, ../includes/Traits/Controls.php:1447, ../includes/Traits/Controls.php:1948, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1614
|
768 |
msgid "Padding"
|
769 |
msgstr ""
|
770 |
|
784 |
msgid "Highlight"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../includes/Elements/Advanced_Data_Table.php:651, ../includes/Elements/Adv_Tabs.php:171, ../includes/Elements/Countdown.php:402, ../includes/Elements/Data_Table.php:148, ../includes/Elements/Filterable_Gallery.php:189, ../includes/Elements/Filterable_Gallery.php:229, ../includes/Elements/Flip_Box.php:204, ../includes/Elements/Flip_Box.php:435, ../includes/Elements/Flip_Box.php:654, ../includes/Elements/GravityForms.php:1060, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:885, ../includes/Elements/Info_Box.php:1023, ../includes/Elements/Info_Box.php:1119, ../includes/Elements/Interactive_Circle.php:285, ../includes/Elements/Post_Grid.php:936, ../includes/Elements/Sticky_Video.php:553, ../includes/Extensions/Table_of_Content.php:861, ../includes/Extensions/Table_of_Content.php:1082
|
788 |
msgid "None"
|
789 |
msgstr ""
|
790 |
|
812 |
msgid "Odd Row"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: ../includes/Elements/Advanced_Data_Table.php:913, ../includes/Elements/Dual_Color_Header.php:775, ../includes/Elements/Dual_Color_Header.php:855, ../includes/Elements/Flip_Box.php:123, ../includes/Elements/FluentForm.php:1317, ../includes/Elements/FluentForm.php:1402, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/Formstack.php:1661, ../includes/Elements/Image_Accordion.php:304, ../includes/Elements/Login_Register.php:2069, ../includes/Elements/Post_Timeline.php:247, ../includes/Elements/Progress_Bar.php:384, ../includes/Elements/Progress_Bar.php:436, ../includes/Elements/Sticky_Video.php:460, ../includes/Elements/Team_Member.php:318, ../includes/Elements/Twitter_Feed.php:831, ../includes/Elements/Woo_Product_Carousel.php:1322, ../includes/Elements/Woo_Product_Carousel.php:2155, ../includes/Elements/Woo_Product_Carousel.php:2355, ../includes/Elements/Woo_Product_Carousel.php:2443, ../includes/Extensions/Reading_Progress.php:128, ../includes/Extensions/Scroll_to_Top.php:266, ../includes/Extensions/Table_of_Content.php:283
|
816 |
msgid "Height"
|
817 |
msgstr ""
|
818 |
|
820 |
msgid "Margin Bottom"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:669, ../includes/Elements/GravityForms.php:1946, ../includes/Elements/GravityForms.php:2196, ../includes/Elements/Login_Register.php:3251, ../includes/Elements/Login_Register.php:3571, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:801, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Post_Timeline.php:478, ../includes/Elements/Product_Grid.php:717, ../includes/Elements/Product_Grid.php:1035, ../includes/Elements/Product_Grid.php:1709, ../includes/Elements/Product_Grid.php:2194, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Simple_Menu.php:339, ../includes/Elements/Simple_Menu.php:746, ../includes/Elements/Simple_Menu.php:772, ../includes/Elements/Simple_Menu.php:797, ../includes/Elements/Simple_Menu.php:1092, ../includes/Elements/Tooltip.php:204, ../includes/Elements/Woo_Cart.php:265, ../includes/Elements/Woo_Cart.php:490, ../includes/Elements/Woo_Cart.php:582, ../includes/Elements/Woo_Cart.php:653, ../includes/Elements/Woo_Cart.php:731, ../includes/Elements/Woo_Cart.php:839, ../includes/Elements/Woo_Cart.php:1584, ../includes/Elements/Woo_Cart.php:2190, ../includes/Elements/Woo_Product_Carousel.php:816, ../includes/Elements/Woo_Product_Carousel.php:865, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:548, ../includes/Elements/Woo_Product_Gallery.php:1515, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1255, ../includes/Traits/Controls.php:1967
|
824 |
msgid "Alignment"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:525, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Tabs.php:348, ../includes/Elements/Adv_Tabs.php:493, ../includes/Elements/Adv_Tabs.php:772, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:544, ../includes/Elements/Cta_Box.php:757, ../includes/Elements/Cta_Box.php:1137, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:859, ../includes/Elements/Filterable_Gallery.php:936, ../includes/Elements/Filterable_Gallery.php:1118, ../includes/Elements/Filterable_Gallery.php:1763, ../includes/Elements/Filterable_Gallery.php:2212, ../includes/Elements/Filterable_Gallery.php:2655, ../includes/Elements/Flip_Box.php:1342, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:394, ../includes/Elements/FluentForm.php:1170, ../includes/Elements/FluentForm.php:1225, ../includes/Elements/FluentForm.php:2203, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1116, ../includes/Elements/GravityForms.php:1375, ../includes/Elements/GravityForms.php:1571, ../includes/Elements/GravityForms.php:1920, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:983, ../includes/Elements/Info_Box.php:1375, ../includes/Elements/Interactive_Circle.php:345, ../includes/Elements/Interactive_Circle.php:718, ../includes/Elements/Login_Register.php:1542, ../includes/Elements/Login_Register.php:2107, ../includes/Elements/Login_Register.php:2246, ../includes/Elements/Login_Register.php:2319, ../includes/Elements/Login_Register.php:2410, ../includes/Elements/Login_Register.php:2512, ../includes/Elements/Login_Register.php:2548, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:3182, ../includes/Elements/Login_Register.php:3417, ../includes/Elements/Login_Register.php:3481, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:534, ../includes/Elements/Post_Grid.php:549, ../includes/Elements/Post_Grid.php:673, ../includes/Elements/Post_Grid.php:761, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Pricing_Table.php:761, ../includes/Elements/Pricing_Table.php:1087, ../includes/Elements/Pricing_Table.php:1157, ../includes/Elements/Pricing_Table.php:1855, ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:360, ../includes/Elements/Tooltip.php:612, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Cart.php:1214, ../includes/Elements/Woo_Cart.php:1744, ../includes/Elements/Woo_Cart.php:1891, ../includes/Elements/Woo_Cart.php:1986, ../includes/Elements/Woo_Cart.php:2141, ../includes/Elements/Woo_Cart.php:2243, ../includes/Elements/Woo_Checkout.php:1298, ../includes/Elements/Woo_Checkout.php:1655, ../includes/Elements/Woo_Product_Carousel.php:924, ../includes/Elements/Woo_Product_Gallery.php:1206, ../includes/Elements/Woo_Product_Gallery.php:1268, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1414, ../includes/Traits/Controls.php:1459, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462
|
828 |
msgid "Margin"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:536, ../includes/Elements/Adv_Accordion.php:864, ../includes/Elements/Adv_Tabs.php:504, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:398, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:805, ../includes/Elements/Cta_Box.php:1156, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:780, ../includes/Elements/Filterable_Gallery.php:955, ../includes/Elements/Filterable_Gallery.php:1720, ../includes/Elements/Filterable_Gallery.php:2484, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:697, ../includes/Elements/GravityForms.php:1287, ../includes/Elements/GravityForms.php:1483, ../includes/Elements/GravityForms.php:1642, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/GravityForms.php:2248, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Info_Box.php:1341, ../includes/Elements/Interactive_Circle.php:461, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3281, ../includes/Elements/Login_Register.php:3444, ../includes/Elements/Login_Register.php:3602, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1907, ../includes/Elements/Product_Grid.php:887, ../includes/Elements/Product_Grid.php:1534, ../includes/Elements/Product_Grid.php:1952, ../includes/Elements/Product_Grid.php:2247, ../includes/Elements/Product_Grid.php:2681, ../includes/Elements/Team_Member.php:714, ../includes/Elements/Tooltip.php:403, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Cart.php:1775, ../includes/Elements/Woo_Cart.php:2024, ../includes/Elements/Woo_Checkout.php:912, ../includes/Elements/Woo_Checkout.php:955, ../includes/Elements/Woo_Checkout.php:1098, ../includes/Elements/Woo_Checkout.php:1369, ../includes/Elements/Woo_Checkout.php:1700, ../includes/Elements/Woo_Checkout.php:2160, ../includes/Elements/Woo_Checkout.php:2416, ../includes/Elements/Woo_Checkout.php:2570, ../includes/Elements/Woo_Product_Carousel.php:936, ../includes/Elements/Woo_Product_Carousel.php:1372, ../includes/Elements/Woo_Product_Carousel.php:1777, ../includes/Elements/Woo_Product_Carousel.php:2221, ../includes/Elements/Woo_Product_Carousel.php:2643, ../includes/Elements/Woo_Product_Gallery.php:604, ../includes/Elements/Woo_Product_Gallery.php:1008, ../includes/Elements/Woo_Product_Gallery.php:1303, ../includes/Elements/Woo_Product_Gallery.php:1663, ../includes/Elements/Woo_Product_Gallery.php:2016, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:934, ../includes/Traits/Controls.php:1291, ../includes/Traits/Controls.php:1478, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1642
|
832 |
msgid "Normal"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:594, ../includes/Elements/Adv_Accordion.php:911, ../includes/Elements/Adv_Tabs.php:571, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:949, ../includes/Elements/Cta_Box.php:1225, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:847, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1718, ../includes/Elements/GravityForms.php:2111, ../includes/Elements/GravityForms.php:2335, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1276, ../includes/Elements/Info_Box.php:1451, ../includes/Elements/Interactive_Circle.php:272, ../includes/Elements/Interactive_Circle.php:518, ../includes/Elements/Login_Register.php:3318, ../includes/Elements/Login_Register.php:3639, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:403, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Product_Grid.php:937, ../includes/Elements/Product_Grid.php:1610, ../includes/Elements/Product_Grid.php:2061, ../includes/Elements/Product_Grid.php:2285, ../includes/Elements/Product_Grid.php:2732, ../includes/Elements/Simple_Menu.php:400, ../includes/Elements/Simple_Menu.php:526, ../includes/Elements/Simple_Menu.php:979, ../includes/Elements/Simple_Menu.php:1288, ../includes/Elements/Team_Member.php:791, ../includes/Elements/Tooltip.php:446, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Cart.php:1813, ../includes/Elements/Woo_Cart.php:2065, ../includes/Elements/Woo_Checkout.php:928, ../includes/Elements/Woo_Checkout.php:972, ../includes/Elements/Woo_Checkout.php:1114, ../includes/Elements/Woo_Checkout.php:1409, ../includes/Elements/Woo_Checkout.php:1740, ../includes/Elements/Woo_Checkout.php:2176, ../includes/Elements/Woo_Checkout.php:2610, ../includes/Elements/Woo_Product_Carousel.php:976, ../includes/Elements/Woo_Product_Carousel.php:1454, ../includes/Elements/Woo_Product_Carousel.php:1829, ../includes/Elements/Woo_Product_Carousel.php:2284, ../includes/Elements/Woo_Product_Carousel.php:2699, ../includes/Elements/Woo_Product_Gallery.php:643, ../includes/Elements/Woo_Product_Gallery.php:1076, ../includes/Elements/Woo_Product_Gallery.php:1337, ../includes/Elements/Woo_Product_Gallery.php:1713, ../includes/Elements/Woo_Product_Gallery.php:2067, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:957, ../includes/Traits/Controls.php:1346, ../includes/Traits/Controls.php:1540, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1692
|
836 |
msgid "Hover"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:246, ../includes/Elements/Betterdocs_Search_Form.php:283, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:609, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Cta_Box.php:612, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:695, ../includes/Elements/Cta_Box.php:1333, ../includes/Elements/Cta_Box.php:1348, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Event_Calendar.php:787, ../includes/Elements/Event_Calendar.php:854, ../includes/Elements/Event_Calendar.php:908, ../includes/Elements/Event_Calendar.php:991, ../includes/Elements/Event_Calendar.php:1066, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Facebook_Feed.php:784, ../includes/Elements/Facebook_Feed.php:822, ../includes/Elements/Facebook_Feed.php:862, ../includes/Elements/Facebook_Feed.php:910, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Facebook_Feed.php:986, ../includes/Elements/Facebook_Feed.php:1039, ../includes/Elements/Facebook_Feed.php:1077, ../includes/Elements/Facebook_Feed.php:1115, ../includes/Elements/Facebook_Feed.php:1147, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:541, ../includes/Elements/Feature_List.php:763, ../includes/Elements/Feature_List.php:797, ../includes/Elements/Filterable_Gallery.php:1217, ../includes/Elements/Filterable_Gallery.php:1257, ../includes/Elements/Filterable_Gallery.php:1579, ../includes/Elements/Filterable_Gallery.php:1594, ../includes/Elements/Filterable_Gallery.php:1639, ../includes/Elements/Filterable_Gallery.php:1654, ../includes/Elements/Filterable_Gallery.php:1739, ../includes/Elements/Filterable_Gallery.php:1877, ../includes/Elements/Filterable_Gallery.php:1953, ../includes/Elements/Filterable_Gallery.php:1989, ../includes/Elements/Filterable_Gallery.php:2036, ../includes/Elements/Filterable_Gallery.php:2177, ../includes/Elements/Filterable_Gallery.php:2364, ../includes/Elements/Flip_Box.php:951, ../includes/Elements/Flip_Box.php:1064, ../includes/Elements/Flip_Box.php:1191, ../includes/Elements/Flip_Box.php:1222, ../includes/Elements/Flip_Box.php:1260, ../includes/Elements/Flip_Box.php:1292, ../includes/Elements/Flip_Box.php:1366, ../includes/Elements/Flip_Box.php:1425, ../includes/Elements/FluentForm.php:441, ../includes/Elements/FluentForm.php:979, ../includes/Elements/FluentForm.php:1095, ../includes/Elements/FluentForm.php:1136, ../includes/Elements/FluentForm.php:1191, ../includes/Elements/FluentForm.php:1295, ../includes/Elements/FluentForm.php:1357, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/FluentForm.php:2167, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1191, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/GravityForms.php:1411, ../includes/Elements/GravityForms.php:1493, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/GravityForms.php:1800, ../includes/Elements/GravityForms.php:1836, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1355, ../includes/Elements/Info_Box.php:1431, ../includes/Elements/Interactive_Circle.php:387, ../includes/Elements/Login_Register.php:2349, ../includes/Elements/Login_Register.php:2440, ../includes/Elements/Login_Register.php:2854, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:863, ../includes/Elements/Pricing_Table.php:884, ../includes/Elements/Pricing_Table.php:948, ../includes/Elements/Pricing_Table.php:1039, ../includes/Elements/Pricing_Table.php:1068, ../includes/Elements/Pricing_Table.php:1109, ../includes/Elements/Pricing_Table.php:1138, ../includes/Elements/Pricing_Table.php:1178, ../includes/Elements/Pricing_Table.php:1213, ../includes/Elements/Pricing_Table.php:1394, ../includes/Elements/Pricing_Table.php:1526, ../includes/Elements/Product_Grid.php:1357, ../includes/Elements/Product_Grid.php:1957, ../includes/Elements/Product_Grid.php:2066, ../includes/Elements/Product_Grid.php:2403, ../includes/Elements/Product_Grid.php:2584, ../includes/Elements/Product_Grid.php:2625, ../includes/Elements/Product_Grid.php:2686, ../includes/Elements/Product_Grid.php:2737, ../includes/Elements/Product_Grid.php:2894, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Simple_Menu.php:941, ../includes/Elements/Simple_Menu.php:1035, ../includes/Elements/Simple_Menu.php:1250, ../includes/Elements/Simple_Menu.php:1343, ../includes/Elements/Twitter_Feed.php:695, ../includes/Elements/Twitter_Feed.php:724, ../includes/Elements/Twitter_Feed.php:754, ../includes/Elements/Twitter_Feed.php:924, ../includes/Elements/Woo_Checkout.php:584, ../includes/Elements/Woo_Checkout.php:758, ../includes/Elements/Woo_Checkout.php:772, ../includes/Elements/Woo_Checkout.php:880, ../includes/Elements/Woo_Checkout.php:894, ../includes/Elements/Woo_Checkout.php:1067, ../includes/Elements/Woo_Checkout.php:1103, ../includes/Elements/Woo_Checkout.php:1119, ../includes/Elements/Woo_Checkout.php:1187, ../includes/Elements/Woo_Checkout.php:1338, ../includes/Elements/Woo_Checkout.php:1388, ../includes/Elements/Woo_Checkout.php:1428, ../includes/Elements/Woo_Checkout.php:1525, ../includes/Elements/Woo_Checkout.php:1719, ../includes/Elements/Woo_Checkout.php:1759, ../includes/Elements/Woo_Checkout.php:1877, ../includes/Elements/Woo_Checkout.php:1921, ../includes/Elements/Woo_Checkout.php:1965, ../includes/Elements/Woo_Checkout.php:2071, ../includes/Elements/Woo_Checkout.php:2110, ../includes/Elements/Woo_Checkout.php:2150, ../includes/Elements/Woo_Checkout.php:2423, ../includes/Elements/Woo_Checkout.php:2444, ../includes/Elements/Woo_Checkout.php:2479, ../includes/Elements/Woo_Checkout.php:2500, ../includes/Elements/Woo_Checkout.php:2589, ../includes/Elements/Woo_Checkout.php:2629, ../includes/Elements/Woo_Product_Carousel.php:1182, ../includes/Elements/Woo_Product_Carousel.php:1377, ../includes/Elements/Woo_Product_Carousel.php:1459, ../includes/Elements/Woo_Product_Carousel.php:1679, ../includes/Elements/Woo_Product_Carousel.php:1720, ../includes/Elements/Woo_Product_Carousel.php:1782, ../includes/Elements/Woo_Product_Carousel.php:1834, ../includes/Elements/Woo_Product_Carousel.php:1987, ../includes/Elements/Woo_Product_Carousel.php:2228, ../includes/Elements/Woo_Product_Carousel.php:2291, ../includes/Elements/Woo_Product_Carousel.php:2324, ../includes/Elements/Woo_Product_Carousel.php:2662, ../includes/Elements/Woo_Product_Carousel.php:2718, ../includes/Elements/Woo_Product_Gallery.php:1308, ../includes/Elements/Woo_Product_Gallery.php:1342, ../includes/Elements/Woo_Product_Gallery.php:1380, ../includes/Elements/Woo_Product_Gallery.php:1668, ../includes/Elements/Woo_Product_Gallery.php:1718, ../includes/Elements/Woo_Product_Gallery.php:1919, ../includes/Elements/Woo_Product_Gallery.php:1960, ../includes/Elements/Woo_Product_Gallery.php:2021, ../includes/Elements/Woo_Product_Gallery.php:2072, ../includes/Elements/Woo_Product_Gallery.php:2229, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1093, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484
|
840 |
msgid "Color"
|
841 |
msgstr ""
|
842 |
|
860 |
msgid "Select Accordion Tab Title Tag"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: ../includes/Elements/Adv_Accordion.php:127, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:234, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:302, ../includes/Elements/Flip_Box.php:533, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:234, ../includes/Elements/Product_Grid.php:440, ../includes/Elements/Product_Grid.php:1794, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:158, ../includes/Elements/Woo_Product_Carousel.php:235, ../includes/Elements/Woo_Product_Carousel.php:395, ../includes/Elements/Woo_Product_Gallery.php:459, ../includes/Elements/Woo_Product_Gallery.php:1580, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:831
|
864 |
msgid "H1"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../includes/Elements/Adv_Accordion.php:128, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:235, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:303, ../includes/Elements/Flip_Box.php:534, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:235, ../includes/Elements/Product_Grid.php:441, ../includes/Elements/Product_Grid.php:1795, ../includes/Elements/Progress_Bar.php:139, ../includes/Elements/Tooltip.php:159, ../includes/Elements/Woo_Product_Carousel.php:236, ../includes/Elements/Woo_Product_Carousel.php:396, ../includes/Elements/Woo_Product_Gallery.php:460, ../includes/Elements/Woo_Product_Gallery.php:1581, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:832
|
868 |
msgid "H2"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../includes/Elements/Adv_Accordion.php:129, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:236, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:304, ../includes/Elements/Flip_Box.php:535, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Product_Grid.php:442, ../includes/Elements/Product_Grid.php:1796, ../includes/Elements/Progress_Bar.php:140, ../includes/Elements/Tooltip.php:160, ../includes/Elements/Woo_Product_Carousel.php:237, ../includes/Elements/Woo_Product_Carousel.php:397, ../includes/Elements/Woo_Product_Gallery.php:461, ../includes/Elements/Woo_Product_Gallery.php:1582, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:833
|
872 |
msgid "H3"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../includes/Elements/Adv_Accordion.php:130, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:237, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:371, ../includes/Elements/Flip_Box.php:305, ../includes/Elements/Flip_Box.php:536, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Product_Grid.php:443, ../includes/Elements/Product_Grid.php:1797, ../includes/Elements/Progress_Bar.php:141, ../includes/Elements/Tooltip.php:161, ../includes/Elements/Woo_Product_Carousel.php:238, ../includes/Elements/Woo_Product_Carousel.php:398, ../includes/Elements/Woo_Product_Gallery.php:462, ../includes/Elements/Woo_Product_Gallery.php:1583, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:834
|
876 |
msgid "H4"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../includes/Elements/Adv_Accordion.php:131, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:372, ../includes/Elements/Flip_Box.php:306, ../includes/Elements/Flip_Box.php:537, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:238, ../includes/Elements/Product_Grid.php:444, ../includes/Elements/Product_Grid.php:1798, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Tooltip.php:162, ../includes/Elements/Woo_Product_Carousel.php:239, ../includes/Elements/Woo_Product_Carousel.php:399, ../includes/Elements/Woo_Product_Gallery.php:463, ../includes/Elements/Woo_Product_Gallery.php:1584, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:835
|
880 |
msgid "H5"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: ../includes/Elements/Adv_Accordion.php:132, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:239, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:373, ../includes/Elements/Flip_Box.php:307, ../includes/Elements/Flip_Box.php:538, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:239, ../includes/Elements/Product_Grid.php:445, ../includes/Elements/Product_Grid.php:1799, ../includes/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:163, ../includes/Elements/Woo_Product_Carousel.php:240, ../includes/Elements/Woo_Product_Carousel.php:400, ../includes/Elements/Woo_Product_Gallery.php:464, ../includes/Elements/Woo_Product_Gallery.php:1585, ../includes/Extensions/Table_of_Content.php:152, ../includes/Traits/Controls.php:836
|
884 |
msgid "H6"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: ../includes/Elements/Adv_Accordion.php:133, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:240, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:374, ../includes/Elements/Flip_Box.php:308, ../includes/Elements/Flip_Box.php:539, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:240, ../includes/Elements/Product_Grid.php:1800, ../includes/Elements/Woo_Product_Carousel.php:241, ../includes/Elements/Woo_Product_Carousel.php:401, ../includes/Elements/Woo_Product_Gallery.php:1586, ../includes/Traits/Controls.php:837
|
888 |
msgid "Span"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: ../includes/Elements/Adv_Accordion.php:134, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:241, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:375, ../includes/Elements/Flip_Box.php:309, ../includes/Elements/Flip_Box.php:540, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:241, ../includes/Elements/Product_Grid.php:1801, ../includes/Elements/Tooltip.php:166, ../includes/Elements/Woo_Product_Carousel.php:242, ../includes/Elements/Woo_Product_Carousel.php:402, ../includes/Elements/Woo_Product_Gallery.php:1587, ../includes/Traits/Controls.php:838
|
892 |
msgid "P"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../includes/Elements/Adv_Accordion.php:135, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:242, ../includes/Elements/Dual_Color_Header.php:146, ../includes/Elements/Filterable_Gallery.php:376, ../includes/Elements/Flip_Box.php:310, ../includes/Elements/Flip_Box.php:541, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:242, ../includes/Elements/Product_Grid.php:1802, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:403, ../includes/Elements/Woo_Product_Gallery.php:1588, ../includes/Traits/Controls.php:839
|
896 |
msgid "Div"
|
897 |
msgstr ""
|
898 |
|
912 |
msgid "Toggle Speed (ms)"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../includes/Elements/Adv_Accordion.php:195, ../includes/Elements/Countdown.php:142, ../includes/Elements/Cta_Box.php:73, ../includes/Elements/Dual_Color_Header.php:69, ../includes/Elements/Facebook_Feed.php:224, ../includes/Elements/Feature_List.php:65, ../includes/Elements/Tooltip.php:63
|
916 |
msgid "Content Settings"
|
917 |
msgstr ""
|
918 |
|
924 |
msgid "Enable Tab Icon"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: ../includes/Elements/Adv_Accordion.php:224, ../includes/Elements/Adv_Tabs.php:175, ../includes/Elements/Adv_Tabs.php:190, ../includes/Elements/Betterdocs_Category_Box.php:407, ../includes/Elements/Betterdocs_Category_Box.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:1065, ../includes/Elements/Betterdocs_Category_Grid.php:1074, ../includes/Elements/Betterdocs_Category_Grid.php:1206, ../includes/Elements/Betterdocs_Category_Grid.php:1313, ../includes/Elements/Creative_Button.php:131, ../includes/Elements/Cta_Box.php:187, ../includes/Elements/Cta_Box.php:306, ../includes/Elements/Data_Table.php:152, ../includes/Elements/Data_Table.php:171, ../includes/Elements/Data_Table.php:298, ../includes/Elements/Data_Table.php:351, ../includes/Elements/Dual_Color_Header.php:118, ../includes/Elements/Dual_Color_Header.php:273, ../includes/Elements/Feature_List.php:78, ../includes/Elements/Feature_List.php:94, ../includes/Elements/Feature_List.php:502, ../includes/Elements/Flip_Box.php:206, ../includes/Elements/Flip_Box.php:232, ../includes/Elements/Flip_Box.php:437, ../includes/Elements/Flip_Box.php:463, ../includes/Elements/Info_Box.php:107, ../includes/Elements/Info_Box.php:176, ../includes/Elements/Info_Box.php:441, ../includes/Elements/Interactive_Circle.php:139, ../includes/Elements/Pricing_Table.php:173, ../includes/Elements/Simple_Menu.php:894, ../includes/Elements/Simple_Menu.php:1203, ../includes/Elements/Team_Member.php:166, ../includes/Elements/Tooltip.php:74, ../includes/Elements/Tooltip.php:97, ../includes/Elements/Twitter_Feed.php:890, ../includes/Extensions/Scroll_to_Top.php:344, ../includes/Extensions/Table_of_Content.php:669, ../includes/Traits/Controls.php:743, ../includes/Traits/Controls.php:796
|
928 |
msgid "Icon"
|
929 |
msgstr ""
|
930 |
|
932 |
msgid "Tab Title"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: ../includes/Elements/Adv_Accordion.php:252, ../includes/Elements/Adv_Tabs.php:231, ../includes/Elements/Cta_Box.php:250, ../includes/Elements/Data_Table.php:294, ../includes/Elements/Info_Box.php:249, ../includes/Elements/Tooltip.php:69
|
936 |
msgid "Content Type"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: ../includes/Elements/Adv_Accordion.php:255, ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Adv_Tabs.php:717, ../includes/Elements/Cta_Box.php:253, ../includes/Elements/Cta_Box.php:274, ../includes/Elements/Data_Table.php:256, ../includes/Elements/Data_Table.php:371, ../includes/Elements/Data_Table.php:385, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1485, ../includes/Elements/Facebook_Feed.php:963, ../includes/Elements/Feature_List.php:191, ../includes/Elements/Feature_List.php:695, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:208, ../includes/Elements/Image_Accordion.php:516, ../includes/Elements/Info_Box.php:252, ../includes/Elements/Interactive_Circle.php:120, ../includes/Elements/Interactive_Circle.php:161, ../includes/Elements/Interactive_Circle.php:665, ../includes/Elements/Post_Timeline.php:208, ../includes/Elements/Product_Grid.php:2500, ../includes/Elements/Tooltip.php:140, ../includes/Elements/Tooltip.php:273, ../includes/Elements/Woo_Product_Carousel.php:1583, ../includes/Elements/Woo_Product_Gallery.php:1835
|
940 |
msgid "Content"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: ../includes/Elements/Adv_Accordion.php:256, ../includes/Elements/Adv_Tabs.php:235, ../includes/Elements/Countdown.php:405, ../includes/Elements/Cta_Box.php:254, ../includes/Elements/Info_Box.php:253
|
944 |
msgid "Saved Templates"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: ../includes/Elements/Adv_Accordion.php:266, ../includes/Elements/Adv_Tabs.php:244, ../includes/Elements/Countdown.php:452, ../includes/Elements/Cta_Box.php:263, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Info_Box.php:262
|
948 |
msgid "Choose Template"
|
949 |
msgstr ""
|
950 |
|
984 |
msgid "Tab Style"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: ../includes/Elements/Adv_Accordion.php:428, ../includes/Elements/Adv_Accordion.php:805, ../includes/Elements/Adv_Tabs.php:433, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Cta_Box.php:787, ../includes/Elements/Data_Table.php:711, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1523, ../includes/Elements/Feature_List.php:575, ../includes/Elements/Filterable_Gallery.php:1775, ../includes/Elements/Filterable_Gallery.php:2137, ../includes/Elements/Filterable_Gallery.php:2574, ../includes/Elements/Flip_Box.php:967, ../includes/Elements/Flip_Box.php:1080, ../includes/Elements/Info_Box.php:936, ../includes/Elements/Info_Box.php:1178, ../includes/Elements/Interactive_Circle.php:438, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Pricing_Table.php:1237, ../includes/Elements/Pricing_Table.php:1696, ../includes/Elements/Pricing_Table.php:1867, ../includes/Elements/Product_Grid.php:1307, ../includes/Elements/Product_Grid.php:2842, ../includes/Elements/Team_Member.php:643, ../includes/Elements/Tooltip.php:113, ../includes/Elements/Woo_Product_Carousel.php:1151, ../includes/Elements/Woo_Product_Carousel.php:1935, ../includes/Elements/Woo_Product_Carousel.php:2583, ../includes/Elements/Woo_Product_Gallery.php:844, ../includes/Elements/Woo_Product_Gallery.php:2177, ../includes/Extensions/Scroll_to_Top.php:360, ../includes/Extensions/Table_of_Content.php:705, ../includes/Traits/Woo_Product_Comparable.php:1345
|
988 |
msgid "Icon Size"
|
989 |
msgstr ""
|
990 |
|
996 |
msgid "Distance"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../includes/Elements/Adv_Accordion.php:560, ../includes/Elements/Adv_Accordion.php:620, ../includes/Elements/Adv_Accordion.php:681, ../includes/Elements/Adv_Tabs.php:538, ../includes/Elements/Adv_Tabs.php:605, ../includes/Elements/Adv_Tabs.php:672, ../includes/Elements/Cta_Box.php:932, ../includes/Elements/Cta_Box.php:1063, ../includes/Elements/Data_Table.php:1087, ../includes/Elements/Data_Table.php:1105, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:1474, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1004, ../includes/Elements/Info_Box.php:1084, ../includes/Elements/Interactive_Circle.php:487, ../includes/Elements/Interactive_Circle.php:549, ../includes/Elements/Interactive_Circle.php:615, ../includes/Elements/Post_Grid.php:986, ../includes/Elements/Pricing_Table.php:338, ../includes/Elements/Pricing_Table.php:1760, ../includes/Elements/Simple_Menu.php:305, ../includes/Elements/Team_Member.php:719, ../includes/Elements/Twitter_Feed.php:631, ../includes/Elements/Woo_Cart.php:237, ../includes/Elements/Woo_Cart.php:809, ../includes/Elements/Woo_Cart.php:1931, ../includes/Elements/Woo_Cart.php:2291, ../includes/Elements/Woo_Cart.php:2374, ../includes/Elements/Woo_Cart.php:2461, ../includes/Elements/Woo_Checkout.php:1198, ../includes/Elements/Woo_Checkout.php:1536, ../includes/Extensions/Scroll_to_Top.php:412
|
1000 |
msgid "Icon Color"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: ../includes/Elements/Adv_Accordion.php:654, ../includes/Elements/Adv_Accordion.php:956, ../includes/Elements/Adv_Tabs.php:638, ../includes/Elements/Event_Calendar.php:901, ../includes/Elements/Filterable_Gallery.php:1021, ../includes/Elements/Interactive_Circle.php:586, ../includes/Elements/Product_Grid.php:2329, ../includes/Elements/Simple_Menu.php:434, ../includes/Elements/Woo_Product_Carousel.php:2317, ../includes/Elements/Woo_Product_Gallery.php:1375, ../includes/Extensions/Table_of_Content.php:983
|
1004 |
msgid "Active"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: ../includes/Elements/Adv_Accordion.php:719, ../includes/Elements/Countdown.php:1100, ../includes/Elements/Cta_Box.php:80, ../includes/Elements/Cta_Box.php:686, ../includes/Elements/Data_Table.php:805, ../includes/Elements/Dual_Color_Header.php:76, ../includes/Elements/Facebook_Feed.php:635, ../includes/Elements/Facebook_Feed.php:799, ../includes/Elements/Flip_Box.php:1214, ../includes/Elements/Flip_Box.php:1283, ../includes/Elements/Info_Box.php:1386, ../includes/Elements/Tooltip.php:320, ../includes/Elements/Twitter_Feed.php:715
|
1008 |
msgid "Content Style"
|
1009 |
msgstr ""
|
1010 |
|
1108 |
msgid "Caret Size"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: ../includes/Elements/Adv_Tabs.php:888, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Data_Table.php:87, ../includes/Elements/Data_Table.php:1141, ../includes/Elements/Facebook_Feed.php:403, ../includes/Elements/Filterable_Gallery.php:288, ../includes/Elements/Filterable_Gallery.php:433, ../includes/Elements/Filterable_Gallery.php:482, ../includes/Elements/Filterable_Gallery.php:507, ../includes/Elements/Filterable_Gallery.php:532, ../includes/Elements/Filterable_Gallery.php:592, ../includes/Elements/Filterable_Gallery.php:607, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:932, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1250, ../includes/Elements/GravityForms.php:1446, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:438, ../includes/Elements/Login_Register.php:516, ../includes/Elements/Login_Register.php:851, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php:133, ../includes/Elements/Post_Grid.php:147, ../includes/Elements/Post_Grid.php:173, ../includes/Elements/Post_Grid.php:187, ../includes/Elements/Post_Grid.php:213, ../includes/Elements/Post_Grid.php:227, ../includes/Elements/Post_Timeline.php:84, ../includes/Elements/Post_Timeline.php:95, ../includes/Elements/Pricing_Table.php:218, ../includes/Elements/Pricing_Table.php:1898, ../includes/Elements/Simple_Menu.php:183, ../includes/Elements/Simple_Menu.php:224, ../includes/Elements/Team_Member.php:705, ../includes/Elements/Woo_Product_Carousel.php:327, ../includes/Elements/Woo_Product_Carousel.php:566, ../includes/Elements/Woo_Product_Carousel.php:598, ../includes/Elements/Woo_Product_Carousel.php:613, ../includes/Elements/Woo_Product_Carousel.php:648, ../includes/Elements/Woo_Product_Carousel.php:660, ../includes/Elements/Woo_Product_Carousel.php:671, ../includes/Elements/Woo_Product_Carousel.php:2124, ../includes/Elements/Woo_Product_Gallery.php:248, ../includes/Elements/Woo_Product_Gallery.php:274, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Scroll_to_Top.php:42, ../includes/Extensions/Scroll_to_Top.php:78, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:381
|
1112 |
msgid "Yes"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: ../includes/Elements/Adv_Tabs.php:889, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:195, ../includes/Elements/Content_Ticker.php:228, ../includes/Elements/Content_Ticker.php:243, ../includes/Elements/Content_Ticker.php:278, ../includes/Elements/Cta_Box.php:779, ../includes/Elements/Data_Table.php:88, ../includes/Elements/Data_Table.php:1142, ../includes/Elements/Facebook_Feed.php:407, ../includes/Elements/Feature_List.php:361, ../includes/Elements/Filterable_Gallery.php:289, ../includes/Elements/Filterable_Gallery.php:434, ../includes/Elements/Filterable_Gallery.php:483, ../includes/Elements/Filterable_Gallery.php:508, ../includes/Elements/Filterable_Gallery.php:533, ../includes/Elements/Filterable_Gallery.php:593, ../includes/Elements/Filterable_Gallery.php:608, ../includes/Elements/FluentForm.php:152, ../includes/Elements/FluentForm.php:933, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1251, ../includes/Elements/GravityForms.php:1447, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:360, ../includes/Elements/Info_Box.php:374, ../includes/Elements/Login_Register.php:439, ../includes/Elements/Login_Register.php:517, ../includes/Elements/Login_Register.php:852, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Post_Grid.php:134, ../includes/Elements/Post_Grid.php:148, ../includes/Elements/Post_Grid.php:174, ../includes/Elements/Post_Grid.php:188, ../includes/Elements/Post_Grid.php:214, ../includes/Elements/Post_Grid.php:228, ../includes/Elements/Post_Timeline.php:85, ../includes/Elements/Post_Timeline.php:96, ../includes/Elements/Pricing_Table.php:219, ../includes/Elements/Pricing_Table.php:1899, ../includes/Elements/Simple_Menu.php:184, ../includes/Elements/Simple_Menu.php:225, ../includes/Elements/Team_Member.php:706, ../includes/Elements/Woo_Product_Carousel.php:328, ../includes/Elements/Woo_Product_Carousel.php:567, ../includes/Elements/Woo_Product_Carousel.php:599, ../includes/Elements/Woo_Product_Carousel.php:614, ../includes/Elements/Woo_Product_Carousel.php:649, ../includes/Elements/Woo_Product_Carousel.php:661, ../includes/Elements/Woo_Product_Carousel.php:672, ../includes/Elements/Woo_Product_Carousel.php:2125, ../includes/Elements/Woo_Product_Gallery.php:249, ../includes/Elements/Woo_Product_Gallery.php:275, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Scroll_to_Top.php:43, ../includes/Extensions/Scroll_to_Top.php:79, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:382
|
1116 |
msgid "No"
|
1117 |
msgstr ""
|
1118 |
|
1132 |
msgid "Show Icon"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:170, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:321, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:378, ../includes/Elements/Facebook_Feed.php:444, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:360, ../includes/Elements/Login_Register.php:660, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Pricing_Table.php:1650, ../includes/Elements/Product_Grid.php:583, ../includes/Elements/Product_Grid.php:685, ../includes/Elements/Product_Grid.php:1526, ../includes/Elements/Product_Grid.php:2145, ../includes/Elements/Twitter_Feed.php:392, ../includes/Elements/Woo_Cart.php:428, ../includes/Elements/Woo_Cart.php:476, ../includes/Elements/Woo_Cart.php:546, ../includes/Elements/Woo_Cart.php:558, ../includes/Elements/Woo_Cart.php:629, ../includes/Elements/Woo_Cart.php:707, ../includes/Elements/Woo_Cart.php:778, ../includes/Elements/Woo_Cart.php:898, ../includes/Elements/Woo_Cart.php:922, ../includes/Elements/Woo_Cart.php:959, ../includes/Elements/Woo_Cart.php:1003, ../includes/Elements/Woo_Cart.php:1016, ../includes/Elements/Woo_Cart.php:1031, ../includes/Elements/Woo_Cart.php:1046, ../includes/Elements/Woo_Cart.php:1061, ../includes/Elements/Woo_Cart.php:1076, ../includes/Elements/Woo_Cart.php:1091, ../includes/Elements/Woo_Product_Carousel.php:221, ../includes/Elements/Woo_Product_Carousel.php:627, ../includes/Elements/Woo_Product_Carousel.php:686, ../includes/Elements/Woo_Product_Gallery.php:517, ../includes/Elements/Woo_Product_Gallery.php:1000, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:569, ../includes/Traits/Controls.php:631, ../includes/Traits/Controls.php:661, ../includes/Traits/Controls.php:817, ../includes/Traits/Controls.php:865, ../includes/Traits/Controls.php:933, ../includes/Traits/Controls.php:968, ../includes/Traits/Controls.php:998, ../includes/Traits/Controls.php:1083, ../includes/Traits/Controls.php:1111, ../includes/Traits/Controls.php:1127, ../includes/Traits/Controls.php:1142
|
1136 |
msgid "Show"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:171, ../includes/Elements/Cta_Box.php:354, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:322, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:379, ../includes/Elements/Facebook_Feed.php:445, ../includes/Elements/Filterable_Gallery.php:277, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:292, ../includes/Elements/Login_Register.php:359, ../includes/Elements/Login_Register.php:568, ../includes/Elements/Login_Register.php:659, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:121, ../includes/Elements/Pricing_Table.php:512, ../includes/Elements/Pricing_Table.php:1651, ../includes/Elements/Product_Grid.php:584, ../includes/Elements/Product_Grid.php:686, ../includes/Elements/Product_Grid.php:1527, ../includes/Elements/Product_Grid.php:2146, ../includes/Elements/Twitter_Feed.php:393, ../includes/Elements/Woo_Cart.php:429, ../includes/Elements/Woo_Cart.php:477, ../includes/Elements/Woo_Cart.php:547, ../includes/Elements/Woo_Cart.php:559, ../includes/Elements/Woo_Cart.php:630, ../includes/Elements/Woo_Cart.php:708, ../includes/Elements/Woo_Cart.php:779, ../includes/Elements/Woo_Cart.php:899, ../includes/Elements/Woo_Cart.php:923, ../includes/Elements/Woo_Cart.php:960, ../includes/Elements/Woo_Cart.php:1004, ../includes/Elements/Woo_Cart.php:1017, ../includes/Elements/Woo_Cart.php:1032, ../includes/Elements/Woo_Cart.php:1047, ../includes/Elements/Woo_Cart.php:1062, ../includes/Elements/Woo_Cart.php:1077, ../includes/Elements/Woo_Cart.php:1092, ../includes/Elements/Woo_Checkout.php:316, ../includes/Elements/Woo_Product_Carousel.php:222, ../includes/Elements/Woo_Product_Carousel.php:628, ../includes/Elements/Woo_Product_Carousel.php:687, ../includes/Elements/Woo_Product_Gallery.php:518, ../includes/Elements/Woo_Product_Gallery.php:1001, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:570, ../includes/Traits/Controls.php:632, ../includes/Traits/Controls.php:662, ../includes/Traits/Controls.php:818, ../includes/Traits/Controls.php:866, ../includes/Traits/Controls.php:934, ../includes/Traits/Controls.php:969, ../includes/Traits/Controls.php:999, ../includes/Traits/Controls.php:1084, ../includes/Traits/Controls.php:1112, ../includes/Traits/Controls.php:1128, ../includes/Traits/Controls.php:1143
|
1140 |
msgid "Hide"
|
1141 |
msgstr ""
|
1142 |
|
1144 |
msgid "Show Title"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:230, ../includes/Elements/Image_Accordion.php:152
|
1148 |
msgid "Select Tag"
|
1149 |
msgstr ""
|
1150 |
|
1184 |
msgid "Area"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:423, ../includes/Elements/Betterdocs_Category_Box.php:458, ../includes/Elements/Betterdocs_Category_Box.php:815, ../includes/Elements/Betterdocs_Category_Box.php:922, ../includes/Elements/Betterdocs_Category_Grid.php:539, ../includes/Elements/Betterdocs_Category_Grid.php:777, ../includes/Elements/Betterdocs_Category_Grid.php:1097, ../includes/Elements/Betterdocs_Category_Grid.php:1250, ../includes/Elements/Betterdocs_Search_Form.php:257, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:555, ../includes/Elements/Filterable_Gallery.php:716, ../includes/Elements/FluentForm.php:941, ../includes/Elements/Formstack.php:1137, ../includes/Elements/Formstack.php:1290, ../includes/Elements/GravityForms.php:1259, ../includes/Elements/GravityForms.php:1455, ../includes/Elements/Login_Register.php:2832, ../includes/Elements/Login_Register.php:3441, ../includes/Elements/NinjaForms.php:992, ../includes/Elements/Post_Timeline.php:457, ../includes/Elements/Progress_Bar.php:551, ../includes/Elements/Woo_Product_Carousel.php:2177, ../includes/Elements/WpForms.php:946, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1437
|
1188 |
msgid "Size"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:527, ../includes/Elements/Betterdocs_Category_Box.php:695, ../includes/Elements/Betterdocs_Category_Box.php:942, ../includes/Elements/Betterdocs_Category_Grid.php:1116, ../includes/Elements/Betterdocs_Category_Grid.php:1194, ../includes/Elements/Caldera_Forms.php:753, ../includes/Elements/Caldera_Forms.php:870, ../includes/Elements/Contact_Form_7.php:575, ../includes/Elements/Contact_Form_7.php:860, ../includes/Elements/Contact_Form_7.php:1486, ../includes/Elements/Feature_List.php:656, ../includes/Elements/Filterable_Gallery.php:2420, ../includes/Elements/FluentForm.php:802, ../includes/Elements/FluentForm.php:1800, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:728, ../includes/Elements/GravityForms.php:1000, ../includes/Elements/Login_Register.php:2499, ../includes/Elements/Login_Register.php:2701, ../includes/Elements/Login_Register.php:3174, ../includes/Elements/Login_Register.php:3473, ../includes/Elements/NinjaForms.php:797, ../includes/Elements/NinjaForms.php:914, ../includes/Elements/NinjaForms.php:1579, ../includes/Elements/Post_Grid.php:909, ../includes/Elements/Post_Timeline.php:220, ../includes/Elements/Woo_Checkout.php:2082, ../includes/Elements/Woo_Product_Carousel.php:2200, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
|
1192 |
msgid "Spacing"
|
1193 |
msgstr ""
|
1194 |
|
1212 |
msgid "File Not Found"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:1185, ../includes/Elements/Betterdocs_Category_Box.php:1150, ../includes/Elements/Betterdocs_Category_Grid.php:1687, ../includes/Elements/Betterdocs_Category_Grid.php:1654, ../includes/Elements/Post_Grid.php:1102, ../includes/Elements/Post_Timeline.php:781, ../includes/Elements/Product_Grid.php:3070, ../includes/Elements/Woo_Product_Gallery.php:2389, ../includes/Traits/Ajax_Handler.php:227
|
1216 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1217 |
msgstr ""
|
1218 |
|
1248 |
msgid "Show Button"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Filterable_Gallery.php:690, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/Info_Box.php:403, ../includes/Elements/Login_Register.php:674, ../includes/Elements/Login_Register.php:1200, ../includes/Elements/Pricing_Table.php:574, ../includes/Elements/Woo_Cart.php:909, ../includes/Elements/Woo_Cart.php:934, ../includes/Elements/Woo_Cart.php:971, ../includes/Elements/Woo_Checkout.php:382, ../includes/Traits/Controls.php:978
|
1252 |
msgid "Button Text"
|
1253 |
msgstr ""
|
1254 |
|
1272 |
msgid "List"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1229, ../includes/Elements/Filterable_Gallery.php:1609, ../includes/Elements/Filterable_Gallery.php:2375, ../includes/Elements/Pricing_Table.php:1794, ../includes/Elements/Product_Grid.php:2822, ../includes/Elements/Twitter_Feed.php:766, ../includes/Elements/Woo_Product_Carousel.php:1915, ../includes/Elements/Woo_Product_Gallery.php:2157
|
1276 |
msgid "Hover Color"
|
1277 |
msgstr ""
|
1278 |
|
1336 |
msgid "Close Icon"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:1030, ../includes/Elements/Cta_Box.php:1269, ../includes/Elements/Event_Calendar.php:678, ../includes/Elements/Facebook_Feed.php:743, ../includes/Elements/Filterable_Gallery.php:2722, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1101, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1753, ../includes/Elements/GravityForms.php:2144, ../includes/Elements/GravityForms.php:2366, ../includes/Elements/Interactive_Circle.php:366, ../includes/Elements/Interactive_Circle.php:564, ../includes/Elements/Interactive_Circle.php:634, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2020, ../includes/Elements/Product_Grid.php:802, ../includes/Elements/Product_Grid.php:942, ../includes/Elements/Product_Grid.php:1662, ../includes/Elements/Product_Grid.php:1923, ../includes/Elements/Product_Grid.php:2105, ../includes/Elements/Product_Grid.php:2314, ../includes/Elements/Product_Grid.php:2358, ../includes/Elements/Product_Grid.php:2553, ../includes/Elements/Product_Grid.php:2649, ../includes/Elements/Product_Grid.php:2761, ../includes/Elements/Simple_Menu.php:965, ../includes/Elements/Simple_Menu.php:1061, ../includes/Elements/Simple_Menu.php:1274, ../includes/Elements/Simple_Menu.php:1369, ../includes/Elements/Sticky_Video.php:580, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Cart.php:1226, ../includes/Elements/Woo_Cart.php:1479, ../includes/Elements/Woo_Cart.php:1842, ../includes/Elements/Woo_Cart.php:2096, ../includes/Elements/Woo_Checkout.php:786, ../includes/Elements/Woo_Checkout.php:993, ../includes/Elements/Woo_Checkout.php:1440, ../includes/Elements/Woo_Checkout.php:1771, ../includes/Elements/Woo_Checkout.php:1888, ../includes/Elements/Woo_Checkout.php:1932, ../includes/Elements/Woo_Checkout.php:1976, ../includes/Elements/Woo_Checkout.php:2165, ../includes/Elements/Woo_Checkout.php:2181, ../includes/Elements/Woo_Checkout.php:2529, ../includes/Elements/Woo_Checkout.php:2641, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Carousel.php:1357, ../includes/Elements/Woo_Product_Carousel.php:1481, ../includes/Elements/Woo_Product_Carousel.php:1649, ../includes/Elements/Woo_Product_Carousel.php:1744, ../includes/Elements/Woo_Product_Carousel.php:1858, ../includes/Elements/Woo_Product_Carousel.php:2303, ../includes/Elements/Woo_Product_Carousel.php:2730, ../includes/Elements/Woo_Product_Gallery.php:648, ../includes/Elements/Woo_Product_Gallery.php:1122, ../includes/Elements/Woo_Product_Gallery.php:1364, ../includes/Elements/Woo_Product_Gallery.php:1402, ../includes/Elements/Woo_Product_Gallery.php:1888, ../includes/Elements/Woo_Product_Gallery.php:1984, ../includes/Elements/Woo_Product_Gallery.php:2096, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1569, ../includes/Traits/Woo_Product_Comparable.php:1723
|
1340 |
msgid "Border Color"
|
1341 |
msgstr ""
|
1342 |
|
1376 |
msgid "Custom Title & Description"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: ../includes/Elements/Caldera_Forms.php:134, ../includes/Elements/Caldera_Forms.php:319, ../includes/Elements/Contact_Form_7.php:187, ../includes/Elements/Contact_Form_7.php:496, ../includes/Elements/Event_Calendar.php:265, ../includes/Elements/Feature_List.php:788, ../includes/Elements/FluentForm.php:176, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:1182, ../includes/Elements/Formstack.php:217, ../includes/Elements/Formstack.php:521, ../includes/Elements/Formstack.php:704, ../includes/Elements/GravityForms.php:173, ../includes/Elements/GravityForms.php:204, ../includes/Elements/GravityForms.php:538, ../includes/Elements/NinjaForms.php:155, ../includes/Elements/NinjaForms.php:492, ../includes/Elements/Team_Member.php:132, ../includes/Elements/WpForms.php:131, ../includes/Elements/WpForms.php:162, ../includes/Elements/WpForms.php:459, ../includes/Traits/Controls.php:312, ../includes/Traits/Woo_Product_Comparable.php:44, ../includes/Traits/Woo_Product_Comparable.php:83
|
1380 |
msgid "Description"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: ../includes/Elements/Caldera_Forms.php:149, ../includes/Elements/Caldera_Forms.php:515, ../includes/Elements/Contact_Form_7.php:202, ../includes/Elements/Contact_Form_7.php:805, ../includes/Elements/FluentForm.php:191, ../includes/Elements/FluentForm.php:562, ../includes/Elements/Formstack.php:232, ../includes/Elements/Formstack.php:789, ../includes/Elements/GravityForms.php:219, ../includes/Elements/GravityForms.php:575, ../includes/Elements/Login_Register.php:574, ../includes/Elements/NinjaForms.php:170, ../includes/Elements/NinjaForms.php:548, ../includes/Elements/WpForms.php:177, ../includes/Elements/WpForms.php:515
|
1384 |
msgid "Labels"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../includes/Elements/Caldera_Forms.php:180, ../includes/Elements/Caldera_Forms.php:1412, ../includes/Elements/Contact_Form_7.php:220, ../includes/Elements/Contact_Form_7.php:1381, ../includes/Elements/FluentForm.php:221, ../includes/Elements/FluentForm.php:2148, ../includes/Elements/Formstack.php:262, ../includes/Elements/Formstack.php:1903, ../includes/Elements/GravityForms.php:261, ../includes/Elements/GravityForms.php:2409, ../includes/Elements/NinjaForms.php:201, ../includes/Elements/NinjaForms.php:1614, ../includes/Elements/WpForms.php:205, ../includes/Elements/WpForms.php:1361
|
1388 |
msgid "Errors"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: ../includes/Elements/Caldera_Forms.php:187, ../includes/Elements/Caldera_Forms.php:1420, ../includes/Elements/Contact_Form_7.php:227, ../includes/Elements/Contact_Form_7.php:1389, ../includes/Elements/FluentForm.php:228, ../includes/Elements/FluentForm.php:2156, ../includes/Elements/Formstack.php:269, ../includes/Elements/Formstack.php:1911, ../includes/Elements/GravityForms.php:268, ../includes/Elements/GravityForms.php:2417, ../includes/Elements/Login_Register.php:923, ../includes/Elements/NinjaForms.php:208, ../includes/Elements/NinjaForms.php:1622, ../includes/Elements/WpForms.php:212
|
1392 |
msgid "Error Messages"
|
1393 |
msgstr ""
|
1394 |
|
1412 |
msgid "Form Alignment"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:735, ../includes/Elements/Cta_Box.php:1115, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:878, ../includes/Elements/FluentForm.php:458, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:460, ../includes/Elements/Login_Register.php:566, ../includes/Elements/Login_Register.php:1129, ../includes/Elements/Login_Register.php:1492, ../includes/Elements/Login_Register.php:1618, ../includes/Elements/Login_Register.php:1875, ../includes/Elements/Login_Register.php:2019, ../includes/Elements/Login_Register.php:2169, ../includes/Elements/Login_Register.php:2312, ../includes/Elements/Login_Register.php:2403, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/Login_Register.php:2703, ../includes/Elements/Login_Register.php:2748, ../includes/Elements/Login_Register.php:2780, ../includes/Elements/Login_Register.php:3014, ../includes/Elements/Login_Register.php:3176, ../includes/Elements/Login_Register.php:3475, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:463, ../includes/Elements/Product_Grid.php:250, ../includes/Elements/Simple_Menu.php:366, ../includes/Elements/Simple_Menu.php:492, ../includes/Elements/Simple_Menu.php:852, ../includes/Elements/Simple_Menu.php:1163, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:122, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:558, ../includes/Traits/Controls.php:1639, ../includes/Traits/Login_Registration.php:581, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:5, ../includes/Template/Post-Timeline/default.php:4, ../includes/Template/Woo-Product-Gallery/default.php:3
|
1416 |
msgid "Default"
|
1417 |
msgstr ""
|
1418 |
|
1428 |
msgid "Form Padding"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../includes/Elements/Caldera_Forms.php:549, ../includes/Elements/Contact_Form_7.php:533, ../includes/Elements/FluentForm.php:596, ../includes/Elements/Formstack.php:823, ../includes/Elements/GravityForms.php:661, ../includes/Elements/NinjaForms.php:591, ../includes/Elements/WpForms.php:560
|
1432 |
msgid "Input & Textarea"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: ../includes/Elements/Caldera_Forms.php:640, ../includes/Elements/Contact_Form_7.php:610, ../includes/Elements/FluentForm.php:689, ../includes/Elements/Formstack.php:888, ../includes/Elements/GravityForms.php:778, ../includes/Elements/NinjaForms.php:682, ../includes/Elements/WpForms.php:651
|
1436 |
msgid "Text Indent"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: ../includes/Elements/Caldera_Forms.php:665, ../includes/Elements/Contact_Form_7.php:634, ../includes/Elements/FluentForm.php:714, ../includes/Elements/Formstack.php:913, ../includes/Elements/GravityForms.php:802, ../includes/Elements/NinjaForms.php:707, ../includes/Elements/WeForms.php:309, ../includes/Elements/WpForms.php:676
|
1440 |
msgid "Input Width"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: ../includes/Elements/Caldera_Forms.php:684, ../includes/Elements/Contact_Form_7.php:653, ../includes/Elements/FluentForm.php:733, ../includes/Elements/Formstack.php:932, ../includes/Elements/GravityForms.php:821, ../includes/Elements/NinjaForms.php:727, ../includes/Elements/Woo_Checkout.php:2130, ../includes/Elements/WpForms.php:695
|
1444 |
msgid "Input Height"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: ../includes/Elements/Caldera_Forms.php:703, ../includes/Elements/Contact_Form_7.php:672, ../includes/Elements/FluentForm.php:752, ../includes/Elements/Formstack.php:951, ../includes/Elements/GravityForms.php:840, ../includes/Elements/NinjaForms.php:746, ../includes/Elements/WeForms.php:336, ../includes/Elements/WpForms.php:714
|
1448 |
msgid "Textarea Width"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: ../includes/Elements/Caldera_Forms.php:722, ../includes/Elements/Contact_Form_7.php:691, ../includes/Elements/FluentForm.php:771, ../includes/Elements/Formstack.php:970, ../includes/Elements/GravityForms.php:859, ../includes/Elements/NinjaForms.php:765, ../includes/Elements/WpForms.php:733
|
1452 |
msgid "Textarea Height"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: ../includes/Elements/Caldera_Forms.php:793, ../includes/Elements/Contact_Form_7.php:756, ../includes/Elements/FluentForm.php:842, ../includes/Elements/Formstack.php:1041, ../includes/Elements/GravityForms.php:923, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/NinjaForms.php:837, ../includes/Elements/WpForms.php:806
|
1456 |
msgid "Focus"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: ../includes/Elements/Caldera_Forms.php:842, ../includes/Elements/Formstack.php:577, ../includes/Elements/GravityForms.php:972, ../includes/Elements/NinjaForms.php:886, ../includes/Elements/WpForms.php:843
|
1460 |
msgid "Field Description"
|
1461 |
msgstr ""
|
1462 |
|
1464 |
msgid "Radio & Checkbox"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: ../includes/Elements/Caldera_Forms.php:934, ../includes/Elements/Contact_Form_7.php:961, ../includes/Elements/FluentForm.php:930, ../includes/Elements/Formstack.php:1126, ../includes/Elements/GravityForms.php:1248, ../includes/Elements/GravityForms.php:1444, ../includes/Elements/NinjaForms.php:981, ../includes/Elements/WpForms.php:935
|
1468 |
msgid "Custom Styles"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: ../includes/Elements/Caldera_Forms.php:998, ../includes/Elements/Contact_Form_7.php:1025, ../includes/Elements/Feature_List.php:616, ../includes/Elements/FluentForm.php:994, ../includes/Elements/GravityForms.php:1312, ../includes/Elements/GravityForms.php:1508, ../includes/Elements/NinjaForms.php:1045, ../includes/Elements/Sticky_Video.php:568, ../includes/Elements/WpForms.php:999
|
1472 |
msgid "Border Width"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: ../includes/Elements/Caldera_Forms.php:1035, ../includes/Elements/Contact_Form_7.php:1062, ../includes/Elements/FluentForm.php:1031, ../includes/Elements/Formstack.php:1191, ../includes/Elements/GravityForms.php:1240, ../includes/Elements/GravityForms.php:1349, ../includes/Elements/Login_Register.php:3028, ../includes/Elements/NinjaForms.php:1082, ../includes/Elements/WpForms.php:1036
|
1476 |
msgid "Checkbox"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: ../includes/Elements/Caldera_Forms.php:1061, ../includes/Elements/Contact_Form_7.php:1088, ../includes/Elements/FluentForm.php:1057, ../includes/Elements/Formstack.php:1217, ../includes/Elements/GravityForms.php:1545, ../includes/Elements/NinjaForms.php:1109, ../includes/Elements/WpForms.php:1062
|
1480 |
msgid "Radio Buttons"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: ../includes/Elements/Caldera_Forms.php:1089, ../includes/Elements/Contact_Form_7.php:1116, ../includes/Elements/FluentForm.php:1085, ../includes/Elements/Formstack.php:1245, ../includes/Elements/GravityForms.php:1401, ../includes/Elements/GravityForms.php:1597, ../includes/Elements/NinjaForms.php:1138, ../includes/Elements/WpForms.php:1090
|
1484 |
msgid "Checked"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: ../includes/Elements/Caldera_Forms.php:1124, ../includes/Elements/Contact_Form_7.php:1150, ../includes/Elements/FluentForm.php:1474, ../includes/Elements/Formstack.php:1360, ../includes/Elements/GravityForms.php:1938, ../includes/Elements/NinjaForms.php:1286, ../includes/Elements/WpForms.php:1125
|
1488 |
msgid "Submit Button"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: ../includes/Elements/Caldera_Forms.php:1163, ../includes/Elements/Contact_Form_7.php:1189, ../includes/Elements/FluentForm.php:1513, ../includes/Elements/Formstack.php:1399, ../includes/Elements/GravityForms.php:1980, ../includes/Elements/NinjaForms.php:1327, ../includes/Elements/Simple_Menu.php:221, ../includes/Elements/WpForms.php:1167
|
1492 |
msgid "Full Width"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: ../includes/Elements/Caldera_Forms.php:1263, ../includes/Elements/Contact_Form_7.php:1288, ../includes/Elements/FluentForm.php:1614, ../includes/Elements/Formstack.php:1334, ../includes/Elements/Formstack.php:1499, ../includes/Elements/GravityForms.php:2089, ../includes/Elements/GravityForms.php:2314, ../includes/Elements/NinjaForms.php:1431, ../includes/Elements/WpForms.php:1267
|
1496 |
msgid "Margin Top"
|
1497 |
msgstr ""
|
1498 |
|
1544 |
msgid "Form Description"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: ../includes/Elements/Contact_Form_7.php:247, ../includes/Elements/Formstack.php:282, ../includes/Elements/GravityForms.php:288, ../includes/Elements/GravityForms.php:2443, ../includes/Elements/NinjaForms.php:228, ../includes/Elements/NinjaForms.php:1648
|
1548 |
msgid "Validation Errors"
|
1549 |
msgstr ""
|
1550 |
|
1552 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:871, ../includes/Elements/Cta_Box.php:1018, ../includes/Elements/Cta_Box.php:1191, ../includes/Elements/Cta_Box.php:1260, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Event_Calendar.php:1221, ../includes/Elements/Event_Calendar.php:1587, ../includes/Elements/Event_Calendar.php:1696, ../includes/Elements/Facebook_Feed.php:503, ../includes/Elements/Facebook_Feed.php:516, ../includes/Elements/Facebook_Feed.php:591, ../includes/Elements/Facebook_Feed.php:604, ../includes/Elements/Facebook_Feed.php:689, ../includes/Elements/Facebook_Feed.php:702, ../includes/Elements/Facebook_Feed.php:773, ../includes/Elements/Facebook_Feed.php:811, ../includes/Elements/Facebook_Feed.php:851, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2060, ../includes/Elements/Filterable_Gallery.php:2281, ../includes/Elements/Flip_Box.php:1379, ../includes/Elements/Flip_Box.php:1439, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1939, ../includes/Elements/Pricing_Table.php:2008, ../includes/Elements/Product_Grid.php:1555, ../includes/Elements/Product_Grid.php:1570, ../includes/Elements/Product_Grid.php:1630, ../includes/Elements/Product_Grid.php:1644, ../includes/Elements/Product_Grid.php:2905, ../includes/Elements/Product_Grid.php:2962, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:402, ../includes/Elements/Twitter_Feed.php:654, ../includes/Elements/Woo_Cart.php:1281, ../includes/Elements/Woo_Cart.php:1438, ../includes/Elements/Woo_Cart.php:1670, ../includes/Elements/Woo_Cart.php:2268, ../includes/Elements/Woo_Cart.php:2350, ../includes/Elements/Woo_Cart.php:2438, ../includes/Elements/Woo_Checkout.php:1866, ../includes/Elements/Woo_Checkout.php:1910, ../includes/Elements/Woo_Checkout.php:1954, ../includes/Elements/Woo_Product_Carousel.php:1998, ../includes/Elements/Woo_Product_Carousel.php:2055, ../includes/Elements/Woo_Product_Gallery.php:1027, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1094, ../includes/Elements/Woo_Product_Gallery.php:1106, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1319, ../includes/Elements/Woo_Product_Gallery.php:1353, ../includes/Elements/Woo_Product_Gallery.php:1391, ../includes/Elements/Woo_Product_Gallery.php:2240, ../includes/Elements/Woo_Product_Gallery.php:2297, ../includes/Traits/Controls.php:1311, ../includes/Traits/Controls.php:1365, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1662, ../includes/Traits/Woo_Product_Comparable.php:1711
|
1556 |
msgid "Background"
|
1557 |
msgstr ""
|
1558 |
|
1600 |
msgid "After Submit Feedback"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: ../includes/Elements/Contact_Form_7.php:1629, ../includes/Elements/Dual_Color_Header.php:801, ../includes/Elements/Dual_Color_Header.php:881, ../includes/Elements/Flip_Box.php:877, ../includes/Elements/Info_Box.php:584, ../includes/Elements/Info_Box.php:639, ../includes/Elements/Info_Box.php:807, ../includes/Elements/Info_Box.php:887, ../includes/Elements/Info_Box.php:1025, ../includes/Elements/Info_Box.php:1121, ../includes/Elements/Post_Grid.php:344, ../includes/Elements/Product_Grid.php:1510, ../includes/Elements/Woo_Product_Gallery.php:986, ../includes/Elements/Woo_Product_Gallery.php:1230, ../includes/Elements/Woo_Product_Gallery.php:1292, ../includes/Traits/Woo_Product_Comparable.php:1628
|
1604 |
msgid "Radius"
|
1605 |
msgstr ""
|
1606 |
|
1636 |
msgid "Animation Settings"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: ../includes/Elements/Content_Ticker.php:158, ../includes/Elements/Cta_Box.php:730, ../includes/Elements/Cta_Box.php:1110, ../includes/Elements/Woo_Product_Carousel.php:436
|
1640 |
msgid "Effect"
|
1641 |
msgstr ""
|
1642 |
|
1832 |
msgid "Separator Style"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: ../includes/Elements/Countdown.php:296, ../includes/Elements/Feature_List.php:431, ../includes/Elements/GravityForms.php:1061, ../includes/Elements/Sticky_Video.php:554, ../includes/Extensions/Table_of_Content.php:1079
|
1836 |
msgid "Solid"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: ../includes/Elements/Countdown.php:297, ../includes/Elements/Feature_List.php:433, ../includes/Elements/GravityForms.php:1063, ../includes/Elements/Sticky_Video.php:556, ../includes/Extensions/Table_of_Content.php:1081
|
1840 |
msgid "Dotted"
|
1841 |
msgstr ""
|
1842 |
|
1912 |
msgid "Space Below Container"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:441, ../includes/Elements/Facebook_Feed.php:879, ../includes/Elements/Flip_Box.php:1167, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1333, ../includes/Elements/Product_Grid.php:1183, ../includes/Elements/Team_Member.php:537, ../includes/Elements/Twitter_Feed.php:679, ../includes/Elements/Woo_Product_Carousel.php:1066, ../includes/Elements/Woo_Product_Gallery.php:733
|
1916 |
msgid "Color & Typography"
|
1917 |
msgstr ""
|
1918 |
|
1940 |
msgid "Expire Message"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:604, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1183, ../includes/Elements/Flip_Box.php:1251, ../includes/Elements/Info_Box.php:1347, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Timeline.php:291, ../includes/Elements/Pricing_Table.php:876, ../includes/Elements/Twitter_Feed.php:687
|
1944 |
msgid "Title Style"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1406, ../includes/Elements/FluentForm.php:1859, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1457, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Timeline.php:300, ../includes/Elements/Product_Grid.php:2445, ../includes/Elements/Product_Grid.php:2800, ../includes/Elements/Progress_Bar.php:690, ../includes/Elements/Twitter_Feed.php:591, ../includes/Elements/Woo_Checkout.php:2248, ../includes/Elements/Woo_Checkout.php:2348, ../includes/Elements/Woo_Product_Carousel.php:1529, ../includes/Elements/Woo_Product_Carousel.php:1895, ../includes/Elements/Woo_Product_Gallery.php:1781, ../includes/Elements/Woo_Product_Gallery.php:2135, ../includes/Traits/Woo_Product_Comparable.php:1018, ../includes/Traits/Woo_Product_Comparable.php:1249
|
1948 |
msgid "Title Color"
|
1949 |
msgstr ""
|
1950 |
|
2048 |
msgid "Shikoba (Pro)"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:776, ../includes/Elements/Product_Grid.php:1524, ../includes/Elements/Team_Member.php:703, ../includes/Elements/Woo_Product_Gallery.php:998
|
2052 |
msgid "Use Gradient Background"
|
2053 |
msgstr ""
|
2054 |
|
2060 |
msgid "<strong>Crowdfundly</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=crowdfundly&tab=search&type=term\" target=\"_blank\">Crowdfundly</a> first."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: ../includes/Elements/Cta_Box.php:32
|
2064 |
msgid "Call to Action"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: ../includes/Elements/Cta_Box.php:85
|
2068 |
msgid "Basic"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: ../includes/Elements/Cta_Box.php:86
|
2072 |
msgid "Flex Grid"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: ../includes/Elements/Cta_Box.php:87
|
2076 |
msgid "Flex Grid with Icon"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: ../includes/Elements/Cta_Box.php:95
|
2080 |
+
msgid "Content Preset"
|
2081 |
+
msgstr ""
|
2082 |
+
|
2083 |
+
#: ../includes/Elements/Cta_Box.php:100, ../includes/Elements/Cta_Box.php:294, ../includes/Elements/Interactive_Circle.php:73, ../includes/Elements/Product_Grid.php:272, ../includes/Elements/Product_Grid.php:1696, ../includes/Elements/Product_Grid.php:1817, ../includes/Elements/Simple_Menu.php:145, ../includes/Elements/Woo_Product_Carousel.php:803, ../includes/Elements/Woo_Product_Carousel.php:2097, ../includes/Elements/Woo_Product_Gallery.php:327, ../includes/Elements/Woo_Product_Gallery.php:1502, ../includes/Traits/Controls.php:426, ../includes/Template/Woo-Product-Carousel/preset-1.php:4
|
2084 |
+
msgid "Preset 1"
|
2085 |
+
msgstr ""
|
2086 |
+
|
2087 |
+
#: ../includes/Elements/Cta_Box.php:101, ../includes/Elements/Cta_Box.php:295, ../includes/Elements/Interactive_Circle.php:74, ../includes/Elements/Product_Grid.php:273, ../includes/Elements/Product_Grid.php:1697, ../includes/Elements/Product_Grid.php:1818, ../includes/Elements/Simple_Menu.php:146, ../includes/Elements/Woo_Product_Carousel.php:804, ../includes/Elements/Woo_Product_Carousel.php:2098, ../includes/Elements/Woo_Product_Gallery.php:328, ../includes/Elements/Woo_Product_Gallery.php:1503, ../includes/Traits/Controls.php:427, ../includes/Template/Woo-Product-Carousel/preset-2.php:4
|
2088 |
+
msgid "Preset 2"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: ../includes/Elements/Cta_Box.php:132
|
2092 |
msgid "Color Style"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: ../includes/Elements/Cta_Box.php:138, ../includes/Elements/Cta_Box.php:150, ../includes/Elements/Image_Accordion.php:185
|
2096 |
msgid "Background Image"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: ../includes/Elements/Cta_Box.php:139
|
2100 |
msgid "Background Fixed Image"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: ../includes/Elements/Cta_Box.php:168
|
2104 |
msgid "Background Overlay"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: ../includes/Elements/Cta_Box.php:203, ../includes/Elements/Pricing_Table.php:154
|
2108 |
msgid "Sub Title"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: ../includes/Elements/Cta_Box.php:222
|
2112 |
+
msgid "Sample Call to Action Heading"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: ../includes/Elements/Cta_Box.php:277
|
2116 |
msgid "Add a strong one liner supporting the heading above and giving users a reason to click on the button below."
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: ../includes/Elements/Cta_Box.php:289
|
2120 |
+
msgid "Button Preset"
|
2121 |
+
msgstr ""
|
2122 |
+
|
2123 |
+
#: ../includes/Elements/Cta_Box.php:323
|
2124 |
msgid "Primary Button Text"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: ../includes/Elements/Cta_Box.php:327
|
2128 |
+
msgid "Click Here"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: ../includes/Elements/Cta_Box.php:334
|
2132 |
msgid "Primary Button Link"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: ../includes/Elements/Cta_Box.php:351
|
2136 |
msgid "Show Secondary Button"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: ../includes/Elements/Cta_Box.php:361
|
2140 |
msgid "Secondary Button Text"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: ../includes/Elements/Cta_Box.php:365
|
2144 |
+
msgid "Click Now"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
+
#: ../includes/Elements/Cta_Box.php:375
|
2148 |
msgid "Secondary Button Link"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: ../includes/Elements/Cta_Box.php:428
|
2152 |
msgid "Call to Action Style"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: ../includes/Elements/Cta_Box.php:436
|
2156 |
msgid "Set max width for the container?"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:778, ../includes/Elements/Data_Table.php:134, ../includes/Elements/Twitter_Feed.php:225, ../includes/Elements/Twitter_Feed.php:246, ../includes/Elements/Twitter_Feed.php:258, ../includes/Elements/Twitter_Feed.php:270, ../includes/Elements/Twitter_Feed.php:295
|
2160 |
msgid "yes"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: ../includes/Elements/Cta_Box.php:439, ../includes/Elements/Data_Table.php:135, ../includes/Elements/Twitter_Feed.php:226, ../includes/Elements/Twitter_Feed.php:247, ../includes/Elements/Twitter_Feed.php:259, ../includes/Elements/Twitter_Feed.php:271, ../includes/Elements/Twitter_Feed.php:296
|
2164 |
msgid "no"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: ../includes/Elements/Cta_Box.php:447
|
2168 |
msgid "Container Max Width (% or px)"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: ../includes/Elements/Cta_Box.php:490
|
2172 |
msgid "Background Color Opacity"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: ../includes/Elements/Cta_Box.php:596
|
2176 |
msgid "Color & Typography "
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: ../includes/Elements/Cta_Box.php:632, ../includes/Elements/Cta_Box.php:673, ../includes/Elements/Event_Calendar.php:830, ../includes/Elements/Event_Calendar.php:951
|
2180 |
msgid "Space"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: ../includes/Elements/Cta_Box.php:644
|
2184 |
msgid "Sub Title Style"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: ../includes/Elements/Cta_Box.php:722
|
2188 |
msgid "Primary Button Style"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: ../includes/Elements/Cta_Box.php:736, ../includes/Elements/Cta_Box.php:1116, ../includes/Extensions/Table_of_Content.php:687
|
2192 |
msgid "Top to Bottom"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: ../includes/Elements/Cta_Box.php:737, ../includes/Elements/Cta_Box.php:1117
|
2196 |
msgid "Left to Right"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: ../includes/Elements/Cta_Box.php:916, ../includes/Elements/Cta_Box.php:1046
|
2200 |
+
msgid "Icon Background Color"
|
2201 |
+
msgstr ""
|
2202 |
+
|
2203 |
+
#: ../includes/Elements/Cta_Box.php:1099
|
2204 |
msgid "Secondary Button Style"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: ../includes/Elements/Cta_Box.php:1302, ../includes/Elements/Data_Table.php:1050, ../includes/Elements/Dual_Color_Header.php:386, ../includes/Elements/Feature_List.php:107, ../includes/Elements/Flip_Box.php:921, ../includes/Elements/Flip_Box.php:940, ../includes/Elements/Flip_Box.php:1053, ../includes/Elements/Info_Box.php:925
|
2208 |
msgid "Icon Style"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: ../includes/Elements/Cta_Box.php:1313, ../includes/Elements/Pricing_Table.php:1354, ../includes/Elements/Twitter_Feed.php:901
|
2212 |
msgid "Font Size"
|
2213 |
msgstr ""
|
2214 |
|
2312 |
msgid "Icon Space"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: ../includes/Elements/Data_Table.php:773, ../includes/Elements/Post_Grid.php:638, ../includes/Elements/Post_Timeline.php:313
|
2316 |
msgid "Title Alignment"
|
2317 |
msgstr ""
|
2318 |
|
2420 |
msgid "Separator Type"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: ../includes/Elements/Dual_Color_Header.php:272, ../includes/Elements/Post_Timeline.php:586, ../includes/Elements/Progress_Bar.php:84
|
2424 |
msgid "Line"
|
2425 |
msgstr ""
|
2426 |
|
2660 |
msgid "Outside Space"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: ../includes/Elements/Event_Calendar.php:1049, ../includes/Elements/Post_Timeline.php:508
|
2664 |
msgid "Time"
|
2665 |
msgstr ""
|
2666 |
|
2696 |
msgid "Date Icon"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: ../includes/Elements/Event_Calendar.php:1503, ../includes/Elements/Info_Box.php:1469, ../includes/Elements/Product_Grid.php:2518, ../includes/Elements/Product_Grid.php:2811, ../includes/Elements/Twitter_Feed.php:601, ../includes/Elements/Woo_Product_Carousel.php:1601, ../includes/Elements/Woo_Product_Carousel.php:1905, ../includes/Elements/Woo_Product_Gallery.php:1853, ../includes/Elements/Woo_Product_Gallery.php:2146
|
2700 |
msgid "Content Color"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: ../includes/Elements/Event_Calendar.php:1514, ../includes/Elements/Product_Grid.php:2833, ../includes/Elements/Woo_Product_Carousel.php:1926, ../includes/Elements/Woo_Product_Gallery.php:2168, ../includes/Traits/Woo_Product_Comparable.php:1336
|
2704 |
msgid " Close Button"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: ../includes/Elements/Event_Calendar.php:1549, ../includes/Elements/Product_Grid.php:2868, ../includes/Elements/Woo_Product_Carousel.php:1961, ../includes/Elements/Woo_Product_Gallery.php:2203, ../includes/Extensions/Table_of_Content.php:723
|
2708 |
msgid "Button Size"
|
2709 |
msgstr ""
|
2710 |
|
2776 |
msgid "Layout Settings"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: ../includes/Elements/Facebook_Feed.php:197, ../includes/Elements/Filterable_Gallery.php:176, ../includes/Template/Post-Timeline/card.php:4
|
2780 |
msgid "Card"
|
2781 |
msgstr ""
|
2782 |
|
2860 |
msgid "Show Preview Description"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
+
#: ../includes/Elements/Facebook_Feed.php:399, ../includes/Elements/Product_Grid.php:683, ../includes/Elements/Woo_Product_Gallery.php:515, ../includes/Traits/Controls.php:629
|
2864 |
msgid "Show Load More"
|
2865 |
msgstr ""
|
2866 |
|
2868 |
msgid "Label"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: ../includes/Elements/Facebook_Feed.php:421, ../includes/Elements/Filterable_Gallery.php:693, ../includes/Elements/Product_Grid.php:662, ../includes/Elements/Product_Grid.php:695, ../includes/Elements/Woo_Product_Gallery.php:511, ../includes/Elements/Woo_Product_Gallery.php:527, ../includes/Traits/Controls.php:645
|
2872 |
msgid "Load More"
|
2873 |
msgstr ""
|
2874 |
|
2928 |
msgid "Likes & Comments"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
+
#: ../includes/Elements/Facebook_Feed.php:1161, ../includes/Elements/Image_Accordion.php:391, ../includes/Elements/Post_Timeline.php:136, ../includes/Elements/Team_Member.php:344, ../includes/Elements/Woo_Product_Carousel.php:909
|
2932 |
msgid "Overlay Color"
|
2933 |
msgstr ""
|
2934 |
|
3144 |
msgid "Framed"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: ../includes/Elements/Feature_List.php:307, ../includes/Elements/Flip_Box.php:338, ../includes/Elements/Flip_Box.php:569, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:749, ../includes/Elements/Post_Timeline.php:482, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Tooltip.php:290, ../includes/Elements/Twitter_Feed.php:365, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1763
|
3148 |
msgid "Top"
|
3149 |
msgstr ""
|
3150 |
|
3176 |
msgid "Connector Styles"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: ../includes/Elements/Feature_List.php:432, ../includes/Elements/GravityForms.php:1064, ../includes/Elements/Sticky_Video.php:557, ../includes/Extensions/Table_of_Content.php:1080
|
3180 |
msgid "Dashed"
|
3181 |
msgstr ""
|
3182 |
|
3248 |
msgid "Media"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: ../includes/Elements/Filterable_Gallery.php:231, ../includes/Elements/Product_Grid.php:1752, ../includes/Elements/Woo_Product_Gallery.php:1553, ../includes/Traits/Woo_Product_Comparable.php:879
|
3252 |
msgid "Buttons"
|
3253 |
msgstr ""
|
3254 |
|
3364 |
msgid "Item Category"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: ../includes/Elements/Filterable_Gallery.php:544, ../includes/Traits/Admin.php:21, ../includes/Traits/Admin.php:22, ../includes/Traits/Elements.php:39
|
3368 |
msgid "Essential Addons"
|
3369 |
msgstr ""
|
3370 |
|
3440 |
msgid "Item Hover Style"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: ../includes/Elements/Filterable_Gallery.php:1208, ../includes/Elements/Filterable_Gallery.php:1570, ../includes/Elements/Login_Register.php:2395, ../includes/Elements/Post_Timeline.php:339
|
3444 |
msgid "Title Typography"
|
3445 |
msgstr ""
|
3446 |
|
3528 |
msgid "Dropdown"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: ../includes/Elements/Filterable_Gallery.php:2463, ../includes/Elements/Product_Grid.php:2043, ../includes/Elements/Product_Grid.php:2220, ../includes/Elements/Woo_Checkout.php:713, ../includes/Elements/Woo_Checkout.php:1026, ../includes/Elements/Woo_Checkout.php:1135, ../includes/Elements/Woo_Checkout.php:2712, ../includes/Elements/Woo_Product_Carousel.php:1435
|
3532 |
msgid "Top Spacing"
|
3533 |
msgstr ""
|
3534 |
|
3596 |
msgid "Vertical Position"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:573, ../includes/Elements/Info_Box.php:134, ../includes/Elements/Post_Timeline.php:486, ../includes/Elements/Twitter_Feed.php:369
|
3600 |
msgid "Middle"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:577, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Post_Timeline.php:490, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Twitter_Feed.php:373, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:1767
|
3604 |
msgid "Bottom"
|
3605 |
msgstr ""
|
3606 |
|
3772 |
msgid "<strong>Gravity Forms</strong> is not installed/activated on your site. Please install and activate <strong>Gravity Forms</strong> first."
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: ../includes/Elements/GravityForms.php:618
|
3776 |
msgid "Sub-Labels"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: ../includes/Elements/GravityForms.php:747
|
3780 |
msgid "Spacing Right"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: ../includes/Elements/GravityForms.php:1025
|
3784 |
msgid "Section Field"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: ../includes/Elements/GravityForms.php:1056, ../includes/Elements/Pricing_Table.php:774, ../includes/Elements/Pricing_Table.php:1552, ../includes/Elements/Sticky_Video.php:549
|
3788 |
msgid "Border Type"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: ../includes/Elements/GravityForms.php:1062, ../includes/Elements/Sticky_Video.php:555
|
3792 |
msgid "Double"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: ../includes/Elements/GravityForms.php:1076
|
3796 |
msgid "Border Height"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: ../includes/Elements/GravityForms.php:1143
|
3800 |
msgid "Price Label Color"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: ../includes/Elements/GravityForms.php:1155, ../includes/Elements/Product_Grid.php:1227, ../includes/Elements/Product_Grid.php:2476, ../includes/Elements/Woo_Product_Carousel.php:1559, ../includes/Elements/Woo_Product_Gallery.php:777, ../includes/Elements/Woo_Product_Gallery.php:1811
|
3804 |
msgid "Price Color"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: ../includes/Elements/GravityForms.php:1173
|
3808 |
msgid "Total Price"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: ../includes/Elements/GravityForms.php:1436
|
3812 |
msgid "Radio"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: ../includes/Elements/GravityForms.php:1632
|
3816 |
msgid "File Upload"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: ../includes/Elements/GravityForms.php:1782
|
3820 |
msgid "Rules"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: ../includes/Elements/GravityForms.php:1818
|
3824 |
msgid "Scrolling Text"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: ../includes/Elements/GravityForms.php:2188
|
3828 |
msgid "Next/Previous Button"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: ../includes/Elements/GravityForms.php:2455, ../includes/Elements/NinjaForms.php:1660
|
3832 |
msgid "Error Description Color"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
+
#: ../includes/Elements/GravityForms.php:2470
|
3836 |
msgid "Error Border Color"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: ../includes/Elements/GravityForms.php:2486
|
3840 |
msgid "Error Field Background Color"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
+
#: ../includes/Elements/GravityForms.php:2501
|
3844 |
msgid "Error Field Label Color"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
+
#: ../includes/Elements/GravityForms.php:2516, ../includes/Elements/NinjaForms.php:1675, ../includes/Elements/WpForms.php:1387
|
3848 |
msgid "Error Field Input Border Color"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: ../includes/Elements/GravityForms.php:2531, ../includes/Elements/WpForms.php:1402
|
3852 |
msgid "Error Field Input Border Width"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: ../includes/Elements/GravityForms.php:2555
|
3856 |
msgid "Thank You Message"
|
3857 |
msgstr ""
|
3858 |
|
4040 |
msgid "Preset"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: ../includes/Elements/Interactive_Circle.php:75, ../includes/Elements/Product_Grid.php:274, ../includes/Elements/Product_Grid.php:1698, ../includes/Elements/Simple_Menu.php:147, ../includes/Elements/Woo_Product_Carousel.php:805, ../includes/Elements/Woo_Product_Carousel.php:2099, ../includes/Elements/Woo_Product_Gallery.php:329, ../includes/Elements/Woo_Product_Gallery.php:1504, ../includes/Traits/Controls.php:428, ../includes/Template/Woo-Product-Carousel/preset-3.php:4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4044 |
msgid "Preset 3"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: ../includes/Elements/Interactive_Circle.php:76, ../includes/Elements/Product_Grid.php:275, ../includes/Elements/Product_Grid.php:1699, ../includes/Elements/Woo_Product_Carousel.php:806, ../includes/Elements/Woo_Product_Carousel.php:2100, ../includes/Elements/Woo_Product_Gallery.php:330, ../includes/Elements/Woo_Product_Gallery.php:1505, ../includes/Traits/Controls.php:429, ../includes/Template/Woo-Product-Carousel/preset-4.php:4
|
4048 |
msgid "Preset 4"
|
4049 |
msgstr ""
|
4050 |
|
5135 |
msgid "Required Fields Notice"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
+
#: ../includes/Elements/Post_Grid.php:92, ../includes/Elements/Post_Timeline.php:75
|
5139 |
msgid "Links"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: ../includes/Elements/Post_Grid.php:131, ../includes/Elements/Post_Grid.php:171, ../includes/Elements/Post_Grid.php:211, ../includes/Elements/Post_Timeline.php:82
|
5143 |
msgid "No Follow"
|
5144 |
msgstr ""
|
5145 |
|
5146 |
+
#: ../includes/Elements/Post_Grid.php:145, ../includes/Elements/Post_Grid.php:185, ../includes/Elements/Post_Grid.php:225, ../includes/Elements/Post_Timeline.php:93
|
5147 |
msgid "Target Blank"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
+
#: ../includes/Elements/Post_Grid.php:200, ../includes/Elements/Product_Grid.php:649, ../includes/Elements/Twitter_Feed.php:283, ../includes/Traits/Controls.php:950, ../includes/Traits/Controls.php:981, ../includes/Traits/Twitter_Feed.php:125
|
5151 |
msgid "Read More"
|
5152 |
msgstr ""
|
5153 |
|
5203 |
msgid "Title Hover Color"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: ../includes/Elements/Post_Grid.php:685, ../includes/Elements/Post_Timeline.php:350
|
5207 |
msgid "Excerpt Style"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: ../includes/Elements/Post_Grid.php:694, ../includes/Elements/Post_Timeline.php:359
|
5211 |
msgid "Excerpt Color"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
+
#: ../includes/Elements/Post_Grid.php:706, ../includes/Elements/Post_Timeline.php:371
|
5215 |
msgid "Excerpt Alignment"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: ../includes/Elements/Post_Grid.php:722, ../includes/Elements/Post_Timeline.php:387, ../includes/Elements/Tooltip.php:221, ../includes/Elements/Tooltip.php:389
|
5219 |
msgid "Justified"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: ../includes/Elements/Post_Grid.php:736, ../includes/Elements/Post_Timeline.php:401
|
5223 |
msgid "Excerpt Typography"
|
5224 |
msgstr ""
|
5225 |
|
5271 |
msgid "<p class=\"no-posts-found\">No Layout Found!</p>"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
#: ../includes/Elements/Post_Timeline.php:110
|
5275 |
msgid "Timeline Style"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: ../includes/Elements/Post_Timeline.php:118
|
5279 |
msgid "Show Overlay"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: ../includes/Elements/Post_Timeline.php:138
|
5283 |
msgid "Leave blank or Clear to use default gradient overlay"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: ../includes/Elements/Post_Timeline.php:416, ../includes/Elements/Woo_Product_Carousel.php:2548, ../includes/Extensions/Table_of_Content.php:862
|
5287 |
+
msgid "Arrow"
|
5288 |
+
msgstr ""
|
5289 |
+
|
5290 |
+
#: ../includes/Elements/Post_Timeline.php:424
|
5291 |
+
msgid "Border & Arrow Color"
|
5292 |
+
msgstr ""
|
5293 |
+
|
5294 |
+
#: ../includes/Elements/Post_Timeline.php:441, ../includes/Elements/Tooltip.php:685
|
5295 |
+
msgid "Arrow Color"
|
5296 |
+
msgstr ""
|
5297 |
+
|
5298 |
+
#: ../includes/Elements/Post_Timeline.php:516
|
5299 |
+
msgid "Date Background Color"
|
5300 |
+
msgstr ""
|
5301 |
+
|
5302 |
+
#: ../includes/Elements/Post_Timeline.php:530
|
5303 |
+
msgid "Date Text Color"
|
5304 |
+
msgstr ""
|
5305 |
+
|
5306 |
+
#: ../includes/Elements/Post_Timeline.php:578
|
5307 |
+
msgid "Line & Bullet"
|
5308 |
+
msgstr ""
|
5309 |
+
|
5310 |
+
#: ../includes/Elements/Post_Timeline.php:595
|
5311 |
msgid "Line Width"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: ../includes/Elements/Post_Timeline.php:613
|
5315 |
msgid "Line Position From Right"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: ../includes/Elements/Post_Timeline.php:635, ../includes/Extensions/Table_of_Content.php:492
|
5319 |
msgid "Bullet Size"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: ../includes/Elements/Post_Timeline.php:653
|
5323 |
msgid "Left-sided Bullet Positon"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: ../includes/Elements/Post_Timeline.php:674
|
5327 |
msgid "Right-sided Bullet Position"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: ../includes/Elements/Post_Timeline.php:696
|
5331 |
msgid "Timeline Bullet Color"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: ../includes/Elements/Post_Timeline.php:709
|
5335 |
msgid "Timeline Bullet Border Color"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: ../includes/Elements/Post_Timeline.php:722
|
5339 |
msgid "Timeline Vertical Line Color"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: ../includes/Elements/Post_Timeline.php:785, ../includes/Elements/Product_Grid.php:3074, ../includes/Elements/Woo_Product_Gallery.php:2392
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5343 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
5344 |
msgstr ""
|
5345 |
|
5627 |
msgid "Product ID"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
+
#: ../includes/Elements/Product_Grid.php:142, ../includes/Elements/Product_Grid.php:1191, ../includes/Elements/Woo_Cart.php:210, ../includes/Elements/Woo_Cart.php:441, ../includes/Elements/Woo_Product_Carousel.php:123, ../includes/Elements/Woo_Product_Carousel.php:1074, ../includes/Elements/Woo_Product_Gallery.php:112, ../includes/Elements/Woo_Product_Gallery.php:741
|
5631 |
msgid "Product Title"
|
5632 |
msgstr ""
|
5633 |
|
5634 |
+
#: ../includes/Elements/Product_Grid.php:144, ../includes/Elements/Product_Grid.php:2781, ../includes/Elements/Woo_Product_Carousel.php:125, ../includes/Elements/Woo_Product_Carousel.php:1878, ../includes/Elements/Woo_Product_Gallery.php:114, ../includes/Elements/Woo_Product_Gallery.php:2116, ../includes/Traits/Woo_Product_Comparable.php:45, ../includes/Traits/Woo_Product_Comparable.php:91
|
5635 |
msgid "SKU"
|
5636 |
msgstr ""
|
5637 |
|
5675 |
msgid "Layouts"
|
5676 |
msgstr ""
|
5677 |
|
5678 |
+
#: ../includes/Elements/Product_Grid.php:246, ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Product_Grid.php:1692, ../includes/Elements/Product_Grid.php:1813, ../includes/Elements/Team_Member.php:280, ../includes/Elements/Woo_Product_Carousel.php:799, ../includes/Elements/Woo_Product_Gallery.php:323, ../includes/Elements/Woo_Product_Gallery.php:1498
|
5679 |
msgid "Style Preset"
|
5680 |
msgstr ""
|
5681 |
|
5691 |
msgid "Overlay Style"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: ../includes/Elements/Product_Grid.php:254, ../includes/Elements/Product_Grid.php:1700, ../includes/Elements/Woo_Product_Carousel.php:807, ../includes/Elements/Woo_Product_Gallery.php:1506, ../includes/Traits/Controls.php:430
|
5695 |
msgid "Preset 5"
|
5696 |
msgstr ""
|
5697 |
|
5711 |
msgid "Product Settings"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: ../includes/Elements/Product_Grid.php:339, ../includes/Elements/Product_Grid.php:709, ../includes/Elements/Woo_Product_Carousel.php:857, ../includes/Elements/Woo_Product_Gallery.php:369, ../includes/Elements/Woo_Product_Gallery.php:540, ../includes/Traits/Woo_Product_Comparable.php:164
|
5715 |
msgid "Products"
|
5716 |
msgstr ""
|
5717 |
|
5759 |
msgid "p"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
+
#: ../includes/Elements/Product_Grid.php:457, ../includes/Elements/Woo_Product_Carousel.php:263, ../includes/Elements/Woo_Product_Gallery.php:473
|
5763 |
msgid "Show Product Rating?"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
+
#: ../includes/Elements/Product_Grid.php:470, ../includes/Elements/Woo_Product_Carousel.php:272, ../includes/Elements/Woo_Product_Gallery.php:486
|
5767 |
msgid "Show Product Price?"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
+
#: ../includes/Elements/Product_Grid.php:482, ../includes/Elements/Woo_Product_Carousel.php:281
|
5771 |
msgid "Short Description?"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
+
#: ../includes/Elements/Product_Grid.php:494, ../includes/Elements/Woo_Product_Carousel.php:290, ../includes/Traits/Controls.php:904, ../includes/Traits/Controls.php:876
|
5775 |
msgid "Excerpt Words"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
+
#: ../includes/Elements/Product_Grid.php:507, ../includes/Elements/Woo_Product_Carousel.php:302, ../includes/Traits/Controls.php:916, ../includes/Traits/Controls.php:889
|
5779 |
msgid "Expansion Indicator"
|
5780 |
msgstr ""
|
5781 |
|
5782 |
+
#: ../includes/Elements/Product_Grid.php:529, ../includes/Traits/Woo_Product_Comparable.php:158
|
5783 |
msgid "Show Product Compare?"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
+
#: ../includes/Elements/Product_Grid.php:536, ../includes/Elements/Woo_Product_Carousel.php:414, ../includes/Elements/Woo_Product_Gallery.php:1627
|
5787 |
msgid "Image Clickable?"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
+
#: ../includes/Elements/Product_Grid.php:546
|
5791 |
+
msgid "Show Wishlist?"
|
5792 |
+
msgstr ""
|
5793 |
+
|
5794 |
+
#: ../includes/Elements/Product_Grid.php:557
|
5795 |
+
msgid "<strong>YITH WOOCOMMERCE WISHLIST</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=yith-woocommerce-wishlist&tab=search&type=term\" target=\"_blank\">YITH WOOCOMMERCE WISHLIST</a> first."
|
5796 |
+
msgstr ""
|
5797 |
+
|
5798 |
+
#: ../includes/Elements/Product_Grid.php:574
|
5799 |
msgid "Add To Cart"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
+
#: ../includes/Elements/Product_Grid.php:581
|
5803 |
msgid "Show Add to cart custom text"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
+
#: ../includes/Elements/Product_Grid.php:593
|
5807 |
msgid "Simple Product"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
+
#: ../includes/Elements/Product_Grid.php:597, ../includes/Elements/Product_Grid.php:636
|
5811 |
msgid "Buy Now"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
+
#: ../includes/Elements/Product_Grid.php:606
|
5815 |
msgid "Variable Product"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
+
#: ../includes/Elements/Product_Grid.php:610
|
5819 |
msgid "Select options"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: ../includes/Elements/Product_Grid.php:619
|
5823 |
msgid "Grouped Product"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
+
#: ../includes/Elements/Product_Grid.php:623
|
5827 |
msgid "View products"
|
5828 |
msgstr ""
|
5829 |
|
5830 |
+
#: ../includes/Elements/Product_Grid.php:632
|
5831 |
msgid "External Product"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
+
#: ../includes/Elements/Product_Grid.php:645
|
5835 |
msgid "Default Product"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
+
#: ../includes/Elements/Product_Grid.php:692, ../includes/Elements/Woo_Product_Gallery.php:524, ../includes/Traits/Controls.php:641, ../includes/Traits/Controls.php:946
|
5839 |
msgid "Label Text"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
+
#: ../includes/Elements/Product_Grid.php:766, ../includes/Elements/Team_Member.php:359, ../includes/Elements/Woo_Product_Gallery.php:578
|
5843 |
msgid "Content Background Color"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
+
#: ../includes/Elements/Product_Grid.php:982
|
5847 |
msgid "Image Width(%)"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
+
#: ../includes/Elements/Product_Grid.php:1002, ../includes/Elements/Woo_Product_Carousel.php:1021
|
5851 |
msgid "Product Details"
|
5852 |
msgstr ""
|
5853 |
|
5854 |
+
#: ../includes/Elements/Product_Grid.php:1136
|
5855 |
msgid "Padding (PX)"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
+
#: ../includes/Elements/Product_Grid.php:1158
|
5859 |
msgid "Width (%)"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: ../includes/Elements/Product_Grid.php:1199, ../includes/Elements/Woo_Product_Carousel.php:1082, ../includes/Elements/Woo_Product_Gallery.php:749
|
5863 |
msgid "Product Title Color"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
+
#: ../includes/Elements/Product_Grid.php:1219, ../includes/Elements/Woo_Product_Carousel.php:1102, ../includes/Elements/Woo_Product_Gallery.php:769
|
5867 |
msgid "Product Price"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
+
#: ../includes/Elements/Product_Grid.php:1239, ../includes/Elements/Product_Grid.php:2488, ../includes/Elements/Woo_Product_Carousel.php:1571, ../includes/Elements/Woo_Product_Gallery.php:789, ../includes/Elements/Woo_Product_Gallery.php:1823
|
5871 |
msgid "Sale Price Color"
|
5872 |
msgstr ""
|
5873 |
|
5874 |
+
#: ../includes/Elements/Product_Grid.php:1258, ../includes/Elements/Woo_Product_Carousel.php:1130, ../includes/Elements/Woo_Product_Gallery.php:808
|
5875 |
msgid "Star Rating"
|
5876 |
msgstr ""
|
5877 |
|
5878 |
+
#: ../includes/Elements/Product_Grid.php:1266, ../includes/Elements/Woo_Product_Carousel.php:1138, ../includes/Elements/Woo_Product_Gallery.php:816
|
5879 |
msgid "Rating Color"
|
5880 |
msgstr ""
|
5881 |
|
5882 |
+
#: ../includes/Elements/Product_Grid.php:1345, ../includes/Elements/Woo_Product_Carousel.php:1171
|
5883 |
msgid "Product Description"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
+
#: ../includes/Elements/Product_Grid.php:1389
|
5887 |
msgid "Sale Badge Style"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
+
#: ../includes/Elements/Product_Grid.php:1397, ../includes/Elements/Woo_Product_Carousel.php:1216, ../includes/Elements/Woo_Product_Gallery.php:877
|
5891 |
msgid "Sale Badge Color"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
+
#: ../includes/Elements/Product_Grid.php:1409, ../includes/Elements/Woo_Product_Carousel.php:1228, ../includes/Elements/Woo_Product_Gallery.php:889
|
5895 |
msgid "Sale Badge Background"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
+
#: ../includes/Elements/Product_Grid.php:1431, ../includes/Elements/Woo_Product_Carousel.php:1250, ../includes/Elements/Woo_Product_Gallery.php:911
|
5899 |
msgid "Stock Out Badge"
|
5900 |
msgstr ""
|
5901 |
|
5902 |
+
#: ../includes/Elements/Product_Grid.php:1439, ../includes/Elements/Woo_Product_Carousel.php:1258, ../includes/Elements/Woo_Product_Gallery.php:919
|
5903 |
msgid "Stock Out Badge Color"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: ../includes/Elements/Product_Grid.php:1451, ../includes/Elements/Woo_Product_Carousel.php:1270, ../includes/Elements/Woo_Product_Gallery.php:931
|
5907 |
msgid "Stock Out Badge Background"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
+
#: ../includes/Elements/Product_Grid.php:1478, ../includes/Elements/Woo_Product_Gallery.php:958
|
5911 |
msgid "Add to Cart Button Styles"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
+
#: ../includes/Elements/Product_Grid.php:1539, ../includes/Elements/Product_Grid.php:1615, ../includes/Elements/Woo_Product_Gallery.php:1013, ../includes/Elements/Woo_Product_Gallery.php:1081
|
5915 |
msgid "Button Color"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
+
#: ../includes/Elements/Product_Grid.php:1686, ../includes/Elements/Woo_Product_Carousel.php:792, ../includes/Elements/Woo_Product_Gallery.php:1492
|
5919 |
msgid "Sale / Stock Out Badge"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
+
#: ../includes/Elements/Product_Grid.php:1730, ../includes/Elements/Woo_Product_Carousel.php:837, ../includes/Elements/Woo_Product_Gallery.php:1533
|
5923 |
msgid "Sale Text"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
+
#: ../includes/Elements/Product_Grid.php:1739, ../includes/Elements/Woo_Product_Carousel.php:845, ../includes/Elements/Woo_Product_Gallery.php:1541
|
5927 |
msgid "Stock Out Text"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
+
#: ../includes/Elements/Product_Grid.php:1779, ../includes/Elements/Woo_Product_Carousel.php:380, ../includes/Elements/Woo_Product_Gallery.php:1560
|
5931 |
msgid "Show Quick view?"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
+
#: ../includes/Elements/Product_Grid.php:1789, ../includes/Elements/Woo_Product_Carousel.php:390, ../includes/Elements/Woo_Product_Gallery.php:1575
|
5935 |
msgid "Quick view Title Tag"
|
5936 |
msgstr ""
|
5937 |
|
5938 |
+
#: ../includes/Elements/Product_Grid.php:1892, ../includes/Elements/Woo_Product_Carousel.php:1341
|
5939 |
msgid "Icons Size"
|
5940 |
msgstr ""
|
5941 |
|
5942 |
+
#: ../includes/Elements/Product_Grid.php:2143
|
5943 |
msgid "Show pagination"
|
5944 |
msgstr ""
|
5945 |
|
5946 |
+
#: ../includes/Elements/Product_Grid.php:2155
|
5947 |
msgid "Previous Label"
|
5948 |
msgstr ""
|
5949 |
|
5950 |
+
#: ../includes/Elements/Product_Grid.php:2156
|
5951 |
msgid "←"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
+
#: ../includes/Elements/Product_Grid.php:2166
|
5955 |
msgid "Next Label"
|
5956 |
msgstr ""
|
5957 |
|
5958 |
+
#: ../includes/Elements/Product_Grid.php:2167
|
5959 |
msgid "→"
|
5960 |
msgstr ""
|
5961 |
|
5962 |
+
#: ../includes/Elements/Product_Grid.php:2394
|
5963 |
msgid "Loader"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
+
#: ../includes/Elements/Product_Grid.php:2420, ../includes/Elements/Woo_Product_Carousel.php:1504, ../includes/Elements/Woo_Product_Gallery.php:1750
|
5967 |
msgid "Popup"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: ../includes/Elements/Product_Grid.php:2530, ../includes/Elements/Woo_Product_Carousel.php:1625, ../includes/Elements/Woo_Product_Gallery.php:1865
|
5971 |
msgid "Review Link Color"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
+
#: ../includes/Elements/Product_Grid.php:2541, ../includes/Elements/Woo_Product_Carousel.php:1637, ../includes/Elements/Woo_Product_Gallery.php:1876
|
5975 |
msgid "Review Link Hover"
|
5976 |
msgstr ""
|
5977 |
|
5978 |
+
#: ../includes/Elements/Product_Grid.php:2566, ../includes/Elements/Woo_Product_Carousel.php:1662, ../includes/Elements/Woo_Product_Gallery.php:1901
|
5979 |
msgid "Sale"
|
5980 |
msgstr ""
|
5981 |
|
5982 |
+
#: ../includes/Elements/Product_Grid.php:2664, ../includes/Elements/Woo_Product_Carousel.php:1759, ../includes/Elements/Woo_Product_Gallery.php:1999
|
5983 |
msgid "Cart Button"
|
5984 |
msgstr ""
|
5985 |
|
6067 |
msgid "Fill Color"
|
6068 |
msgstr ""
|
6069 |
|
6070 |
+
#: ../includes/Elements/Progress_Bar.php:704, ../includes/Traits/Elements.php:140, ../includes/templates/admin/elements.php:256
|
6071 |
msgid "Counter"
|
6072 |
msgstr ""
|
6073 |
|
6083 |
msgid "Prefix/Postfix Color"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
+
#: ../includes/Elements/Progress_Bar.php:797, ../includes/Elements/Progress_Bar.php:828, ../includes/Elements/Progress_Bar.php:828, ../includes/Elements/Progress_Bar.php:874
|
6087 |
msgid "%"
|
6088 |
msgstr ""
|
6089 |
|
6651 |
msgid "Tooltip Max Width"
|
6652 |
msgstr ""
|
6653 |
|
|
|
|
|
|
|
|
|
6654 |
#: ../includes/Elements/Twitter_Feed.php:82
|
6655 |
msgid "Account Settings"
|
6656 |
msgstr ""
|
7387 |
msgid "Chevron Circle"
|
7388 |
msgstr ""
|
7389 |
|
|
|
|
|
|
|
|
|
7390 |
#: ../includes/Elements/Woo_Product_Carousel.php:2549
|
7391 |
msgid "Long Arrow"
|
7392 |
msgstr ""
|
7451 |
msgid "Show Link?"
|
7452 |
msgstr ""
|
7453 |
|
7454 |
+
#: ../includes/Elements/Woo_Product_Gallery.php:2593
|
7455 |
msgid "<p class=\"no-posts-found\">No Category Found!</p>"
|
7456 |
msgstr ""
|
7457 |
|
7791 |
msgid "Go Premium"
|
7792 |
msgstr ""
|
7793 |
|
7794 |
+
#: ../includes/Traits/Admin.php:159
|
|
|
|
|
|
|
|
|
7795 |
msgid "Ok, you deserve it!"
|
7796 |
msgstr ""
|
7797 |
|
7798 |
+
#: ../includes/Traits/Admin.php:164
|
7799 |
msgid "I already did"
|
7800 |
msgstr ""
|
7801 |
|
7802 |
+
#: ../includes/Traits/Admin.php:172
|
7803 |
msgid "Maybe Later"
|
7804 |
msgstr ""
|
7805 |
|
7806 |
+
#: ../includes/Traits/Admin.php:180
|
7807 |
msgid "I need help"
|
7808 |
msgstr ""
|
7809 |
|
7810 |
+
#: ../includes/Traits/Admin.php:185
|
7811 |
msgid "Never show again"
|
7812 |
msgstr ""
|
7813 |
|
7814 |
+
#: ../includes/Traits/Admin.php:197
|
7815 |
msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
7816 |
msgstr ""
|
7817 |
|
7818 |
+
#: ../includes/Traits/Admin.php:208
|
7819 |
msgid "You are using an incompatible version of Essential Addons PRO. Please update to v4.0.0+. If you do not see automatic update, <a href=\"https://essential-addons.com/elementor/docs/manually-update-essential-addons-pro/\" target=\"_blank\">Follow manual update guide.</a>"
|
7820 |
msgstr ""
|
7821 |
|
7822 |
+
#: ../includes/Traits/Ajax_Handler.php:85, ../includes/Traits/Ajax_Handler.php:543, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:200
|
7823 |
+
msgid "Insecure form submitted without security token"
|
7824 |
+
msgstr ""
|
7825 |
+
|
7826 |
+
#: ../includes/Traits/Ajax_Handler.php:94, ../includes/Traits/Ajax_Handler.php:552, ../includes/Traits/Login_Registration.php:92, ../includes/Traits/Login_Registration.php:210, ../includes/Traits/Woo_Product_Comparable.php:2170
|
7827 |
+
msgid "Security token did not match"
|
7828 |
+
msgstr ""
|
7829 |
+
|
7830 |
+
#: ../includes/Traits/Ajax_Handler.php:105, ../includes/Traits/Ajax_Handler.php:265, ../includes/Traits/Ajax_Handler.php:329, ../includes/Traits/Ajax_Handler.php:563, ../includes/Traits/Login_Registration.php:55, ../includes/Traits/Login_Registration.php:222, ../includes/Traits/Woo_Product_Comparable.php:2128
|
7831 |
+
msgid "Page ID is missing"
|
7832 |
+
msgstr ""
|
7833 |
+
|
7834 |
+
#: ../includes/Traits/Ajax_Handler.php:116, ../includes/Traits/Ajax_Handler.php:272, ../includes/Traits/Ajax_Handler.php:336, ../includes/Traits/Ajax_Handler.php:574, ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Login_Registration.php:62, ../includes/Traits/Login_Registration.php:227, ../includes/Traits/Woo_Product_Comparable.php:2133
|
7835 |
+
msgid "Widget ID is missing"
|
7836 |
+
msgstr ""
|
7837 |
+
|
7838 |
+
#: ../includes/Traits/Ajax_Handler.php:127, ../includes/Traits/Ajax_Handler.php:278, ../includes/Traits/Ajax_Handler.php:343, ../includes/Traits/Ajax_Handler.php:584
|
7839 |
+
msgid "Widget settings are not found. Did you save the widget before using load more??"
|
7840 |
+
msgstr ""
|
7841 |
+
|
7842 |
+
#: ../includes/Traits/Ajax_Handler.php:786
|
7843 |
+
msgid "Login | Register Settings updated"
|
7844 |
+
msgstr ""
|
7845 |
+
|
7846 |
#: ../includes/Traits/Controls.php:27
|
7847 |
msgid "Manual Selection"
|
7848 |
msgstr ""
|
8091 |
" popular plugins and themes. No spam, I promise."
|
8092 |
msgstr ""
|
8093 |
|
8094 |
+
#: ../includes/Traits/Elements.php:128, ../includes/templates/admin/elements.php:76
|
8095 |
msgid "Advanced Menu"
|
8096 |
msgstr ""
|
8097 |
|
8098 |
+
#: ../includes/Traits/Elements.php:134, ../includes/templates/admin/elements.php:200
|
8099 |
msgid "Content Timeline"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
+
#: ../includes/Traits/Elements.php:146, ../includes/templates/admin/elements.php:319
|
8103 |
msgid "Divider"
|
8104 |
msgstr ""
|
8105 |
|
8106 |
+
#: ../includes/Traits/Elements.php:158, ../includes/templates/admin/elements.php:284
|
8107 |
msgid "Flip Carousel"
|
8108 |
msgstr ""
|
8109 |
|
8110 |
+
#: ../includes/Traits/Elements.php:164
|
8111 |
msgid "Google Map"
|
8112 |
msgstr ""
|
8113 |
|
8114 |
+
#: ../includes/Traits/Elements.php:170, ../includes/templates/admin/elements.php:277
|
8115 |
msgid "Image Comparison"
|
8116 |
msgstr ""
|
8117 |
|
8118 |
+
#: ../includes/Traits/Elements.php:182, ../includes/templates/admin/elements.php:326
|
8119 |
msgid "Image Scroller"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
+
#: ../includes/Traits/Elements.php:194
|
8123 |
msgid "Interactive Card"
|
8124 |
msgstr ""
|
8125 |
|
8126 |
+
#: ../includes/Traits/Elements.php:200, ../includes/templates/admin/elements.php:249
|
8127 |
msgid "Interactive Promo"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
+
#: ../includes/Traits/Elements.php:206, ../includes/templates/admin/elements.php:479, ../includes/templates/admin/go-pro.php:119
|
8131 |
msgid "LearnDash Course List"
|
8132 |
msgstr ""
|
8133 |
|
8134 |
+
#: ../includes/Traits/Elements.php:212, ../includes/templates/admin/elements.php:263
|
8135 |
msgid "Lightbox & Modal"
|
8136 |
msgstr ""
|
8137 |
|
8138 |
+
#: ../includes/Traits/Elements.php:218, ../includes/templates/admin/elements.php:291
|
8139 |
msgid "Logo Carousel"
|
8140 |
msgstr ""
|
8141 |
|
8142 |
+
#: ../includes/Traits/Elements.php:230, ../includes/templates/admin/elements.php:69
|
8143 |
msgid "Offcanvas"
|
8144 |
msgstr ""
|
8145 |
|
8146 |
+
#: ../includes/Traits/Elements.php:236, ../includes/templates/admin/elements.php:305
|
8147 |
msgid "One Page Navigation"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
+
#: ../includes/Traits/Elements.php:242, ../includes/templates/admin/elements.php:179
|
8151 |
msgid "Post Block"
|
8152 |
msgstr ""
|
8153 |
|
8154 |
+
#: ../includes/Traits/Elements.php:248, ../includes/templates/admin/elements.php:186
|
8155 |
msgid "Post Carousel"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
+
#: ../includes/Traits/Elements.php:254, ../includes/templates/admin/elements.php:193, ../includes/templates/admin/go-pro.php:39
|
8159 |
msgid "Smart Post List"
|
8160 |
msgstr ""
|
8161 |
|
8162 |
+
#: ../includes/Traits/Elements.php:260
|
8163 |
msgid "Price Menu"
|
8164 |
msgstr ""
|
8165 |
|
8166 |
+
#: ../includes/Traits/Elements.php:266, ../includes/templates/admin/elements.php:270, ../includes/templates/admin/go-pro.php:23
|
8167 |
msgid "Protected Content"
|
8168 |
msgstr ""
|
8169 |
|
8170 |
+
#: ../includes/Traits/Elements.php:272, ../includes/templates/admin/elements.php:97
|
8171 |
msgid "Static Product"
|
8172 |
msgstr ""
|
8173 |
|
8174 |
+
#: ../includes/Traits/Elements.php:278, ../includes/templates/admin/elements.php:104
|
8175 |
msgid "Team Member Carousel"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
+
#: ../includes/Traits/Elements.php:284, ../includes/templates/admin/elements.php:90
|
8179 |
msgid "Testimonial Slider"
|
8180 |
msgstr ""
|
8181 |
|
8182 |
+
#: ../includes/Traits/Elements.php:296, ../includes/templates/admin/elements.php:454
|
8183 |
msgid "Twitter Feed Carousel"
|
8184 |
msgstr ""
|
8185 |
|
8186 |
+
#: ../includes/Traits/Elements.php:302, ../includes/templates/admin/elements.php:520
|
8187 |
msgid "Woo Product Collections"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
+
#: ../includes/Traits/Elements.php:308, ../includes/templates/admin/elements.php:527, ../includes/templates/admin/go-pro.php:55
|
8191 |
msgid "Woo Product Slider"
|
8192 |
msgstr ""
|
8193 |
|
8194 |
+
#: ../includes/Traits/Elements.php:314
|
8195 |
msgid "Advanced Search"
|
8196 |
msgstr ""
|
8197 |
|
8211 |
msgid "Post ID is missing"
|
8212 |
msgstr ""
|
8213 |
|
8214 |
+
#: ../includes/Traits/Helper.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8215 |
msgid "Essential Addons for Elementor"
|
8216 |
msgstr ""
|
8217 |
|
8218 |
+
#: ../includes/Traits/Helper.php:209, ../includes/Traits/Twitter_Feed.php:117
|
8219 |
msgid "%s ago"
|
8220 |
msgstr ""
|
8221 |
|
8222 |
+
#: ../includes/Traits/Helper.php:386
|
8223 |
msgid "1,700+ Stunning Templates"
|
8224 |
msgstr ""
|
8225 |
|
8226 |
+
#: ../includes/Traits/Helper.php:387
|
8227 |
msgid "Supports Elementor & Gutenberg"
|
8228 |
msgstr ""
|
8229 |
|
8230 |
+
#: ../includes/Traits/Helper.php:388
|
8231 |
msgid "Powering up 100,000+ Websites"
|
8232 |
msgstr ""
|
8233 |
|
8234 |
+
#: ../includes/Traits/Helper.php:389
|
8235 |
msgid "Cloud Collaboration with Team"
|
8236 |
msgstr ""
|
8237 |
|
8238 |
+
#: ../includes/Traits/Helper.php:398
|
8239 |
msgid "Don’t Show This Again"
|
8240 |
msgstr ""
|
8241 |
|
8242 |
+
#: ../includes/Traits/Helper.php:410
|
8243 |
msgid "Activate Templately"
|
8244 |
msgstr ""
|
8245 |
|
8246 |
+
#: ../includes/Traits/Helper.php:407
|
8247 |
msgid "Activated Templately"
|
8248 |
msgstr ""
|
8249 |
|
8250 |
+
#: ../includes/Traits/Helper.php:413, ../includes/templates/admin/popup.php:169
|
8251 |
msgid "Submit"
|
8252 |
msgstr ""
|
8253 |
|
8707 |
msgid "No products found!"
|
8708 |
msgstr ""
|
8709 |
|
8710 |
+
#: ../includes/Template/Content/Product_Grid.php:63, ../includes/Template/Content/Product_Grid.php:29, ../includes/Template/Eicon-Woocommerce/default.php:50
|
8711 |
msgid "Sale!"
|
8712 |
msgstr ""
|
8713 |
|
8714 |
+
#: ../includes/Template/Content/Product_Grid.php:27, ../includes/Template/Eicon-Woocommerce/default.php:51
|
8715 |
msgid "Stock <br/> Out"
|
8716 |
msgstr ""
|
8717 |
|
8718 |
+
#: ../includes/Template/Eicon-Woocommerce/default.php:523
|
8719 |
msgid "Stock "
|
8720 |
msgstr ""
|
8721 |
|
8722 |
+
#: ../includes/Template/Eicon-Woocommerce/default.php:523
|
8723 |
msgid "Out"
|
8724 |
msgstr ""
|
8725 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
|
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 5.0.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -241,6 +241,21 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
241 |
|
242 |
== Changelog ==
|
243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
= 5.0.10 - 08/03/2022 =
|
245 |
|
246 |
- Fixed: EA Event Calendar | Event details text not showing
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 5.0.11
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
241 |
|
242 |
== Changelog ==
|
243 |
|
244 |
+
= 5.0.11 - 23/03/2022 =
|
245 |
+
|
246 |
+
- Fixed: “_register_controls is deprecated” error
|
247 |
+
- Added: Compatibility with Elementor 3.6.0
|
248 |
+
- Improved: EA Advanced Tabs | Added Areal Label markup
|
249 |
+
- Improved: EA Product Grid | YITH WooCommerce Wishlist support
|
250 |
+
- Improved: Refactored AJAX requests for performance improvement
|
251 |
+
- Fixed: EA Filterable Gallery | not working when special characters are used
|
252 |
+
- Fixed: EA Woo Checkout | “Shipping” text not being translatable
|
253 |
+
- Fixed: EA Reading Progress Bar | global color not working
|
254 |
+
- Fixed: EA Event Calendar | Event Details popup not working with Jupiter X theme
|
255 |
+
- Fixed: EA Gravity Forms | Title and Description alignment not working
|
256 |
+
- Fixed: EA Post Timeline | Title tag, image height & text color not working
|
257 |
+
- Few minor bug fixes & improvements
|
258 |
+
|
259 |
= 5.0.10 - 08/03/2022 =
|
260 |
|
261 |
- Fixed: EA Event Calendar | Event details text not showing
|