Version Description
03/03/2021 =
Added: Dynamic query option for EA Woo Product Grid
Fixed: EA Login/Register Form | Error/Success message not appearing after Registration
Fixed: EA Advanced Accordion | Showing a border around the tab
Fixed: EA Facebook Feed | Preview content settings not working properly
Few minor bug fix and improvements
Download this release
Release Info
Developer | re_enter_rupok |
Plugin | Elementor Essential Addons |
Version | 4.5.2 |
Comparing to | |
See all releases |
Code changes from version 4.5.1 to 4.5.2
- assets/front-end/css/view/advanced-accordion.css +4 -0
- assets/front-end/css/view/advanced-accordion.min.css +1 -1
- assets/front-end/css/view/product-grid.css +4 -0
- assets/front-end/css/view/product-grid.min.css +1 -1
- assets/front-end/js/view/login-register.js +1 -1
- assets/front-end/js/view/login-register.min.js +1 -1
- essential_adons_elementor.php +4 -2
- includes/Classes/Helper.php +13 -1
- includes/Elements/Betterdocs_Category_Box.php +1 -1
- includes/Elements/Betterdocs_Category_Grid.php +1 -1
- includes/Elements/Facebook_Feed.php +5 -5
- includes/Elements/Feature_List.php +1 -1
- includes/Elements/Login_Register.php +3 -2
- includes/Elements/Pricing_Table.php +5 -4
- includes/Elements/Product_Grid.php +139 -84
- includes/Template/Eicon-Woocommerce/default.php +14 -5
- includes/Traits/Facebook_Feed.php +49 -29
- languages/essential-addons-for-elementor-lite.pot +143 -143
- readme.txt +9 -1
assets/front-end/css/view/advanced-accordion.css
CHANGED
@@ -58,6 +58,10 @@
|
|
58 |
transition: all 0.3s ease-in-out;
|
59 |
}
|
60 |
|
|
|
|
|
|
|
|
|
61 |
.fa-accordion-icon {
|
62 |
display: inline-block;
|
63 |
margin-right: 10px;
|
58 |
transition: all 0.3s ease-in-out;
|
59 |
}
|
60 |
|
61 |
+
.eael-adv-accordion .eael-accordion-list .eael-accordion-header:focus {
|
62 |
+
outline: unset;
|
63 |
+
}
|
64 |
+
|
65 |
.fa-accordion-icon {
|
66 |
display: inline-block;
|
67 |
margin-right: 10px;
|
assets/front-end/css/view/advanced-accordion.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.eael-adv-accordion{width:auto;height:auto;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header{padding:15px;border:1px solid rgba(0,0,0,.02);font-size:1rem;font-weight:600;line-height:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer}.eael-adv-accordion .eael-accordion-list .eael-accordion-header>.eael-accordion-tab-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:0}.eael-adv-accordion .eael-accordion-list .eael-accordion-header>i{margin-right:10px}.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.fa-accordion-icon{display:inline-block;margin-right:10px}.eael-adv-accordion .eael-accordion-list .eael-accordion-content{display:none;border:1px solid #eee;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1rem;line-height:1.7}.eael-adv-accordion .eael-accordion-list .eael-accordion-content p{margin:0}.eael-adv-accordion .eael-accordion-list .eael-accordion-content.active{display:block}@-webkit-keyframes rotate-90{0%{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@keyframes rotate-90{0%{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@-webkit-keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}@keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}.rtl .eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}
|
1 |
+
.eael-adv-accordion{width:auto;height:auto;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header{padding:15px;border:1px solid rgba(0,0,0,.02);font-size:1rem;font-weight:600;line-height:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer}.eael-adv-accordion .eael-accordion-list .eael-accordion-header>.eael-accordion-tab-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:0}.eael-adv-accordion .eael-accordion-list .eael-accordion-header>i{margin-right:10px}.eael-adv-accordion .eael-accordion-list .eael-accordion-header .fa-toggle{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);z-index:10;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.eael-adv-accordion .eael-accordion-list .eael-accordion-header:focus{outline:unset}.fa-accordion-icon{display:inline-block;margin-right:10px}.eael-adv-accordion .eael-accordion-list .eael-accordion-content{display:none;border:1px solid #eee;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:1rem;line-height:1.7}.eael-adv-accordion .eael-accordion-list .eael-accordion-content p{margin:0}.eael-adv-accordion .eael-accordion-list .eael-accordion-content.active{display:block}@-webkit-keyframes rotate-90{0%{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@keyframes rotate-90{0%{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}100%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}}@-webkit-keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}@keyframes fadeIn{0%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}100%{opacity:1;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;transition:all .3s ease-in-out}}.rtl .eael-adv-accordion .eael-accordion-list .eael-accordion-header.active .fa-toggle{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}
|
assets/front-end/css/view/product-grid.css
CHANGED
@@ -2538,3 +2538,7 @@
|
|
2538 |
-o-transition: all 0.2s;
|
2539 |
transition: all 0.2s;
|
2540 |
}
|
|
|
|
|
|
|
|
2538 |
-o-transition: all 0.2s;
|
2539 |
transition: all 0.2s;
|
2540 |
}
|
2541 |
+
.theme-flexia .woocommerce ul.products li.product .woocommerce-LoopProduct-link {
|
2542 |
+
position: unset;
|
2543 |
+
display: unset;
|
2544 |
+
}
|
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 .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.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;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-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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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 .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.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.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.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.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 .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 .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-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%}.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-popup{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-product-popup.eael-product-popup-ready{z-index:999;opacity:1 !important}.eael-product-popup.eael-product-zoom-in{opacity:0;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.eael-product-popup.eael-product-zoom-in .eael-product-popup-details{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)}.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-popup-details{opacity:1;-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-modal-bg{opacity:.7}.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-modal-bg{opacity:0}.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-popup-details{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);opacity:0}.eael-product-popup .eael-product-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-product-popup .eael-product-popup-details{position:relative;margin:5vh auto;padding:20px;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;width:100%;border-radius:10px;height:auto;max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button{position:relative}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-added:after{font-family:"Font Awesome 5 Free";content:"";font-weight:900;display:inline-block;position:absolute;right:12px}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-loading:after{font-family:"Font Awesome 5 Free";content:"";font-weight:900;position:absolute;right:12px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.eael-product-popup.woocommerce div.product{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;overflow-y:auto;background:transparent;position:relative}.eael-product-popup.woocommerce div.product.ast-article-single,.eael-product-popup.woocommerce div.product .ast-article-single{background:transparent}@media(max-width: 767px){.eael-product-popup.woocommerce div.product{display:block}}.eael-product-popup.woocommerce div.product div.images{width:100%;margin-bottom:0}.eael-product-popup.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;margin-bottom:1em}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:calc(25% - .75em);margin-right:1em;margin-bottom:1em}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:last-child{margin-right:0}.eael-product-popup.woocommerce div.product .product_title{font-size:28px;line-height:1.2em;font-weight:700;margin-bottom:10px;letter-spacing:normal;text-transform:capitalize}.eael-product-popup.woocommerce div.product .product_title:before{content:none}.eael-product-popup.woocommerce div.product .price{font-size:25px;line-height:1.2em;margin:0 0 15px;text-align:left !important}.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description{font-size:18px;line-height:1.2em;margin:0}.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p,.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p:last-child{margin-bottom:20px}.eael-product-popup.woocommerce div.product .button{margin:0 !important;line-height:1.5em}.eael-product-popup.woocommerce div.product form.cart{margin:0 0 1.2em;padding:0;border:none;width:100%}.eael-product-popup.woocommerce div.product form.cart table{border:none;margin:0 0 1.2em;border-collapse:collapse;width:100%}.eael-product-popup.woocommerce div.product form.cart table tbody{display:table-row-group;border:none}.eael-product-popup.woocommerce div.product form.cart p.stock{margin-bottom:0}.eael-product-popup.woocommerce div.product form.cart .group_table td{border:none}.eael-product-popup.woocommerce div.product form.cart .group_table .button{padding:.8em;font-weight:400;font-size:.9rem;white-space:nowrap}.eael-product-popup.woocommerce div.product form.cart div.quantity{margin-right:15px;width:auto}.eael-product-popup.woocommerce div.product form.cart div.quantity input,.eael-product-popup.woocommerce div.product form.cart div.quantity a{height:100%;border:1px solid}.eael-product-popup.woocommerce div.product form.cart div.quantity input[type=number]{min-width:90px}.eael-product-popup.woocommerce div.product form.cart div.quantity .qty{text-align:center}.eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{outline:none}.eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 40px}.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.plus,.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.minus{display:none}.eael-product-popup.woocommerce div.product .woocommerce-product-rating{margin-bottom:5px}.eael-product-popup.woocommerce div.product .woocommerce-product-rating .star-rating{font-size:16px}.eael-product-popup.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link{display:inline-block;vertical-align:top;font-size:16px;line-height:18px}.eael-product-popup.woocommerce div.product table tbody tr{border-bottom:1px solid #ccc}.eael-product-popup.woocommerce div.product table tbody tr td{background:transparent;vertical-align:middle !important;padding:15px 15px 15px 0 !important}.eael-product-popup.woocommerce div.product .product_meta{font-size:14px;border-top:1px solid #ccc;border-bottom:0;padding:1em 0 0;margin:0 0 .8em}.eael-product-popup.woocommerce div.product .product_meta>span{display:block;border:none;padding:5px 0}.eael-product-popup .eael-product-image-wrap{width:40%}@media(max-width: 767px){.eael-product-popup .eael-product-image-wrap{width:100%}}.eael-product-popup .eael-product-image-wrap .badge-container{display:none}.eael-product-popup .eael-product-image-wrap .eael-new-product .flex-viewport{height:auto !important}.eael-product-popup .eael-product-details-wrap{width:56%;margin-left:4%;text-align:left}@media(max-width: 767px){.eael-product-popup .eael-product-details-wrap{width:100%;margin-left:0;margin-top:25px}}.eael-product-popup .eael-product-details-wrap .is-divider{display:none}.eael-product-popup button.eael-product-popup-close{position:absolute;right:-15px;top:-18px;font-size:20px;padding:0;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;overflow:visible;background:#fff !important;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;min-height:40px;max-width:40px;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-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%;opacity:1;border:0;margin:0}.eael-product-popup button.eael-product-popup-close:focus{outline:none}.eael-product-popup form.cart{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.eael-product-popup form.cart.variations_form{display:block}.eael-product-popup form.cart.variations_form .variations{border:none}.eael-product-popup form.cart.variations_form .variations tr{margin-bottom:5px}.eael-product-popup form.cart.variations_form .variations td{display:block;width:100%;border:none;padding:0;margin-bottom:5px}.eael-product-popup form.cart.variations_form .variations td select{width:100%}.eael-product-popup form.cart.variations_form .variations_button{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-popup form.cart.grouped_form{display:block}.eael-product-popup form.cart.grouped_form table .button{line-height:1.2em}.eael-product-popup form.cart.grouped_form .quantity{width:100%}.eael-product-popup form.cart.grouped_form .quantity input,.eael-product-popup form.cart.grouped_form .quantity a{height:auto !important;min-height:2.507em;line-height:1.2em}.eael-product-popup form.cart .quantity{width:37%;margin-right:20px}.eael-product-popup form.cart .quantity input{width:100%}.eael-product-popup .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-popup .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-popup .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-popup .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-popup .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-popup .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-popup .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-popup .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-popup .eael-onsale.sale-preset-5{display:block;line-height:74px;height:50px;width:100px;left:-35pX;top:-8px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-popup .eael-onsale.sale-preset-5.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-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:50px;width:100px;left:-35pX;top:-8px;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;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.grid .eael-product-wrap .icons-wrap.over-box-style li a.product_type_variable,.eael-product-grid.masonry .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_variable{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.ajax_add_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.ajax_add_to_cart{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.ajax_add_to_cart:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.ajax_add_to_cart: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.ajax_add_to_cart.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.ajax_add_to_cart.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 -15px}}.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-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 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}.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-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-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-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%}}.theme-oceanwp.elementor-editor-active .eael-product-popup.woocommerce div.product form.cart div.quantity .qty{max-width:150px}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{border:1px solid}.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}
|
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 .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.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;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-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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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.add_to_cart_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 .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.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.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.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.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 .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 .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-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%}.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-popup{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-product-popup.eael-product-popup-ready{z-index:999;opacity:1 !important}.eael-product-popup.eael-product-zoom-in{opacity:0;-webkit-transition:all .3s ease-out;-o-transition:all .3s ease-out;transition:all .3s ease-out}.eael-product-popup.eael-product-zoom-in .eael-product-popup-details{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)}.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-popup-details{opacity:1;-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9)}.eael-product-popup.eael-product-zoom-in.eael-product-popup-ready .eael-product-modal-bg{opacity:.7}.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-modal-bg{opacity:0}.eael-product-popup.eael-product-zoom-in.eael-product-modal-removing .eael-product-popup-details{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);opacity:0}.eael-product-popup .eael-product-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-product-popup .eael-product-popup-details{position:relative;margin:5vh auto;padding:20px;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;width:100%;border-radius:10px;height:auto;max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button{position:relative}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-added:after{font-family:"Font Awesome 5 Free";content:"";font-weight:900;display:inline-block;position:absolute;right:12px}.eael-product-popup .eael-product-popup-details .single_add_to_cart_button.eael-addtocart-loading:after{font-family:"Font Awesome 5 Free";content:"";font-weight:900;position:absolute;right:12px;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite}.eael-product-popup.woocommerce div.product{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;overflow-y:auto;background:transparent;position:relative}.eael-product-popup.woocommerce div.product.ast-article-single,.eael-product-popup.woocommerce div.product .ast-article-single{background:transparent}@media(max-width: 767px){.eael-product-popup.woocommerce div.product{display:block}}.eael-product-popup.woocommerce div.product div.images{width:100%;margin-bottom:0}.eael-product-popup.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport{-webkit-transform-style:preserve-3d;transform-style:preserve-3d;margin-bottom:1em}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:calc(25% - .75em);margin-right:1em;margin-bottom:1em}.eael-product-popup.woocommerce div.product div.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:last-child{margin-right:0}.eael-product-popup.woocommerce div.product .product_title{font-size:28px;line-height:1.2em;font-weight:700;margin-bottom:10px;letter-spacing:normal;text-transform:capitalize}.eael-product-popup.woocommerce div.product .product_title:before{content:none}.eael-product-popup.woocommerce div.product .price{font-size:25px;line-height:1.2em;margin:0 0 15px;text-align:left !important}.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description{font-size:18px;line-height:1.2em;margin:0}.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p,.eael-product-popup.woocommerce div.product .woocommerce-product-details__short-description p:last-child{margin-bottom:20px}.eael-product-popup.woocommerce div.product .button{margin:0 !important;line-height:1.5em}.eael-product-popup.woocommerce div.product form.cart{margin:0 0 1.2em;padding:0;border:none;width:100%}.eael-product-popup.woocommerce div.product form.cart table{border:none;margin:0 0 1.2em;border-collapse:collapse;width:100%}.eael-product-popup.woocommerce div.product form.cart table tbody{display:table-row-group;border:none}.eael-product-popup.woocommerce div.product form.cart p.stock{margin-bottom:0}.eael-product-popup.woocommerce div.product form.cart .group_table td{border:none}.eael-product-popup.woocommerce div.product form.cart .group_table .button{padding:.8em;font-weight:400;font-size:.9rem;white-space:nowrap}.eael-product-popup.woocommerce div.product form.cart div.quantity{margin-right:15px;width:auto}.eael-product-popup.woocommerce div.product form.cart div.quantity input,.eael-product-popup.woocommerce div.product form.cart div.quantity a{height:100%;border:1px solid}.eael-product-popup.woocommerce div.product form.cart div.quantity input[type=number]{min-width:90px}.eael-product-popup.woocommerce div.product form.cart div.quantity .qty{text-align:center}.eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{outline:none}.eael-product-popup.woocommerce div.product form.cart .button.single_add_to_cart_button{padding:10px 40px}.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.plus,.eael-product-popup.woocommerce div.product form.cart .product-single-quantity button.minus{display:none}.eael-product-popup.woocommerce div.product .woocommerce-product-rating{margin-bottom:5px}.eael-product-popup.woocommerce div.product .woocommerce-product-rating .star-rating{font-size:16px}.eael-product-popup.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link{display:inline-block;vertical-align:top;font-size:16px;line-height:18px}.eael-product-popup.woocommerce div.product table tbody tr{border-bottom:1px solid #ccc}.eael-product-popup.woocommerce div.product table tbody tr td{background:transparent;vertical-align:middle !important;padding:15px 15px 15px 0 !important}.eael-product-popup.woocommerce div.product .product_meta{font-size:14px;border-top:1px solid #ccc;border-bottom:0;padding:1em 0 0;margin:0 0 .8em}.eael-product-popup.woocommerce div.product .product_meta>span{display:block;border:none;padding:5px 0}.eael-product-popup .eael-product-image-wrap{width:40%}@media(max-width: 767px){.eael-product-popup .eael-product-image-wrap{width:100%}}.eael-product-popup .eael-product-image-wrap .badge-container{display:none}.eael-product-popup .eael-product-image-wrap .eael-new-product .flex-viewport{height:auto !important}.eael-product-popup .eael-product-details-wrap{width:56%;margin-left:4%;text-align:left}@media(max-width: 767px){.eael-product-popup .eael-product-details-wrap{width:100%;margin-left:0;margin-top:25px}}.eael-product-popup .eael-product-details-wrap .is-divider{display:none}.eael-product-popup button.eael-product-popup-close{position:absolute;right:-15px;top:-18px;font-size:20px;padding:0;cursor:pointer;-webkit-box-sizing:content-box;box-sizing:content-box;overflow:visible;background:#fff !important;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;min-height:40px;max-width:40px;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-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%;opacity:1;border:0;margin:0}.eael-product-popup button.eael-product-popup-close:focus{outline:none}.eael-product-popup form.cart{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.eael-product-popup form.cart.variations_form{display:block}.eael-product-popup form.cart.variations_form .variations{border:none}.eael-product-popup form.cart.variations_form .variations tr{margin-bottom:5px}.eael-product-popup form.cart.variations_form .variations td{display:block;width:100%;border:none;padding:0;margin-bottom:5px}.eael-product-popup form.cart.variations_form .variations td select{width:100%}.eael-product-popup form.cart.variations_form .variations_button{display:-webkit-box;display:-ms-flexbox;display:flex}.eael-product-popup form.cart.grouped_form{display:block}.eael-product-popup form.cart.grouped_form table .button{line-height:1.2em}.eael-product-popup form.cart.grouped_form .quantity{width:100%}.eael-product-popup form.cart.grouped_form .quantity input,.eael-product-popup form.cart.grouped_form .quantity a{height:auto !important;min-height:2.507em;line-height:1.2em}.eael-product-popup form.cart .quantity{width:37%;margin-right:20px}.eael-product-popup form.cart .quantity input{width:100%}.eael-product-popup .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-popup .eael-onsale.sale-preset-1.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-1.right{left:auto;right:0}.eael-product-popup .eael-onsale.sale-preset-2{padding:0;top:5px;left:5px;min-width:50px;min-height:50px;line-height:50px;border-radius:100%;-webkit-font-smoothing:antialiased}.eael-product-popup .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-popup .eael-onsale.sale-preset-3{border-radius:50px;left:15px;top:15px}.eael-product-popup .eael-onsale.sale-preset-3.outofstock br{display:none}.eael-product-popup .eael-onsale.sale-preset-4{left:0;top:15px}.eael-product-popup .eael-onsale.sale-preset-4.outofstock br{display:none}.eael-product-popup .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-popup .eael-onsale.sale-preset-5{display:block;line-height:74px;height:50px;width:100px;left:-35pX;top:-8px;right:auto;padding:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.eael-product-popup .eael-onsale.sale-preset-5.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-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:50px;width:100px;left:-35pX;top:-8px;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;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.grid .eael-product-wrap .icons-wrap.over-box-style li a.product_type_variable,.eael-product-grid.masonry .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_variable{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.ajax_add_to_cart,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.ajax_add_to_cart{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.ajax_add_to_cart:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.ajax_add_to_cart: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.ajax_add_to_cart.product_type_variable:before,.eael-product-grid.masonry .eael-product-wrap .icons-wrap.block-box-style li a.button.add_to_cart_button.ajax_add_to_cart.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 -15px}}.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-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 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}.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-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-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-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%}}.theme-oceanwp.elementor-editor-active .eael-product-popup.woocommerce div.product form.cart div.quantity .qty{max-width:150px}.theme-oceanwp .eael-product-popup.woocommerce div.product form.cart div.quantity .qty:focus{border:1px solid}.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}
|
assets/front-end/js/view/login-register.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 var EALoginRegister = function EALoginRegister($scope, $) {\n var $wrap = $scope.find('.eael-login-registration-wrapper'); // cache wrapper\n\n var widgetId = $wrap.data('widget-id');\n var recaptchaSiteKey = $wrap.data('recaptcha-sitekey');\n var $loginFormWrapper = $scope.find(\"#eael-login-form-wrapper\");\n var loginRcTheme = $loginFormWrapper.data('recaptcha-theme');\n var loginRcSize = $loginFormWrapper.data('recaptcha-size');\n var $regFormWrapper = $scope.find(\"#eael-register-form-wrapper\");\n var regRcTheme = $regFormWrapper.data('recaptcha-theme');\n var regRcSize = $regFormWrapper.data('recaptcha-size');\n var $regLinkAction = $scope.find('#eael-lr-reg-toggle');\n var $loginLinkAction = $scope.find('#eael-lr-login-toggle');\n var $passField = $loginFormWrapper.find('#eael-user-password');\n var recaptchaAvailable = typeof grecaptcha !== 'undefined' && grecaptcha !== null;\n\n if ('form' === $regLinkAction.data('action')) {\n $regLinkAction.on('click', function (e) {\n e.preventDefault();\n $loginFormWrapper.hide();\n $regFormWrapper.fadeIn();\n });\n }\n\n if ('form' === $loginLinkAction.data('action')) {\n $loginLinkAction.on('click', function (e) {\n e.preventDefault();\n $regFormWrapper.hide();\n $loginFormWrapper.fadeIn();\n });\n } // Password Visibility Toggle\n\n\n var pass_shown = false;\n $(document).on('click', '#wp-hide-pw', function (e) {\n var $icon = $(this).find('span'); // cache\n\n if (pass_shown) {\n $passField.attr('type', 'password');\n $icon.removeClass('dashicons-hidden').addClass('dashicons-visibility');\n pass_shown = false;\n } else {\n $passField.attr('type', 'text');\n $icon.removeClass('dashicons-visibility').addClass('dashicons-hidden');\n pass_shown = true;\n }\n }); // reCAPTCHA\n\n function onloadLRcb() {\n var loginRecaptchaNode = document.getElementById('login-recaptcha-node-' + widgetId);\n var registerRecaptchaNode = document.getElementById('register-recaptcha-node-' + widgetId);\n\n if (loginRecaptchaNode) {\n grecaptcha.render(loginRecaptchaNode, {\n 'sitekey': recaptchaSiteKey,\n 'theme': loginRcTheme,\n 'size': loginRcSize\n });\n }\n\n if (registerRecaptchaNode) {\n grecaptcha.render(registerRecaptchaNode, {\n 'sitekey': recaptchaSiteKey,\n 'theme': regRcTheme,\n 'size': regRcSize\n });\n }\n }\n\n if (recaptchaAvailable && isEditMode) {\n // on elementor editor, window load event already fired, so run recaptcha\n onloadLRcb();\n } else {\n // on frontend, load even is yet to fire, so wait and fire recaptcha\n $(window).on('load', function () {\n
|
97 |
|
98 |
/***/ })
|
99 |
|
93 |
/*! no static exports found */
|
94 |
/***/ (function(module, exports) {
|
95 |
|
96 |
+
eval("ea.hooks.addAction(\"init\", \"ea\", function () {\n var EALoginRegister = function EALoginRegister($scope, $) {\n var $wrap = $scope.find('.eael-login-registration-wrapper'); // cache wrapper\n\n var widgetId = $wrap.data('widget-id');\n var recaptchaSiteKey = $wrap.data('recaptcha-sitekey');\n var $loginFormWrapper = $scope.find(\"#eael-login-form-wrapper\");\n var loginRcTheme = $loginFormWrapper.data('recaptcha-theme');\n var loginRcSize = $loginFormWrapper.data('recaptcha-size');\n var $regFormWrapper = $scope.find(\"#eael-register-form-wrapper\");\n var regRcTheme = $regFormWrapper.data('recaptcha-theme');\n var regRcSize = $regFormWrapper.data('recaptcha-size');\n var $regLinkAction = $scope.find('#eael-lr-reg-toggle');\n var $loginLinkAction = $scope.find('#eael-lr-login-toggle');\n var $passField = $loginFormWrapper.find('#eael-user-password');\n var recaptchaAvailable = typeof grecaptcha !== 'undefined' && grecaptcha !== null;\n var params = new URLSearchParams(location.search);\n\n if ('form' === $regLinkAction.data('action')) {\n $regLinkAction.on('click', function (e) {\n e.preventDefault();\n\n if (!params.has('eael-register')) {\n params.append('eael-register', 1);\n }\n\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n $loginFormWrapper.hide();\n $regFormWrapper.fadeIn();\n });\n }\n\n if ('form' === $loginLinkAction.data('action')) {\n $loginLinkAction.on('click', function (e) {\n if (params.has('eael-register')) {\n params[\"delete\"]('eael-register');\n }\n\n window.history.replaceState({}, '', \"\".concat(location.pathname, \"?\").concat(params));\n e.preventDefault();\n $regFormWrapper.hide();\n $loginFormWrapper.fadeIn();\n });\n } // Password Visibility Toggle\n\n\n var pass_shown = false;\n $(document).on('click', '#wp-hide-pw', function (e) {\n var $icon = $(this).find('span'); // cache\n\n if (pass_shown) {\n $passField.attr('type', 'password');\n $icon.removeClass('dashicons-hidden').addClass('dashicons-visibility');\n pass_shown = false;\n } else {\n $passField.attr('type', 'text');\n $icon.removeClass('dashicons-visibility').addClass('dashicons-hidden');\n pass_shown = true;\n }\n }); // reCAPTCHA\n\n function onloadLRcb() {\n var loginRecaptchaNode = document.getElementById('login-recaptcha-node-' + widgetId);\n var registerRecaptchaNode = document.getElementById('register-recaptcha-node-' + widgetId);\n\n if (typeof grecaptcha.render != \"function\") {\n return false;\n }\n\n if (loginRecaptchaNode) {\n grecaptcha.render(loginRecaptchaNode, {\n 'sitekey': recaptchaSiteKey,\n 'theme': loginRcTheme,\n 'size': loginRcSize\n });\n }\n\n if (registerRecaptchaNode) {\n grecaptcha.render(registerRecaptchaNode, {\n 'sitekey': recaptchaSiteKey,\n 'theme': regRcTheme,\n 'size': regRcSize\n });\n }\n }\n\n if (recaptchaAvailable && isEditMode) {\n // on elementor editor, window load event already fired, so run recaptcha\n onloadLRcb();\n } else {\n // on frontend, load even is yet to fire, so wait and fire recaptcha\n var navData = window.performance.getEntriesByType(\"navigation\");\n\n if (navData.length > 0 && navData[0].loadEventEnd > 0) {\n if (recaptchaAvailable) {\n onloadLRcb();\n }\n } else {\n $(window).on('load', function () {\n if (recaptchaAvailable) {\n onloadLRcb();\n }\n });\n }\n }\n };\n\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-login-register.default\", EALoginRegister);\n});\n\n//# sourceURL=webpack:///./src/js/view/login-register.js?");
|
97 |
|
98 |
/***/ })
|
99 |
|
assets/front-end/js/view/login-register.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function n(
|
1 |
+
!function(e){var t={};function n(a){if(t[a])return t[a].exports;var r=t[a]={i:a,l:!1,exports:{}};return e[a].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(a,r,function(t){return e[t]}.bind(null,r));return a},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=13)}({13:function(e,t){ea.hooks.addAction("init","ea",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-login-register.default",(function(e,t){var n=e.find(".eael-login-registration-wrapper"),a=n.data("widget-id"),r=n.data("recaptcha-sitekey"),o=e.find("#eael-login-form-wrapper"),i=o.data("recaptcha-theme"),c=o.data("recaptcha-size"),d=e.find("#eael-register-form-wrapper"),l=d.data("recaptcha-theme"),s=d.data("recaptcha-size"),f=e.find("#eael-lr-reg-toggle"),p=e.find("#eael-lr-login-toggle"),u=o.find("#eael-user-password"),h="undefined"!=typeof grecaptcha&&null!==grecaptcha,g=new URLSearchParams(location.search);"form"===f.data("action")&&f.on("click",(function(e){e.preventDefault(),g.has("eael-register")||g.append("eael-register",1),window.history.replaceState({},"","".concat(location.pathname,"?").concat(g)),o.hide(),d.fadeIn()})),"form"===p.data("action")&&p.on("click",(function(e){g.has("eael-register")&&g.delete("eael-register"),window.history.replaceState({},"","".concat(location.pathname,"?").concat(g)),e.preventDefault(),d.hide(),o.fadeIn()}));var y=!1;function m(){var e=document.getElementById("login-recaptcha-node-"+a),t=document.getElementById("register-recaptcha-node-"+a);if("function"!=typeof grecaptcha.render)return!1;e&&grecaptcha.render(e,{sitekey:r,theme:i,size:c}),t&&grecaptcha.render(t,{sitekey:r,theme:l,size:s})}if(t(document).on("click","#wp-hide-pw",(function(e){var n=t(this).find("span");y?(u.attr("type","password"),n.removeClass("dashicons-hidden").addClass("dashicons-visibility"),y=!1):(u.attr("type","text"),n.removeClass("dashicons-visibility").addClass("dashicons-hidden"),y=!0)})),h&&isEditMode)m();else{var v=window.performance.getEntriesByType("navigation");v.length>0&&v[0].loadEventEnd>0?h&&m():t(window).on("load",(function(){h&&m()}))}}))}))}});
|
essential_adons_elementor.php
CHANGED
@@ -4,12 +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: 4.5.
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
* WC tested up to: 5.0.0
|
|
|
|
|
13 |
*/
|
14 |
|
15 |
if (!defined('ABSPATH')) {
|
@@ -25,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
25 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
26 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
27 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
28 |
-
define('EAEL_PLUGIN_VERSION', '4.5.
|
29 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
30 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
31 |
/**
|
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: 4.5.2
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
* WC tested up to: 5.0.0
|
13 |
+
* Elementor tested up to: 3.1.1
|
14 |
+
* Elementor Pro tested up to: 3.1.1
|
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', '4.5.2');
|
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/Helper.php
CHANGED
@@ -634,14 +634,26 @@ class Helper
|
|
634 |
public static function get_dynamic_args(array $settings, array $args)
|
635 |
{
|
636 |
if ($settings['post_type'] === 'source_dynamic' && is_archive()) {
|
637 |
-
|
638 |
$data = get_queried_object();
|
639 |
|
640 |
if (isset($data->post_type)) {
|
641 |
$args['post_type'] = $data->post_type;
|
|
|
642 |
} else {
|
643 |
global $wp_query;
|
644 |
$args['post_type'] = $wp_query->query_vars['post_type'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
645 |
}
|
646 |
|
647 |
if ( isset($data->taxonomy) ) {
|
634 |
public static function get_dynamic_args(array $settings, array $args)
|
635 |
{
|
636 |
if ($settings['post_type'] === 'source_dynamic' && is_archive()) {
|
|
|
637 |
$data = get_queried_object();
|
638 |
|
639 |
if (isset($data->post_type)) {
|
640 |
$args['post_type'] = $data->post_type;
|
641 |
+
$args['tax_query'] = [];
|
642 |
} else {
|
643 |
global $wp_query;
|
644 |
$args['post_type'] = $wp_query->query_vars['post_type'];
|
645 |
+
if(!empty($wp_query->query_vars['s'])){
|
646 |
+
$args['s'] = $wp_query->query_vars['s'];
|
647 |
+
$args['offset'] = 0;
|
648 |
+
}
|
649 |
+
}
|
650 |
+
|
651 |
+
if ( isset( $data->taxonomy ) ) {
|
652 |
+
$args[ 'tax_query' ][] = [
|
653 |
+
'taxonomy' => $data->taxonomy,
|
654 |
+
'field' => 'term_id',
|
655 |
+
'terms' => $data->term_id,
|
656 |
+
];
|
657 |
}
|
658 |
|
659 |
if ( isset($data->taxonomy) ) {
|
includes/Elements/Betterdocs_Category_Box.php
CHANGED
@@ -36,7 +36,7 @@ class Betterdocs_Category_Box extends Widget_Base {
|
|
36 |
|
37 |
public function get_categories()
|
38 |
{
|
39 |
-
return ['essential-addons-elementor'
|
40 |
}
|
41 |
|
42 |
public function get_icon()
|
36 |
|
37 |
public function get_categories()
|
38 |
{
|
39 |
+
return ['essential-addons-elementor'];
|
40 |
}
|
41 |
|
42 |
public function get_icon()
|
includes/Elements/Betterdocs_Category_Grid.php
CHANGED
@@ -32,7 +32,7 @@ class Betterdocs_Category_Grid extends Widget_Base
|
|
32 |
|
33 |
public function get_categories()
|
34 |
{
|
35 |
-
return ['essential-addons-elementor'
|
36 |
}
|
37 |
|
38 |
public function get_icon()
|
32 |
|
33 |
public function get_categories()
|
34 |
{
|
35 |
+
return ['essential-addons-elementor'];
|
36 |
}
|
37 |
|
38 |
public function get_icon()
|
includes/Elements/Facebook_Feed.php
CHANGED
@@ -291,7 +291,7 @@ class Facebook_Feed extends Widget_Base
|
|
291 |
'eael_facebook_feed_is_show_preview_content',
|
292 |
[
|
293 |
'label' => __('Show Preview Content', 'essential-addons-for-elementor-lite'),
|
294 |
-
'type' =>
|
295 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
296 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
297 |
'return_value' => 'yes',
|
@@ -303,7 +303,7 @@ class Facebook_Feed extends Widget_Base
|
|
303 |
'eael_facebook_feed_is_show_preview_thumbnail',
|
304 |
[
|
305 |
'label' => __('Show Preview Thumbnail', 'essential-addons-for-elementor-lite'),
|
306 |
-
'type' =>
|
307 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
308 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
309 |
'return_value' => 'yes',
|
@@ -318,7 +318,7 @@ class Facebook_Feed extends Widget_Base
|
|
318 |
'eael_facebook_feed_is_show_preview_host',
|
319 |
[
|
320 |
'label' => __('Show Preview Host Name', 'essential-addons-for-elementor-lite'),
|
321 |
-
'type' =>
|
322 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
323 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
324 |
'return_value' => 'yes',
|
@@ -333,7 +333,7 @@ class Facebook_Feed extends Widget_Base
|
|
333 |
'eael_facebook_feed_is_show_preview_title',
|
334 |
[
|
335 |
'label' => __('Show Preview Title', 'essential-addons-for-elementor-lite'),
|
336 |
-
'type' =>
|
337 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
338 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
339 |
'return_value' => 'yes',
|
@@ -348,7 +348,7 @@ class Facebook_Feed extends Widget_Base
|
|
348 |
'eael_facebook_feed_is_show_preview_description',
|
349 |
[
|
350 |
'label' => __('Show Preview Description', 'essential-addons-for-elementor-lite'),
|
351 |
-
'type' =>
|
352 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
353 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
354 |
'return_value' => 'yes',
|
291 |
'eael_facebook_feed_is_show_preview_content',
|
292 |
[
|
293 |
'label' => __('Show Preview Content', 'essential-addons-for-elementor-lite'),
|
294 |
+
'type' => Controls_Manager::SWITCHER,
|
295 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
296 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
297 |
'return_value' => 'yes',
|
303 |
'eael_facebook_feed_is_show_preview_thumbnail',
|
304 |
[
|
305 |
'label' => __('Show Preview Thumbnail', 'essential-addons-for-elementor-lite'),
|
306 |
+
'type' => Controls_Manager::SWITCHER,
|
307 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
308 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
309 |
'return_value' => 'yes',
|
318 |
'eael_facebook_feed_is_show_preview_host',
|
319 |
[
|
320 |
'label' => __('Show Preview Host Name', 'essential-addons-for-elementor-lite'),
|
321 |
+
'type' => Controls_Manager::SWITCHER,
|
322 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
323 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
324 |
'return_value' => 'yes',
|
333 |
'eael_facebook_feed_is_show_preview_title',
|
334 |
[
|
335 |
'label' => __('Show Preview Title', 'essential-addons-for-elementor-lite'),
|
336 |
+
'type' => Controls_Manager::SWITCHER,
|
337 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
338 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
339 |
'return_value' => 'yes',
|
348 |
'eael_facebook_feed_is_show_preview_description',
|
349 |
[
|
350 |
'label' => __('Show Preview Description', 'essential-addons-for-elementor-lite'),
|
351 |
+
'type' => Controls_Manager::SWITCHER,
|
352 |
'label_on' => __('Show', 'essential-addons-for-elementor-lite'),
|
353 |
'label_off' => __('Hide', 'essential-addons-for-elementor-lite'),
|
354 |
'return_value' => 'yes',
|
includes/Elements/Feature_List.php
CHANGED
@@ -775,7 +775,7 @@ class Feature_List extends Widget_Base {
|
|
775 |
Group_Control_Typography::get_type(),
|
776 |
[
|
777 |
'name' => 'eael_feature_list_title_typography',
|
778 |
-
'selector' => '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title',
|
779 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
780 |
]
|
781 |
);
|
775 |
Group_Control_Typography::get_type(),
|
776 |
[
|
777 |
'name' => 'eael_feature_list_title_typography',
|
778 |
+
'selector' => '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title a',
|
779 |
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
780 |
]
|
781 |
);
|
includes/Elements/Login_Register.php
CHANGED
@@ -3718,7 +3718,8 @@ class Login_Register extends Widget_Base {
|
|
3718 |
protected function print_login_form() {
|
3719 |
if ( $this->should_print_login_form ) {
|
3720 |
// prepare all login form related vars
|
3721 |
-
$default_hide_class = 'register' === $this->default_form ? 'd-none' : '';
|
|
|
3722 |
//Reg link related
|
3723 |
$reg_link_action = ! empty( $this->ds['registration_link_action'] ) ? $this->ds['registration_link_action'] : 'form';
|
3724 |
$show_reg_link = ( $this->user_can_register && 'yes' === $this->get_settings( 'show_register_link' ) );
|
@@ -3927,7 +3928,7 @@ class Login_Register extends Widget_Base {
|
|
3927 |
|
3928 |
protected function print_register_form() {
|
3929 |
if ( $this->should_print_register_form ) {
|
3930 |
-
$default_hide_class = 'login' === $this->default_form ? 'd-none' : '';
|
3931 |
$is_pass_valid = false; // Does the form has a password field?
|
3932 |
$is_pass_confirmed = false;
|
3933 |
// placeholders to flag if user use one type of field more than once.
|
3718 |
protected function print_login_form() {
|
3719 |
if ( $this->should_print_login_form ) {
|
3720 |
// prepare all login form related vars
|
3721 |
+
$default_hide_class = 'register' === $this->default_form || isset($_GET['eael-register']) ? 'd-none' : '';
|
3722 |
+
|
3723 |
//Reg link related
|
3724 |
$reg_link_action = ! empty( $this->ds['registration_link_action'] ) ? $this->ds['registration_link_action'] : 'form';
|
3725 |
$show_reg_link = ( $this->user_can_register && 'yes' === $this->get_settings( 'show_register_link' ) );
|
3928 |
|
3929 |
protected function print_register_form() {
|
3930 |
if ( $this->should_print_register_form ) {
|
3931 |
+
$default_hide_class = 'login' === $this->default_form && !isset($_GET['eael-register']) ? 'd-none' : ''; //eael-register flag for show error/success message when formal form submit
|
3932 |
$is_pass_valid = false; // Does the form has a password field?
|
3933 |
$is_pass_confirmed = false;
|
3934 |
// placeholders to flag if user use one type of field more than once.
|
includes/Elements/Pricing_Table.php
CHANGED
@@ -2104,8 +2104,9 @@ class Pricing_Table extends Widget_Base
|
|
2104 |
protected function render()
|
2105 |
{
|
2106 |
$settings = $this->get_settings_for_display();
|
2107 |
-
$
|
2108 |
-
$
|
|
|
2109 |
$featured_class = ('yes' === $settings['eael_pricing_table_featured'] ? 'featured ' . $settings['eael_pricing_table_featured_styles'] : '');
|
2110 |
$featured_class .= ($settings['eael_pricing_table_ribbon_alignment'] === 'left' ? ' ribbon-left' : '');
|
2111 |
$inline_style = ($settings['eael_pricing_table_featured_styles'] === 'ribbon-4' && 'yes' === $settings['eael_pricing_table_featured'] ? ' style="overflow: hidden;"' : '');
|
@@ -2165,13 +2166,13 @@ class Pricing_Table extends Widget_Base
|
|
2165 |
<?php $this->render_feature_list($settings, $this); ?>
|
2166 |
</div>
|
2167 |
<div class="footer">
|
2168 |
-
<a href="<?php echo esc_url($
|
2169 |
<?php if ('left' == $icon_position) : ?>
|
2170 |
<?php if (empty($settings['eael_pricing_table_button_icon']) || isset($settings['__fa4_migrated']['eael_pricing_table_button_icon_new'])) { ?>
|
2171 |
<?php if (isset($settings['eael_pricing_table_button_icon_new']['value']['url'])) : ?>
|
2172 |
<img src="<?php echo esc_attr($settings['eael_pricing_table_button_icon_new']['value']['url']); ?>" class="fa-icon-left" alt="<?php echo esc_attr(get_post_meta($settings['eael_pricing_table_button_icon_new']['value']['id'], '_wp_attachment_image_alt', true)); ?>" />
|
2173 |
<?php else : ?>
|
2174 |
-
<i class="<?php echo esc_attr($
|
2175 |
<?php endif; ?>
|
2176 |
<?php } else { ?>
|
2177 |
<i class="<?php echo esc_attr($settings['eael_pricing_table_button_icon']); ?> fa-icon-left"></i>
|
2104 |
protected function render()
|
2105 |
{
|
2106 |
$settings = $this->get_settings_for_display();
|
2107 |
+
$table_btn_link = $this->get_settings('eael_pricing_table_btn_link');
|
2108 |
+
$target = $table_btn_link['is_external'] ? 'target="_blank"' : '';
|
2109 |
+
$nofollow = $table_btn_link['nofollow'] ? 'rel="nofollow"' : '';
|
2110 |
$featured_class = ('yes' === $settings['eael_pricing_table_featured'] ? 'featured ' . $settings['eael_pricing_table_featured_styles'] : '');
|
2111 |
$featured_class .= ($settings['eael_pricing_table_ribbon_alignment'] === 'left' ? ' ribbon-left' : '');
|
2112 |
$inline_style = ($settings['eael_pricing_table_featured_styles'] === 'ribbon-4' && 'yes' === $settings['eael_pricing_table_featured'] ? ' style="overflow: hidden;"' : '');
|
2166 |
<?php $this->render_feature_list($settings, $this); ?>
|
2167 |
</div>
|
2168 |
<div class="footer">
|
2169 |
+
<a href="<?php echo esc_url($table_btn_link['url']); ?>" <?php echo $target; ?> <?php echo $nofollow; ?> class="eael-pricing-button">
|
2170 |
<?php if ('left' == $icon_position) : ?>
|
2171 |
<?php if (empty($settings['eael_pricing_table_button_icon']) || isset($settings['__fa4_migrated']['eael_pricing_table_button_icon_new'])) { ?>
|
2172 |
<?php if (isset($settings['eael_pricing_table_button_icon_new']['value']['url'])) : ?>
|
2173 |
<img src="<?php echo esc_attr($settings['eael_pricing_table_button_icon_new']['value']['url']); ?>" class="fa-icon-left" alt="<?php echo esc_attr(get_post_meta($settings['eael_pricing_table_button_icon_new']['value']['id'], '_wp_attachment_image_alt', true)); ?>" />
|
2174 |
<?php else : ?>
|
2175 |
+
<i class="<?php echo esc_attr($this->get_settings('eael_pricing_table_button_icon_new')['value']); ?> fa-icon-left"></i>
|
2176 |
<?php endif; ?>
|
2177 |
<?php } else { ?>
|
2178 |
<i class="<?php echo esc_attr($settings['eael_pricing_table_button_icon']); ?> fa-icon-left"></i>
|
includes/Elements/Product_Grid.php
CHANGED
@@ -309,11 +309,50 @@ class Product_Grid extends Widget_Base
|
|
309 |
'label' => esc_html__('Product Settings', 'essential-addons-for-elementor-lite'),
|
310 |
]);
|
311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
$this->add_control('eael_product_grid_product_filter', [
|
313 |
'label' => esc_html__('Filter By', 'essential-addons-for-elementor-lite'),
|
314 |
'type' => Controls_Manager::SELECT,
|
315 |
'default' => 'recent-products',
|
316 |
'options' => $this->eael_get_product_filterby_options(),
|
|
|
|
|
|
|
317 |
]);
|
318 |
|
319 |
$this->add_control('orderby', [
|
@@ -356,6 +395,9 @@ class Product_Grid extends Widget_Base
|
|
356 |
'label_block' => true,
|
357 |
'multiple' => true,
|
358 |
'options' => HelperClass::get_terms_list('product_cat', 'slug'),
|
|
|
|
|
|
|
359 |
]);
|
360 |
$this->add_control(
|
361 |
'eael_dynamic_template_Layout',
|
@@ -2815,96 +2857,20 @@ class Product_Grid extends Widget_Base
|
|
2815 |
return;
|
2816 |
}
|
2817 |
$settings = $this->get_settings_for_display();
|
|
|
2818 |
// normalize for load more fix
|
2819 |
$settings['layout_mode'] = $settings["eael_product_grid_layout"];
|
2820 |
$widget_id = $this->get_id();
|
2821 |
$settings['eael_widget_id'] = $widget_id;
|
2822 |
-
$
|
2823 |
-
'
|
2824 |
-
'
|
2825 |
-
|
2826 |
-
|
2827 |
-
'tax_query' => [
|
2828 |
-
'relation' => 'AND',
|
2829 |
-
[
|
2830 |
-
'taxonomy' => 'product_visibility',
|
2831 |
-
'field' => 'name',
|
2832 |
-
'terms' => ['exclude-from-search', 'exclude-from-catalog'],
|
2833 |
-
'operator' => 'NOT IN',
|
2834 |
-
],
|
2835 |
-
],
|
2836 |
-
];
|
2837 |
-
// price & sku filter
|
2838 |
-
if ($settings['orderby'] == '_price') {
|
2839 |
-
$args['orderby'] = 'meta_value_num';
|
2840 |
-
$args['meta_key'] = '_price';
|
2841 |
-
} else if ($settings['orderby'] == '_sku') {
|
2842 |
-
$args['orderby'] = 'meta_value_num';
|
2843 |
-
$args['meta_key'] = '_sku';
|
2844 |
} else {
|
2845 |
-
$args
|
2846 |
-
}
|
2847 |
-
|
2848 |
-
if (!empty($settings['eael_product_grid_categories'])) {
|
2849 |
-
$args['tax_query'] = [
|
2850 |
-
[
|
2851 |
-
'taxonomy' => 'product_cat',
|
2852 |
-
'field' => 'slug',
|
2853 |
-
'terms' => $settings['eael_product_grid_categories'],
|
2854 |
-
'operator' => 'IN',
|
2855 |
-
],
|
2856 |
-
];
|
2857 |
-
}
|
2858 |
-
|
2859 |
-
if ('true' == $settings['show_load_more']) {
|
2860 |
-
$args ['offset'] = $settings['product_offset'];
|
2861 |
-
}
|
2862 |
-
|
2863 |
-
$args['meta_query'] = ['relation' => 'AND'];
|
2864 |
-
|
2865 |
-
if (get_option('woocommerce_hide_out_of_stock_items') == 'yes') {
|
2866 |
-
$args['meta_query'][] = [
|
2867 |
-
'key' => '_stock_status',
|
2868 |
-
'value' => 'instock'
|
2869 |
-
];
|
2870 |
}
|
2871 |
|
2872 |
-
if ($settings['eael_product_grid_product_filter'] == 'featured-products') {
|
2873 |
-
$args['tax_query'] = [
|
2874 |
-
'relation' => 'AND',
|
2875 |
-
[
|
2876 |
-
'taxonomy' => 'product_visibility',
|
2877 |
-
'field' => 'name',
|
2878 |
-
'terms' => 'featured',
|
2879 |
-
],
|
2880 |
-
[
|
2881 |
-
'taxonomy' => 'product_visibility',
|
2882 |
-
'field' => 'name',
|
2883 |
-
'terms' => ['exclude-from-search', 'exclude-from-catalog'],
|
2884 |
-
'operator' => 'NOT IN',
|
2885 |
-
],
|
2886 |
-
];
|
2887 |
-
|
2888 |
-
if ($settings['eael_product_grid_categories']) {
|
2889 |
-
$args['tax_query'][] = [
|
2890 |
-
'taxonomy' => 'product_cat',
|
2891 |
-
'field' => 'slug',
|
2892 |
-
'terms' => $settings['eael_product_grid_categories'],
|
2893 |
-
];
|
2894 |
-
}
|
2895 |
-
} else if ($settings['eael_product_grid_product_filter'] == 'best-selling-products') {
|
2896 |
-
$args['meta_key'] = 'total_sales';
|
2897 |
-
$args['orderby'] = 'meta_value_num';
|
2898 |
-
$args['order'] = 'DESC';
|
2899 |
-
} else if ($settings['eael_product_grid_product_filter'] == 'sale-products') {
|
2900 |
-
$args['post__in'] = array_merge( array( 0 ), wc_get_product_ids_on_sale() );
|
2901 |
-
} else if ($settings['eael_product_grid_product_filter'] == 'top-products') {
|
2902 |
-
$args['meta_key'] = '_wc_average_rating';
|
2903 |
-
$args['orderby'] = 'meta_value_num';
|
2904 |
-
$args['order'] = 'DESC';
|
2905 |
-
}
|
2906 |
-
|
2907 |
-
|
2908 |
$this->is_show_custom_add_to_cart = boolval($settings['show_add_to_cart_custom_text']);
|
2909 |
$this->simple_add_to_cart_button_text = $settings['add_to_cart_simple_product_button_text'];
|
2910 |
$this->variable_add_to_cart_button_text = $settings['add_to_cart_variable_product_button_text'];
|
@@ -2995,4 +2961,93 @@ class Product_Grid extends Widget_Base
|
|
2995 |
'add_to_cart_button_custom_text',
|
2996 |
]);
|
2997 |
}
|
2998 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
'label' => esc_html__('Product Settings', 'essential-addons-for-elementor-lite'),
|
310 |
]);
|
311 |
|
312 |
+
$this->add_control(
|
313 |
+
'post_type',
|
314 |
+
[
|
315 |
+
'label' => __( 'Source', 'essential-addons-for-elementor-lite' ),
|
316 |
+
'type' => Controls_Manager::SELECT,
|
317 |
+
'default' => 'product',
|
318 |
+
'options' => [
|
319 |
+
'product' => esc_html__( 'Products', 'essential-addons-for-elementor-lite' ),
|
320 |
+
'source_dynamic' => esc_html__( 'Dynamic', 'essential-addons-for-elementor-lite' ),
|
321 |
+
],
|
322 |
+
]
|
323 |
+
);
|
324 |
+
|
325 |
+
$this->add_control(
|
326 |
+
'eael_global_dynamic_source_warning_text',
|
327 |
+
[
|
328 |
+
'type' => Controls_Manager::RAW_HTML,
|
329 |
+
'raw' => __( 'This option will only affect in <strong>Archive page of Elementor Theme Builder</strong> dynamically.', 'essential-addons-for-elementor-lite' ),
|
330 |
+
'content_classes' => 'eael-warning',
|
331 |
+
'condition' => [
|
332 |
+
'post_type' => 'source_dynamic',
|
333 |
+
],
|
334 |
+
]
|
335 |
+
);
|
336 |
+
|
337 |
+
if ( !apply_filters( 'eael/is_plugin_active', 'woocommerce/woocommerce.php' ) ) {
|
338 |
+
$this->add_control(
|
339 |
+
'ea_product_grid_woo_required',
|
340 |
+
[
|
341 |
+
'type' => Controls_Manager::RAW_HTML,
|
342 |
+
'raw' => __( '<strong>WooCommerce</strong> is not installed/activated on your site. Please install and activate <a href="plugin-install.php?s=woocommerce&tab=search&type=term" target="_blank">WooCommerce</a> first.', 'essential-addons-for-elementor-lite' ),
|
343 |
+
'content_classes' => 'eael-warning',
|
344 |
+
]
|
345 |
+
);
|
346 |
+
}
|
347 |
+
|
348 |
$this->add_control('eael_product_grid_product_filter', [
|
349 |
'label' => esc_html__('Filter By', 'essential-addons-for-elementor-lite'),
|
350 |
'type' => Controls_Manager::SELECT,
|
351 |
'default' => 'recent-products',
|
352 |
'options' => $this->eael_get_product_filterby_options(),
|
353 |
+
'condition' => [
|
354 |
+
'post_type!' => 'source_dynamic',
|
355 |
+
],
|
356 |
]);
|
357 |
|
358 |
$this->add_control('orderby', [
|
395 |
'label_block' => true,
|
396 |
'multiple' => true,
|
397 |
'options' => HelperClass::get_terms_list('product_cat', 'slug'),
|
398 |
+
'condition' => [
|
399 |
+
'post_type!' => 'source_dynamic',
|
400 |
+
],
|
401 |
]);
|
402 |
$this->add_control(
|
403 |
'eael_dynamic_template_Layout',
|
2857 |
return;
|
2858 |
}
|
2859 |
$settings = $this->get_settings_for_display();
|
2860 |
+
|
2861 |
// normalize for load more fix
|
2862 |
$settings['layout_mode'] = $settings["eael_product_grid_layout"];
|
2863 |
$widget_id = $this->get_id();
|
2864 |
$settings['eael_widget_id'] = $widget_id;
|
2865 |
+
if ( $settings[ 'post_type' ] === 'source_dynamic' && is_archive() || !empty($_REQUEST['post_type'])) {
|
2866 |
+
$settings[ 'posts_per_page' ] = $settings[ 'eael_product_grid_products_count' ] ?: 4;
|
2867 |
+
$settings[ 'offset' ] = $settings[ 'product_offset' ];
|
2868 |
+
$args = HelperClass::get_query_args( $settings );
|
2869 |
+
$args = HelperClass::get_dynamic_args( $settings, $args );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2870 |
} else {
|
2871 |
+
$args = $this->build_product_query( $settings );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2872 |
}
|
2873 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2874 |
$this->is_show_custom_add_to_cart = boolval($settings['show_add_to_cart_custom_text']);
|
2875 |
$this->simple_add_to_cart_button_text = $settings['add_to_cart_simple_product_button_text'];
|
2876 |
$this->variable_add_to_cart_button_text = $settings['add_to_cart_variable_product_button_text'];
|
2961 |
'add_to_cart_button_custom_text',
|
2962 |
]);
|
2963 |
}
|
2964 |
+
|
2965 |
+
/**
|
2966 |
+
* build_product_query
|
2967 |
+
* @param $settings
|
2968 |
+
* @return array
|
2969 |
+
*/
|
2970 |
+
public function build_product_query( $settings ){
|
2971 |
+
$args = [
|
2972 |
+
'post_type' => 'product',
|
2973 |
+
'posts_per_page' => $settings['eael_product_grid_products_count'] ?: 4,
|
2974 |
+
'order' => (isset($settings['order']) ? $settings['order'] : 'desc'),
|
2975 |
+
'offset' => $settings['product_offset'],
|
2976 |
+
'tax_query' => [
|
2977 |
+
'relation' => 'AND',
|
2978 |
+
[
|
2979 |
+
'taxonomy' => 'product_visibility',
|
2980 |
+
'field' => 'name',
|
2981 |
+
'terms' => ['exclude-from-search', 'exclude-from-catalog'],
|
2982 |
+
'operator' => 'NOT IN',
|
2983 |
+
],
|
2984 |
+
],
|
2985 |
+
];
|
2986 |
+
// price & sku filter
|
2987 |
+
if ($settings['orderby'] == '_price') {
|
2988 |
+
$args['orderby'] = 'meta_value_num';
|
2989 |
+
$args['meta_key'] = '_price';
|
2990 |
+
} else if ($settings['orderby'] == '_sku') {
|
2991 |
+
$args['orderby'] = 'meta_value_num';
|
2992 |
+
$args['meta_key'] = '_sku';
|
2993 |
+
} else {
|
2994 |
+
$args['orderby'] = (isset($settings['orderby']) ? $settings['orderby'] : 'date');
|
2995 |
+
}
|
2996 |
+
|
2997 |
+
if (!empty($settings['eael_product_grid_categories'])) {
|
2998 |
+
$args['tax_query'] = [
|
2999 |
+
[
|
3000 |
+
'taxonomy' => 'product_cat',
|
3001 |
+
'field' => 'slug',
|
3002 |
+
'terms' => $settings['eael_product_grid_categories'],
|
3003 |
+
'operator' => 'IN',
|
3004 |
+
],
|
3005 |
+
];
|
3006 |
+
}
|
3007 |
+
|
3008 |
+
$args['meta_query'] = ['relation' => 'AND'];
|
3009 |
+
|
3010 |
+
if (get_option('woocommerce_hide_out_of_stock_items') == 'yes') {
|
3011 |
+
$args['meta_query'][] = [
|
3012 |
+
'key' => '_stock_status',
|
3013 |
+
'value' => 'instock'
|
3014 |
+
];
|
3015 |
+
}
|
3016 |
+
|
3017 |
+
if ($settings['eael_product_grid_product_filter'] == 'featured-products') {
|
3018 |
+
$args['tax_query'] = [
|
3019 |
+
'relation' => 'AND',
|
3020 |
+
[
|
3021 |
+
'taxonomy' => 'product_visibility',
|
3022 |
+
'field' => 'name',
|
3023 |
+
'terms' => 'featured',
|
3024 |
+
],
|
3025 |
+
[
|
3026 |
+
'taxonomy' => 'product_visibility',
|
3027 |
+
'field' => 'name',
|
3028 |
+
'terms' => ['exclude-from-search', 'exclude-from-catalog'],
|
3029 |
+
'operator' => 'NOT IN',
|
3030 |
+
],
|
3031 |
+
];
|
3032 |
+
|
3033 |
+
if ($settings['eael_product_grid_categories']) {
|
3034 |
+
$args['tax_query'][] = [
|
3035 |
+
'taxonomy' => 'product_cat',
|
3036 |
+
'field' => 'slug',
|
3037 |
+
'terms' => $settings['eael_product_grid_categories'],
|
3038 |
+
];
|
3039 |
+
}
|
3040 |
+
} else if ($settings['eael_product_grid_product_filter'] == 'best-selling-products') {
|
3041 |
+
$args['meta_key'] = 'total_sales';
|
3042 |
+
$args['orderby'] = 'meta_value_num';
|
3043 |
+
$args['order'] = 'DESC';
|
3044 |
+
} else if ($settings['eael_product_grid_product_filter'] == 'sale-products') {
|
3045 |
+
$args['post__in'] = array_merge( array( 0 ), wc_get_product_ids_on_sale() );
|
3046 |
+
} else if ($settings['eael_product_grid_product_filter'] == 'top-products') {
|
3047 |
+
$args['meta_key'] = '_wc_average_rating';
|
3048 |
+
$args['orderby'] = 'meta_value_num';
|
3049 |
+
$args['order'] = 'DESC';
|
3050 |
+
}
|
3051 |
+
return $args;
|
3052 |
+
}
|
3053 |
+
}
|
includes/Template/Eicon-Woocommerce/default.php
CHANGED
@@ -44,8 +44,11 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
44 |
} elseif ( $product->is_on_sale() ) {
|
45 |
printf( '<span class="onsale">%s</span>', __( 'Sale!', 'essential-addons-for-elementor-lite' ) );
|
46 |
}
|
|
|
|
|
|
|
|
|
47 |
?>
|
48 |
-
<span class="price"><?php echo wp_kses_post( $product->get_price_html() ); ?></span>
|
49 |
</a>
|
50 |
<?php
|
51 |
woocommerce_template_loop_add_to_cart();
|
@@ -78,8 +81,10 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
78 |
if ( $product->is_on_sale() ) {
|
79 |
printf( '<span class="onsale">%s</span>', __( 'Sale!', 'essential-addons-for-elementor-lite' ) );
|
80 |
}
|
81 |
-
|
82 |
-
|
|
|
|
|
83 |
</li>
|
84 |
<?php
|
85 |
} else if (($grid_style_preset == 'eael-product-preset-5') || ($grid_style_preset == 'eael-product-preset-6') || ($grid_style_preset == 'eael-product-preset-7')) {
|
@@ -335,8 +340,12 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
335 |
<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">
|
336 |
<h2>'. $product->get_title() .'</h2>
|
337 |
</a>
|
338 |
-
</div>
|
339 |
-
|
|
|
|
|
|
|
|
|
340 |
if ($should_print_rating) {
|
341 |
echo wc_get_rating_html
|
342 |
($product->get_average_rating(), $product->get_rating_count());
|
44 |
} elseif ( $product->is_on_sale() ) {
|
45 |
printf( '<span class="onsale">%s</span>', __( 'Sale!', 'essential-addons-for-elementor-lite' ) );
|
46 |
}
|
47 |
+
|
48 |
+
if ( $should_print_price ) {
|
49 |
+
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
|
50 |
+
}
|
51 |
?>
|
|
|
52 |
</a>
|
53 |
<?php
|
54 |
woocommerce_template_loop_add_to_cart();
|
81 |
if ( $product->is_on_sale() ) {
|
82 |
printf( '<span class="onsale">%s</span>', __( 'Sale!', 'essential-addons-for-elementor-lite' ) );
|
83 |
}
|
84 |
+
if ( $should_print_price ) {
|
85 |
+
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
|
86 |
+
}
|
87 |
+
?>
|
88 |
</li>
|
89 |
<?php
|
90 |
} else if (($grid_style_preset == 'eael-product-preset-5') || ($grid_style_preset == 'eael-product-preset-6') || ($grid_style_preset == 'eael-product-preset-7')) {
|
340 |
<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">
|
341 |
<h2>'. $product->get_title() .'</h2>
|
342 |
</a>
|
343 |
+
</div>';
|
344 |
+
|
345 |
+
if ( $should_print_price ) {
|
346 |
+
echo '<div class="eael-product-price">'.$product->get_price_html().'</div>';
|
347 |
+
}
|
348 |
+
|
349 |
if ($should_print_rating) {
|
350 |
echo wc_get_rating_html
|
351 |
($product->get_average_rating(), $product->get_rating_count());
|
includes/Traits/Facebook_Feed.php
CHANGED
@@ -111,35 +111,55 @@ trait Facebook_Feed
|
|
111 |
</div>';
|
112 |
}
|
113 |
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
|
144 |
if ($settings['eael_facebook_feed_likes'] || $settings['eael_facebook_feed_comments']) {
|
145 |
$html .= '<footer class="eael-facebook-feed-item-footer">
|
111 |
</div>';
|
112 |
}
|
113 |
|
114 |
+
if (!empty($photo) || isset($item['attachments']['data'])) {
|
115 |
+
$html .= '<div class="eael-facebook-feed-preview-wrap">';
|
116 |
+
if ($item['status_type'] == 'shared_story') {
|
117 |
+
|
118 |
+
if( isset($settings['eael_facebook_feed_is_show_preview_thumbnail']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_thumbnail'] ) {
|
119 |
+
|
120 |
+
$html .= '<a href="' . $item['permalink_url'] . '" target="' . ( $settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self' ) . '" class="eael-facebook-feed-preview-img">';
|
121 |
+
if ( $item['attachments']['data'][0]['media_type'] == 'video' ) {
|
122 |
+
$html .= '<img class="eael-facebook-feed-img" src="' . $photo . '">
|
123 |
+
<div class="eael-facebook-feed-preview-overlay"><i class="far fa-play-circle" aria-hidden="true"></i></div>';
|
124 |
+
} else {
|
125 |
+
$html .= '<img class="eael-facebook-feed-img" src="' . $photo . '">';
|
126 |
+
}
|
127 |
+
$html .= '</a>';
|
128 |
+
}
|
129 |
+
|
130 |
+
$html .= '<div class="eael-facebook-feed-url-preview">';
|
131 |
+
if( isset($settings['eael_facebook_feed_is_show_preview_host']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_host'] ) {
|
132 |
+
$html .= '<p class="eael-facebook-feed-url-host">' . parse_url($item['attachments']['data'][0]['unshimmed_url'])['host'] . '</p>';
|
133 |
+
}
|
134 |
+
if( isset($settings['eael_facebook_feed_is_show_preview_title']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_title'] ) {
|
135 |
+
$html .= '<h2 class="eael-facebook-feed-url-title">' . $item['attachments']['data'][0]['title'] . '</h2>';
|
136 |
+
}
|
137 |
+
|
138 |
+
if( isset($settings['eael_facebook_feed_is_show_preview_description']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_description'] ) {
|
139 |
+
$html .= '<p class="eael-facebook-feed-url-description">' . @$item['attachments']['data'][0]['description'] . '</p>';
|
140 |
+
}
|
141 |
+
$html .= '</div>';
|
142 |
+
|
143 |
+
} else if ($item['status_type'] == 'added_video') {
|
144 |
+
if( isset($settings['eael_facebook_feed_is_show_preview_thumbnail']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_thumbnail'] ) {
|
145 |
+
|
146 |
+
$html .= '<a href="' . $item['permalink_url'] . '" target="' . ( $settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self' ) . '" class="eael-facebook-feed-preview-img">
|
147 |
+
<img class="eael-facebook-feed-img" src="' . $photo . '">
|
148 |
+
<div class="eael-facebook-feed-preview-overlay"><i class="far fa-play-circle" aria-hidden="true"></i></div>
|
149 |
+
</a>';
|
150 |
+
}
|
151 |
+
} else {
|
152 |
+
if( isset($settings['eael_facebook_feed_is_show_preview_thumbnail']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_thumbnail'] ) {
|
153 |
+
|
154 |
+
$html .= '<a href="' . $item['permalink_url'] . '" target="' . ( $settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self' ) . '" class="eael-facebook-feed-preview-img">
|
155 |
+
<img class="eael-facebook-feed-img" src="' . $photo . '">
|
156 |
+
</a>';
|
157 |
+
|
158 |
+
}
|
159 |
+
}
|
160 |
+
$html .= '</div>';
|
161 |
+
}
|
162 |
+
|
163 |
|
164 |
if ($settings['eael_facebook_feed_likes'] || $settings['eael_facebook_feed_comments']) {
|
165 |
$html .= '<footer class="eael-facebook-feed-item-footer">
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
msgid "Select a Fluent Form"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../includes/Classes/Helper.php:
|
57 |
msgid "Sale!"
|
58 |
msgstr ""
|
59 |
|
@@ -511,7 +511,7 @@ msgstr ""
|
|
511 |
msgid "Data Source"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../includes/Elements/Advanced_Data_Table.php:79, ../includes/Elements/Event_Calendar.php:93, ../includes/Elements/Sticky_Video.php:144, ../includes/Traits/Controls.php:67
|
515 |
msgid "Source"
|
516 |
msgstr ""
|
517 |
|
@@ -567,7 +567,7 @@ msgstr ""
|
|
567 |
msgid "Placeholder"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../includes/Elements/Advanced_Data_Table.php:166, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Facebook_Feed.php:365, ../includes/Elements/FluentForm.php:1679, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:
|
571 |
msgid "Pagination"
|
572 |
msgstr ""
|
573 |
|
@@ -575,7 +575,7 @@ msgstr ""
|
|
575 |
msgid "Pagination Type"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: ../includes/Elements/Advanced_Data_Table.php:179, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Betterdocs_Category_Grid.php:1289, ../includes/Elements/Event_Calendar.php:720, ../includes/Elements/Flip_Box.php:650, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:349, ../includes/Elements/Pricing_Table.php:506, ../includes/Elements/Pricing_Table.php:1815, ../includes/Elements/Product_Grid.php:
|
579 |
msgid "Button"
|
580 |
msgstr ""
|
581 |
|
@@ -615,15 +615,15 @@ msgstr ""
|
|
615 |
msgid "Width"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: ../includes/Elements/Advanced_Data_Table.php:321, ../includes/Elements/Advanced_Data_Table.php:989, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1387, ../includes/Elements/Adv_Accordion.php:354, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:707, ../includes/Elements/Adv_Accordion.php:804, ../includes/Elements/Adv_Accordion.php:928, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Tabs.php:323, ../includes/Elements/Adv_Tabs.php:513, ../includes/Elements/Adv_Tabs.php:579, ../includes/Elements/Adv_Tabs.php:648, ../includes/Elements/Adv_Tabs.php:743, ../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:843, ../includes/Elements/Betterdocs_Category_Grid.php:940, ../includes/Elements/Betterdocs_Category_Grid.php:1185, ../includes/Elements/Betterdocs_Category_Grid.php:1385, ../includes/Elements/Betterdocs_Category_Grid.php:1484, ../includes/Elements/Betterdocs_Search_Form.php:211, ../includes/Elements/Betterdocs_Search_Form.php:366, ../includes/Elements/Betterdocs_Search_Form.php:424, ../includes/Elements/Betterdocs_Search_Form.php:534, ../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:1258, ../includes/Elements/Contact_Form_7.php:1495, ../includes/Elements/Contact_Form_7.php:1570, ../includes/Elements/Contact_Form_7.php:1647, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:620, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:851, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Dual_Color_Header.php:345, ../includes/Elements/Event_Calendar.php:771, ../includes/Elements/Event_Calendar.php:838, ../includes/Elements/Event_Calendar.php:892, ../includes/Elements/Event_Calendar.php:1564, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Facebook_Feed.php:440, ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:1047, ../includes/Elements/Filterable_Gallery.php:1127, ../includes/Elements/Filterable_Gallery.php:1274, ../includes/Elements/Filterable_Gallery.php:1331, ../includes/Elements/Filterable_Gallery.php:1550, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:1886, ../includes/Elements/Filterable_Gallery.php:2397, ../includes/Elements/Filterable_Gallery.php:2514, ../includes/Elements/Flip_Box.php:987, ../includes/Elements/Flip_Box.php:1100, ../includes/Elements/FluentForm.php:636, ../includes/Elements/FluentForm.php:832, ../includes/Elements/FluentForm.php:1549, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/FluentForm.php:1953, ../includes/Elements/FluentForm.php:2071, ../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:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:353, ../includes/Elements/Image_Accordion.php:463, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:817, ../includes/Elements/Info_Box.php:897, ../includes/Elements/Info_Box.php:1048, ../includes/Elements/Info_Box.php:1128, ../includes/Elements/Login_Register.php:2681, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:282, ../includes/Elements/Pricing_Table.php:1766, ../includes/Elements/Pricing_Table.php:1932, ../includes/Elements/Product_Grid.php:
|
619 |
msgid "Border"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: ../includes/Elements/Advanced_Data_Table.php:347, ../includes/Elements/Advanced_Data_Table.php:1015, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1285, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:641, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Tabs.php:331, ../includes/Elements/Adv_Tabs.php:520, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:655, ../includes/Elements/Adv_Tabs.php:750, ../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:854, ../includes/Elements/Betterdocs_Category_Grid.php:951, ../includes/Elements/Betterdocs_Category_Grid.php:1393, ../includes/Elements/Betterdocs_Category_Grid.php:1492, ../includes/Elements/Betterdocs_Search_Form.php:198, ../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:1267, ../includes/Elements/Content_Ticker.php:444, ../includes/Elements/Content_Ticker.php:518, ../includes/Elements/Content_Ticker.php:675, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:333, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:353, ../includes/Elements/Event_Calendar.php:779, ../includes/Elements/Event_Calendar.php:846, ../includes/Elements/Event_Calendar.php:900, ../includes/Elements/Event_Calendar.php:1136, ../includes/Elements/Event_Calendar.php:1304, ../includes/Elements/Event_Calendar.php:1572, ../includes/Elements/Event_Calendar.php:1643, ../includes/Elements/Facebook_Feed.php:465, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Fancy_Text.php:518, ../includes/Elements/Feature_List.php:638, ../includes/Elements/Filterable_Gallery.php:876, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1055, ../includes/Elements/Filterable_Gallery.php:1135, ../includes/Elements/Filterable_Gallery.php:1339, ../includes/Elements/Filterable_Gallery.php:1833, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2188, ../includes/Elements/Filterable_Gallery.php:2323, ../includes/Elements/Filterable_Gallery.php:2419, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:825, ../includes/Elements/Flip_Box.php:886, ../includes/Elements/Flip_Box.php:1010, ../includes/Elements/Flip_Box.php:1123, ../includes/Elements/Flip_Box.php:1383, ../includes/Elements/FluentForm.php:499, ../includes/Elements/FluentForm.php:647, ../includes/Elements/FluentForm.php:1012, ../includes/Elements/FluentForm.php:1038, ../includes/Elements/FluentForm.php:1559, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/FluentForm.php:1961, ../includes/Elements/FluentForm.php:2015, ../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:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:361, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:1210, ../includes/Elements/Login_Register.php:1482, ../includes/Elements/Login_Register.php:1717, ../includes/Elements/Login_Register.php:1891, ../includes/Elements/Login_Register.php:2047, ../includes/Elements/Login_Register.php:2187, ../includes/Elements/Login_Register.php:2281, ../includes/Elements/Login_Register.php:2372, ../includes/Elements/Login_Register.php:2546, ../includes/Elements/Login_Register.php:2583, ../includes/Elements/Login_Register.php:2697, ../includes/Elements/Login_Register.php:3207, ../includes/Elements/Login_Register.php:3244, ../includes/Elements/Login_Register.php:3528, ../includes/Elements/Login_Register.php:3565, ../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:290, ../includes/Elements/Pricing_Table.php:786, ../includes/Elements/Pricing_Table.php:1540, ../includes/Elements/Pricing_Table.php:1789, ../includes/Elements/Pricing_Table.php:1940, ../includes/Elements/Product_Grid.php:
|
623 |
msgid "Border Radius"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: ../includes/Elements/Advanced_Data_Table.php:360, ../includes/Elements/Advanced_Data_Table.php:1423, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:658, ../includes/Elements/Event_Calendar.php:1596, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Product_Grid.php:
|
627 |
msgid "Box Shadow"
|
628 |
msgstr ""
|
629 |
|
@@ -631,7 +631,7 @@ msgstr ""
|
|
631 |
msgid "Head"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: ../includes/Elements/Advanced_Data_Table.php:379, ../includes/Elements/Advanced_Data_Table.php:498, ../includes/Elements/Advanced_Data_Table.php:956, ../includes/Elements/Advanced_Data_Table.php:1106, ../includes/Elements/Advanced_Data_Table.php:1314, ../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:1311, ../includes/Elements/Contact_Form_7.php:1556, ../includes/Elements/Contact_Form_7.php:1613, ../includes/Elements/Event_Calendar.php:700, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:944, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1053, ../includes/Elements/Event_Calendar.php:1296, ../includes/Elements/Event_Calendar.php:1359, ../includes/Elements/Event_Calendar.php:1388, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1614, ../includes/Elements/Filterable_Gallery.php:1961, ../includes/Elements/Filterable_Gallery.php:2006, ../includes/Elements/Filterable_Gallery.php:2040, ../includes/Elements/Filterable_Gallery.php:2095, ../includes/Elements/Filterable_Gallery.php:2387, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/FluentForm.php:293, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:554, ../includes/Elements/FluentForm.php:792, ../includes/Elements/FluentForm.php:1119, ../includes/Elements/FluentForm.php:1174, ../includes/Elements/FluentForm.php:1278, ../includes/Elements/FluentForm.php:1364, ../includes/Elements/FluentForm.php:1430, ../includes/Elements/FluentForm.php:1603, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/FluentForm.php:1933, ../includes/Elements/FluentForm.php:2082, ../includes/Elements/FluentForm.php:2131, ../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:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:859, ../includes/Elements/GravityForms.php:948, ../includes/Elements/GravityForms.php:1002, ../includes/Elements/GravityForms.php:1138, ../includes/Elements/GravityForms.php:1598, ../includes/Elements/GravityForms.php:1933, ../includes/Elements/GravityForms.php:2154, ../includes/Elements/GravityForms.php:2347, ../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:371, ../includes/Elements/Post_Grid.php:471, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:625, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Post_Timeline.php:292, ../includes/Elements/Product_Grid.php:
|
635 |
msgid "Typography"
|
636 |
msgstr ""
|
637 |
|
@@ -639,23 +639,23 @@ msgstr ""
|
|
639 |
msgid "Text Alignment"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:510, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1083, ../includes/Elements/Adv_Accordion.php:138, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../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:333, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:442, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:746, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Dual_Color_Header.php:189, ../includes/Elements/Event_Calendar.php:968, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Fancy_Text.php:172, ../includes/Elements/Feature_List.php:302, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/Filterable_Gallery.php:1296, ../includes/Elements/Filterable_Gallery.php:1679, ../includes/Elements/Flip_Box.php:368, ../includes/Elements/Flip_Box.php:597, ../includes/Elements/FluentForm.php:239, ../includes/Elements/FluentForm.php:434, ../includes/Elements/FluentForm.php:580, ../includes/Elements/FluentForm.php:1211, ../includes/Elements/FluentForm.php:1456, ../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:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:108, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:673, ../includes/Elements/Login_Register.php:706, ../includes/Elements/Login_Register.php:2490, ../includes/Elements/Login_Register.php:3158, ../includes/Elements/Login_Register.php:3478, ../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:448, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Grid.php:671, ../includes/Elements/Post_Grid.php:766, ../includes/Elements/Post_Grid.php:849, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:261, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:
|
643 |
msgid "Left"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../includes/Elements/Advanced_Data_Table.php:395, ../includes/Elements/Advanced_Data_Table.php:514, ../includes/Elements/Advanced_Data_Table.php:940, ../includes/Elements/Advanced_Data_Table.php:1087, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../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:446, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:525, ../includes/Elements/Data_Table.php:750, ../includes/Elements/Data_Table.php:999, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:586, ../includes/Elements/Event_Calendar.php:972, ../includes/Elements/Event_Calendar.php:1104, ../includes/Elements/Fancy_Text.php:176, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:372, ../includes/Elements/Flip_Box.php:601, ../includes/Elements/FluentForm.php:243, ../includes/Elements/FluentForm.php:438, ../includes/Elements/FluentForm.php:584, ../includes/Elements/FluentForm.php:1215, ../includes/Elements/FluentForm.php:1460, ../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:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:112, ../includes/Elements/Image_Accordion.php:135, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2494, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3162, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3459, ../includes/Elements/Login_Register.php:3482, ../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:452, ../includes/Elements/Post_Grid.php:607, ../includes/Elements/Post_Grid.php:675, ../includes/Elements/Post_Grid.php:770, ../includes/Elements/Post_Grid.php:853, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:
|
647 |
msgid "Center"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: ../includes/Elements/Advanced_Data_Table.php:399, ../includes/Elements/Advanced_Data_Table.php:518, ../includes/Elements/Advanced_Data_Table.php:944, ../includes/Elements/Advanced_Data_Table.php:1091, ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../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:334, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:450, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:529, ../includes/Elements/Data_Table.php:754, ../includes/Elements/Data_Table.php:1003, ../includes/Elements/Dual_Color_Header.php:197, ../includes/Elements/Event_Calendar.php:976, ../includes/Elements/Event_Calendar.php:1108, ../includes/Elements/Fancy_Text.php:180, ../includes/Elements/Feature_List.php:310, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:376, ../includes/Elements/Flip_Box.php:605, ../includes/Elements/FluentForm.php:247, ../includes/Elements/FluentForm.php:442, ../includes/Elements/FluentForm.php:588, ../includes/Elements/FluentForm.php:1219, ../includes/Elements/FluentForm.php:1464, ../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:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:116, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:677, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3486, ../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:456, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Grid.php:679, ../includes/Elements/Post_Grid.php:774, ../includes/Elements/Post_Grid.php:857, ../includes/Elements/Post_Timeline.php:334, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Pricing_Table.php:262, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Pricing_Table.php:828, ../includes/Elements/Pricing_Table.php:853, ../includes/Elements/Product_Grid.php:
|
651 |
msgid "Right"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: ../includes/Elements/Advanced_Data_Table.php:414, ../includes/Elements/Advanced_Data_Table.php:533, ../includes/Elements/Advanced_Data_Table.php:627, ../includes/Elements/Advanced_Data_Table.php:658, ../includes/Elements/Advanced_Data_Table.php:689, ../includes/Elements/Advanced_Data_Table.php:720, ../includes/Elements/Advanced_Data_Table.php:751, ../includes/Elements/Advanced_Data_Table.php:782, ../includes/Elements/Advanced_Data_Table.php:964, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1230, ../includes/Elements/Adv_Accordion.php:534, ../includes/Elements/Adv_Accordion.php:607, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:763, ../includes/Elements/Adv_Tabs.php:487, ../includes/Elements/Adv_Tabs.php:553, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:702, ../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:1245, ../includes/Elements/Contact_Form_7.php:1351, ../includes/Elements/Contact_Form_7.php:1415, ../includes/Elements/Contact_Form_7.php:1479, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Contact_Form_7.php:1622, ../includes/Elements/Content_Ticker.php:400, ../includes/Elements/Content_Ticker.php:476, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:275, ../includes/Elements/Creative_Button.php:367, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:957, ../includes/Elements/Data_Table.php:974, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1247, ../includes/Elements/Filterable_Gallery.php:956, ../includes/Elements/Filterable_Gallery.php:1022, ../includes/Elements/Filterable_Gallery.php:2497, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:277, ../includes/Elements/FluentForm.php:338, ../includes/Elements/FluentForm.php:542, ../includes/Elements/FluentForm.php:623, ../includes/Elements/FluentForm.php:872, ../includes/Elements/FluentForm.php:1536, ../includes/Elements/FluentForm.php:1642, ../includes/Elements/FluentForm.php:2059, ../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:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Login_Register.php:2519, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3002, ../includes/Elements/Login_Register.php:3187, ../includes/Elements/Login_Register.php:3224, ../includes/Elements/Login_Register.php:3508, ../includes/Elements/Login_Register.php:3545, ../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:1892, ../includes/Elements/Pricing_Table.php:1961, ../includes/Elements/Product_Grid.php:
|
655 |
msgid "Text Color"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: ../includes/Elements/Advanced_Data_Table.php:428, ../includes/Elements/Advanced_Data_Table.php:569, ../includes/Elements/Advanced_Data_Table.php:642, ../includes/Elements/Advanced_Data_Table.php:673, ../includes/Elements/Advanced_Data_Table.php:704, ../includes/Elements/Advanced_Data_Table.php:735, ../includes/Elements/Advanced_Data_Table.php:766, ../includes/Elements/Advanced_Data_Table.php:797, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1173, ../includes/Elements/Advanced_Data_Table.php:1244, ../includes/Elements/Advanced_Data_Table.php:1339, ../includes/Elements/Advanced_Data_Table.php:1369, ../includes/Elements/Adv_Accordion.php:515, ../includes/Elements/Adv_Accordion.php:588, ../includes/Elements/Adv_Accordion.php:661, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Accordion.php:914, ../includes/Elements/Adv_Accordion.php:960, ../includes/Elements/Adv_Accordion.php:1007, ../includes/Elements/Adv_Tabs.php:468, ../includes/Elements/Adv_Tabs.php:683, ../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:1233, ../includes/Elements/Contact_Form_7.php:1339, ../includes/Elements/Contact_Form_7.php:1464, ../includes/Elements/Contact_Form_7.php:1525, ../includes/Elements/Content_Ticker.php:388, ../includes/Elements/Content_Ticker.php:465, ../includes/Elements/Content_Ticker.php:640, ../includes/Elements/Content_Ticker.php:696, ../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:288, ../includes/Elements/Creative_Button.php:380, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:647, ../includes/Elements/Data_Table.php:1084, ../includes/Elements/Dual_Color_Header.php:308, ../includes/Elements/Event_Calendar.php:1226, ../includes/Elements/Filterable_Gallery.php:831, ../includes/Elements/Filterable_Gallery.php:968, ../includes/Elements/Filterable_Gallery.php:1034, ../includes/Elements/Filterable_Gallery.php:1180, ../includes/Elements/Filterable_Gallery.php:1370, ../includes/Elements/Filterable_Gallery.php:1400, ../includes/Elements/Filterable_Gallery.php:1505, ../includes/Elements/Filterable_Gallery.php:1521, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:2481, ../includes/Elements/Filterable_Gallery.php:2674, ../includes/Elements/FluentForm.php:611, ../includes/Elements/FluentForm.php:819, ../includes/Elements/FluentForm.php:1253, ../includes/Elements/FluentForm.php:1339, ../includes/Elements/FluentForm.php:1524, ../includes/Elements/FluentForm.php:1630, ../includes/Elements/FluentForm.php:2048, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:316, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1032, ../includes/Elements/Info_Box.php:1094, ../includes/Elements/Info_Box.php:1244, ../includes/Elements/Info_Box.php:1290, ../includes/Elements/Login_Register.php:1497, ../includes/Elements/Login_Register.php:1630, ../includes/Elements/Login_Register.php:1732, ../includes/Elements/Login_Register.php:1906, ../includes/Elements/Login_Register.php:2262, ../includes/Elements/Login_Register.php:2353, ../includes/Elements/Login_Register.php:2533, ../includes/Elements/Login_Register.php:2571, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3516, ../includes/Elements/Login_Register.php:3553, ../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:923, ../includes/Elements/Pricing_Table.php:741, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Pricing_Table.php:1407, ../includes/Elements/Pricing_Table.php:1476, ../includes/Elements/Pricing_Table.php:1642, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:
|
659 |
msgid "Background Color"
|
660 |
msgstr ""
|
661 |
|
@@ -663,7 +663,7 @@ msgstr ""
|
|
663 |
msgid "Cell Border"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../includes/Elements/Advanced_Data_Table.php:467, ../includes/Elements/Advanced_Data_Table.php:812, ../includes/Elements/Advanced_Data_Table.php:896, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Advanced_Data_Table.php:1431, ../includes/Elements/Adv_Accordion.php:331, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:781, ../includes/Elements/Adv_Tabs.php:300, ../includes/Elements/Adv_Tabs.php:442, ../includes/Elements/Adv_Tabs.php:720, ../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:1405, ../includes/Elements/Betterdocs_Search_Form.php:124, ../includes/Elements/Betterdocs_Search_Form.php:432, ../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:1279, ../includes/Elements/Contact_Form_7.php:1695, ../includes/Elements/Content_Ticker.php:432, ../includes/Elements/Content_Ticker.php:495, ../includes/Elements/Content_Ticker.php:736, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:575, ../includes/Elements/Data_Table.php:860, ../includes/Elements/Dual_Color_Header.php:320, ../includes/Elements/Facebook_Feed.php:594, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:692, ../includes/Elements/Fancy_Text.php:483, ../includes/Elements/Feature_List.php:595, ../includes/Elements/Filterable_Gallery.php:843, ../includes/Elements/Filterable_Gallery.php:920, ../includes/Elements/Filterable_Gallery.php:1102, ../includes/Elements/Filterable_Gallery.php:1192, ../includes/Elements/Filterable_Gallery.php:1536, ../includes/Elements/Filterable_Gallery.php:1747, ../includes/Elements/Filterable_Gallery.php:2598, ../includes/Elements/Flip_Box.php:998, ../includes/Elements/Flip_Box.php:1111, ../includes/Elements/Flip_Box.php:1347, ../includes/Elements/FluentForm.php:760, ../includes/Elements/FluentForm.php:1128, ../includes/Elements/FluentForm.php:1183, ../includes/Elements/FluentForm.php:1306, ../includes/Elements/FluentForm.php:1391, ../includes/Elements/FluentForm.php:1571, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2139, ../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:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:328, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1460, ../includes/Elements/Login_Register.php:2025, ../includes/Elements/Login_Register.php:2164, ../includes/Elements/Login_Register.php:2237, ../includes/Elements/Login_Register.php:2328, ../includes/Elements/Login_Register.php:2430, ../includes/Elements/Login_Register.php:2466, ../includes/Elements/Login_Register.php:2628, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3399, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:753, ../includes/Elements/Pricing_Table.php:1518, ../includes/Elements/Pricing_Table.php:1823, ../includes/Elements/Product_Grid.php:
|
667 |
msgid "Padding"
|
668 |
msgstr ""
|
669 |
|
@@ -719,7 +719,7 @@ msgstr ""
|
|
719 |
msgid "Margin Bottom"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: ../includes/Elements/Advanced_Data_Table.php:931, ../includes/Elements/Advanced_Data_Table.php:1079, ../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:97, ../includes/Elements/Data_Table.php:515, ../includes/Elements/Dual_Color_Header.php:184, ../includes/Elements/Dual_Color_Header.php:578, ../includes/Elements/Event_Calendar.php:964, ../includes/Elements/Event_Calendar.php:1096, ../includes/Elements/Fancy_Text.php:168, ../includes/Elements/Filterable_Gallery.php:760, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:576, ../includes/Elements/FluentForm.php:1207, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Login_Register.php:3154, ../includes/Elements/Login_Register.php:3474, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:444, ../includes/Elements/Post_Grid.php:762, ../includes/Elements/Post_Grid.php:845, ../includes/Elements/Product_Grid.php:
|
723 |
msgid "Alignment"
|
724 |
msgstr ""
|
725 |
|
@@ -727,15 +727,15 @@ msgstr ""
|
|
727 |
msgid "Margin"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1155, ../includes/Elements/Advanced_Data_Table.php:1321, ../includes/Elements/Adv_Accordion.php:511, ../includes/Elements/Adv_Accordion.php:894, ../includes/Elements/Adv_Tabs.php:464, ../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:799, ../includes/Elements/Betterdocs_Category_Grid.php:1347, ../includes/Elements/Betterdocs_Search_Form.php:390, ../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:1226, ../includes/Elements/Content_Ticker.php:633, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:587, ../includes/Elements/Data_Table.php:780, ../includes/Elements/Data_Table.php:952, ../includes/Elements/Event_Calendar.php:741, ../includes/Elements/Filterable_Gallery.php:951, ../includes/Elements/Filterable_Gallery.php:1716, ../includes/Elements/Filterable_Gallery.php:2470, ../includes/Elements/Flip_Box.php:1329, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:939, ../includes/Elements/FluentForm.php:1517, ../includes/Elements/FluentForm.php:1689, ../includes/Elements/FluentForm.php:1906, ../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:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:536, ../includes/Elements/Info_Box.php:764, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1226, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2516, ../includes/Elements/Login_Register.php:3184, ../includes/Elements/Login_Register.php:3347, ../includes/Elements/Login_Register.php:3505, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1887, ../includes/Elements/Product_Grid.php:
|
731 |
msgid "Normal"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1225, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:940, ../includes/Elements/Adv_Tabs.php:530, ../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:871, ../includes/Elements/Betterdocs_Category_Grid.php:1431, ../includes/Elements/Betterdocs_Search_Form.php:474, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1332, ../includes/Elements/Content_Ticker.php:689, ../includes/Elements/Creative_Button.php:350, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:627, ../includes/Elements/Data_Table.php:871, ../includes/Elements/Data_Table.php:969, ../includes/Elements/Event_Calendar.php:808, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2663, ../includes/Elements/Flip_Box.php:1411, ../includes/Elements/FluentForm.php:1623, ../includes/Elements/FluentForm.php:1987, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:835, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1272, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3221, ../includes/Elements/Login_Register.php:3542, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:
|
735 |
msgid "Hover"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1326, ../includes/Elements/Advanced_Data_Table.php:1356, ../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:805, ../includes/Elements/Betterdocs_Category_Grid.php:902, ../includes/Elements/Betterdocs_Category_Grid.php:1005, ../includes/Elements/Betterdocs_Category_Grid.php:1085, ../includes/Elements/Betterdocs_Category_Grid.php:1161, ../includes/Elements/Betterdocs_Category_Grid.php:1238, ../includes/Elements/Betterdocs_Category_Grid.php:1361, ../includes/Elements/Betterdocs_Category_Grid.php:1460, ../includes/Elements/Betterdocs_Search_Form.php:238, ../includes/Elements/Betterdocs_Search_Form.php:275, ../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:652, ../includes/Elements/Content_Ticker.php:708, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:592, ../includes/Elements/Data_Table.php:632, ../includes/Elements/Data_Table.php:1069, ../includes/Elements/Dual_Color_Header.php:468, ../includes/Elements/Dual_Color_Header.php:541, ../includes/Elements/Dual_Color_Header.php:641, ../includes/Elements/Event_Calendar.php:708, ../includes/Elements/Event_Calendar.php:748, ../includes/Elements/Event_Calendar.php:815, ../includes/Elements/Event_Calendar.php:869, ../includes/Elements/Event_Calendar.php:952, ../includes/Elements/Event_Calendar.php:1027, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1170, ../includes/Elements/Event_Calendar.php:1536, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Facebook_Feed.php:884, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:960, ../includes/Elements/Facebook_Feed.php:1013, ../includes/Elements/Facebook_Feed.php:1051, ../includes/Elements/Facebook_Feed.php:1089, ../includes/Elements/Facebook_Feed.php:1121, ../includes/Elements/Fancy_Text.php:344, ../includes/Elements/Feature_List.php:540, ../includes/Elements/Feature_List.php:761, ../includes/Elements/Feature_List.php:795, ../includes/Elements/Filterable_Gallery.php:1213, ../includes/Elements/Filterable_Gallery.php:1253, ../includes/Elements/Filterable_Gallery.php:1575, ../includes/Elements/Filterable_Gallery.php:1590, ../includes/Elements/Filterable_Gallery.php:1635, ../includes/Elements/Filterable_Gallery.php:1650, ../includes/Elements/Filterable_Gallery.php:1735, ../includes/Elements/Filterable_Gallery.php:1873, ../includes/Elements/Filterable_Gallery.php:1949, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2028, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2352, ../includes/Elements/Flip_Box.php:944, ../includes/Elements/Flip_Box.php:1057, ../includes/Elements/Flip_Box.php:1184, ../includes/Elements/Flip_Box.php:1215, ../includes/Elements/Flip_Box.php:1253, ../includes/Elements/Flip_Box.php:1285, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/Flip_Box.php:1417, ../includes/Elements/FluentForm.php:413, ../includes/Elements/FluentForm.php:949, ../includes/Elements/FluentForm.php:1065, ../includes/Elements/FluentForm.php:1106, ../includes/Elements/FluentForm.php:1161, ../includes/Elements/FluentForm.php:1265, ../includes/Elements/FluentForm.php:1327, ../includes/Elements/FluentForm.php:1921, ../includes/Elements/FluentForm.php:1994, ../includes/Elements/FluentForm.php:2115, ../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:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:495, ../includes/Elements/Image_Accordion.php:524, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2252, ../includes/Elements/Login_Register.php:2343, ../includes/Elements/Login_Register.php:2757, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:359, ../includes/Elements/Post_Grid.php:432, ../includes/Elements/Post_Grid.php:824, ../includes/Elements/Pricing_Table.php:888, ../includes/Elements/Pricing_Table.php:952, ../includes/Elements/Pricing_Table.php:1043, ../includes/Elements/Pricing_Table.php:1072, ../includes/Elements/Pricing_Table.php:1113, ../includes/Elements/Pricing_Table.php:1142, ../includes/Elements/Pricing_Table.php:1182, ../includes/Elements/Pricing_Table.php:1217, ../includes/Elements/Pricing_Table.php:1374, ../includes/Elements/Pricing_Table.php:1506, ../includes/Elements/Product_Grid.php:
|
739 |
msgid "Color"
|
740 |
msgstr ""
|
741 |
|
@@ -839,7 +839,7 @@ msgstr ""
|
|
839 |
msgid "Content Type"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../includes/Elements/Adv_Accordion.php:238, ../includes/Elements/Adv_Tabs.php:122, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:676, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:244, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Data_Table.php:353, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1446, ../includes/Elements/Facebook_Feed.php:937, ../includes/Elements/Feature_List.php:190, ../includes/Elements/Feature_List.php:693, ../includes/Elements/Flip_Box.php:156, ../includes/Elements/Image_Accordion.php:96, ../includes/Elements/Image_Accordion.php:207, ../includes/Elements/Image_Accordion.php:515, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:
|
843 |
msgid "Content"
|
844 |
msgstr ""
|
845 |
|
@@ -879,7 +879,7 @@ msgstr ""
|
|
879 |
msgid "Tab Style"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../includes/Elements/Adv_Accordion.php:400, ../includes/Elements/Adv_Accordion.php:832, ../includes/Elements/Adv_Tabs.php:396, ../includes/Elements/Creative_Button.php:496, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Dual_Color_Header.php:395, ../includes/Elements/Event_Calendar.php:1417, ../includes/Elements/Event_Calendar.php:1484, ../includes/Elements/Feature_List.php:573, ../includes/Elements/Filterable_Gallery.php:1771, ../includes/Elements/Filterable_Gallery.php:2125, ../includes/Elements/Filterable_Gallery.php:2558, ../includes/Elements/Flip_Box.php:959, ../includes/Elements/Flip_Box.php:1072, ../includes/Elements/Info_Box.php:935, ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Login_Register.php:2821, ../includes/Elements/Pricing_Table.php:1241, ../includes/Elements/Pricing_Table.php:1676, ../includes/Elements/Pricing_Table.php:1847, ../includes/Elements/Product_Grid.php:
|
883 |
msgid "Icon Size"
|
884 |
msgstr ""
|
885 |
|
@@ -895,7 +895,7 @@ msgstr ""
|
|
895 |
msgid "Icon Color"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../includes/Elements/Adv_Accordion.php:655, ../includes/Elements/Adv_Accordion.php:986, ../includes/Elements/Adv_Tabs.php:596, ../includes/Elements/Event_Calendar.php:862, ../includes/Elements/Filterable_Gallery.php:1017, ../includes/Elements/Product_Grid.php:
|
899 |
msgid "Active"
|
900 |
msgstr ""
|
901 |
|
@@ -919,7 +919,7 @@ msgstr ""
|
|
919 |
msgid "Caret Color"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../includes/Elements/Adv_Tabs.php:79, ../includes/Elements/Countdown.php:148, ../includes/Elements/Facebook_Feed.php:168, ../includes/Elements/Filterable_Gallery.php:167, ../includes/Elements/Product_Grid.php:212, ../includes/Elements/Product_Grid.php:
|
923 |
msgid "Layout"
|
924 |
msgstr ""
|
925 |
|
@@ -1019,11 +1019,11 @@ msgstr ""
|
|
1019 |
msgid "Show Icon"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: ../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:1302, ../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:298, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:93, ../includes/Elements/Dual_Color_Header.php:103, ../includes/Elements/Facebook_Feed.php:295, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:322, ../includes/Elements/Facebook_Feed.php:337, ../includes/Elements/Facebook_Feed.php:352, ../includes/Elements/Facebook_Feed.php:418, ../includes/Elements/Feature_List.php:359, ../includes/Elements/Filterable_Gallery.php:272, ../includes/Elements/FluentForm.php:166, ../includes/Elements/FluentForm.php:178, ../includes/Elements/FluentForm.php:204, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/FluentForm.php:1774, ../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:290, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:621, ../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:88, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1630, ../includes/Elements/Product_Grid.php:
|
1023 |
msgid "Show"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: ../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:1303, ../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:299, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:251, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:94, ../includes/Elements/Dual_Color_Header.php:104, ../includes/Elements/Facebook_Feed.php:296, ../includes/Elements/Facebook_Feed.php:308, ../includes/Elements/Facebook_Feed.php:323, ../includes/Elements/Facebook_Feed.php:338, ../includes/Elements/Facebook_Feed.php:353, ../includes/Elements/Facebook_Feed.php:419, ../includes/Elements/Filterable_Gallery.php:273, ../includes/Elements/FluentForm.php:167, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:205, ../includes/Elements/FluentForm.php:1707, ../includes/Elements/FluentForm.php:1775, ../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:291, ../includes/Elements/Login_Register.php:329, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:620, ../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:89, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:
|
1027 |
msgid "Hide"
|
1028 |
msgstr ""
|
1029 |
|
@@ -1079,7 +1079,7 @@ msgstr ""
|
|
1079 |
msgid "Spacing"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../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:1145, ../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:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:691, ../includes/Elements/Event_Calendar.php:1350, ../includes/Elements/Feature_List.php:180, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:733, ../includes/Elements/Flip_Box.php:649, ../includes/Elements/FluentForm.php:132, ../includes/Elements/FluentForm.php:265, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:196, ../includes/Elements/Image_Accordion.php:486, ../includes/Elements/Login_Register.php:2213, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:138, ../includes/Elements/Pricing_Table.php:135, ../includes/Elements/Product_Grid.php:
|
1083 |
msgid "Title"
|
1084 |
msgstr ""
|
1085 |
|
@@ -1103,7 +1103,7 @@ msgstr ""
|
|
1103 |
msgid "File Not Found"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:1181, ../includes/Elements/Betterdocs_Category_Box.php:1146, ../includes/Elements/Betterdocs_Category_Grid.php:1678, ../includes/Elements/Betterdocs_Category_Grid.php:1645, ../includes/Elements/Post_Grid.php:1041, ../includes/Elements/Post_Timeline.php:460, ../includes/Elements/Product_Grid.php:
|
1107 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1108 |
msgstr ""
|
1109 |
|
@@ -1163,7 +1163,7 @@ msgstr ""
|
|
1163 |
msgid "List"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:1016, ../includes/Elements/Filterable_Gallery.php:1225, ../includes/Elements/Filterable_Gallery.php:1605, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Pricing_Table.php:1774, ../includes/Elements/Product_Grid.php:
|
1167 |
msgid "Hover Color"
|
1168 |
msgstr ""
|
1169 |
|
@@ -1235,7 +1235,7 @@ msgstr ""
|
|
1235 |
msgid "Close Icon"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:286, ../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:1363, ../includes/Elements/Content_Ticker.php:720, ../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:417, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:639, ../includes/Elements/Facebook_Feed.php:717, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:986, ../includes/Elements/FluentForm.php:1654, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2000, ../includes/Elements/Product_Grid.php:
|
1239 |
msgid "Border Color"
|
1240 |
msgstr ""
|
1241 |
|
@@ -1443,7 +1443,7 @@ msgstr ""
|
|
1443 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1636, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:741, ../includes/Elements/Dual_Color_Header.php:821, ../includes/Elements/Event_Calendar.php:627, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Event_Calendar.php:826, ../includes/Elements/Event_Calendar.php:880, ../includes/Elements/Event_Calendar.php:992, ../includes/Elements/Event_Calendar.php:1084, ../includes/Elements/Event_Calendar.php:1182, ../includes/Elements/Event_Calendar.php:1548, ../includes/Elements/Event_Calendar.php:1657, ../includes/Elements/Facebook_Feed.php:477, ../includes/Elements/Facebook_Feed.php:490, ../includes/Elements/Facebook_Feed.php:565, ../includes/Elements/Facebook_Feed.php:578, ../includes/Elements/Facebook_Feed.php:663, ../includes/Elements/Facebook_Feed.php:676, ../includes/Elements/Facebook_Feed.php:747, ../includes/Elements/Facebook_Feed.php:785, ../includes/Elements/Facebook_Feed.php:825, ../includes/Elements/Fancy_Text.php:438, ../includes/Elements/Filterable_Gallery.php:2050, ../includes/Elements/Filterable_Gallery.php:2269, ../includes/Elements/Flip_Box.php:1371, ../includes/Elements/Flip_Box.php:1429, ../includes/Elements/FluentForm.php:1853, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:1943, ../includes/Elements/FluentForm.php:2006, ../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:351, ../includes/Elements/Pricing_Table.php:1919, ../includes/Elements/Pricing_Table.php:1988, ../includes/Elements/Product_Grid.php:
|
1447 |
msgid "Background"
|
1448 |
msgstr ""
|
1449 |
|
@@ -1491,7 +1491,7 @@ msgstr ""
|
|
1491 |
msgid "After Submit Feedback"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: ../includes/Elements/Contact_Form_7.php:1658, ../includes/Elements/Dual_Color_Header.php:729, ../includes/Elements/Dual_Color_Header.php:809, ../includes/Elements/Flip_Box.php:870, ../includes/Elements/Info_Box.php:583, ../includes/Elements/Info_Box.php:638, ../includes/Elements/Info_Box.php:806, ../includes/Elements/Info_Box.php:886, ../includes/Elements/Info_Box.php:1022, ../includes/Elements/Info_Box.php:1117, ../includes/Elements/Post_Grid.php:323, ../includes/Elements/Product_Grid.php:
|
1495 |
msgid "Radius"
|
1496 |
msgstr ""
|
1497 |
|
@@ -1503,7 +1503,7 @@ msgstr ""
|
|
1503 |
msgid "Template Layout"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Progress_Bar.php:158, ../includes/Traits/Controls.php:30
|
1507 |
msgid "Dynamic"
|
1508 |
msgstr ""
|
1509 |
|
@@ -1811,7 +1811,7 @@ msgstr ""
|
|
1811 |
msgid "Space Below Container"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:436, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Flip_Box.php:1160, ../includes/Elements/Image_Accordion.php:478, ../includes/Elements/Info_Box.php:1329, ../includes/Elements/Product_Grid.php:
|
1815 |
msgid "Color & Typography"
|
1816 |
msgstr ""
|
1817 |
|
@@ -1843,7 +1843,7 @@ msgstr ""
|
|
1843 |
msgid "Title Style"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1367, ../includes/Elements/FluentForm.php:1807, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Post_Grid.php:573, ../includes/Elements/Post_Timeline.php:309, ../includes/Elements/Product_Grid.php:
|
1847 |
msgid "Title Color"
|
1848 |
msgstr ""
|
1849 |
|
@@ -1947,7 +1947,7 @@ msgstr ""
|
|
1947 |
msgid "Shikoba (Pro)"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: ../includes/Elements/Creative_Button.php:248, ../includes/Elements/Cta_Box.php:682, ../includes/Elements/Product_Grid.php:
|
1951 |
msgid "Use Gradient Background"
|
1952 |
msgstr ""
|
1953 |
|
@@ -2543,15 +2543,15 @@ msgstr ""
|
|
2543 |
msgid "Date Icon"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: ../includes/Elements/Event_Calendar.php:1464, ../includes/Elements/Info_Box.php:1465, ../includes/Elements/Product_Grid.php:
|
2547 |
msgid "Content Color"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: ../includes/Elements/Event_Calendar.php:1475, ../includes/Elements/Product_Grid.php:
|
2551 |
msgid " Close Button"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: ../includes/Elements/Event_Calendar.php:1510, ../includes/Elements/Product_Grid.php:
|
2555 |
msgid "Button Size"
|
2556 |
msgstr ""
|
2557 |
|
@@ -2703,7 +2703,7 @@ msgstr ""
|
|
2703 |
msgid "Show Preview Description"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: ../includes/Elements/Facebook_Feed.php:373, ../includes/Elements/Product_Grid.php:
|
2707 |
msgid "Show Load More"
|
2708 |
msgstr ""
|
2709 |
|
@@ -2711,7 +2711,7 @@ msgstr ""
|
|
2711 |
msgid "Label"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: ../includes/Elements/Facebook_Feed.php:395, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Product_Grid.php:
|
2715 |
msgid "Load More"
|
2716 |
msgstr ""
|
2717 |
|
@@ -3091,7 +3091,7 @@ msgstr ""
|
|
3091 |
msgid "Media"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: ../includes/Elements/Filterable_Gallery.php:227, ../includes/Elements/Product_Grid.php:
|
3095 |
msgid "Buttons"
|
3096 |
msgstr ""
|
3097 |
|
@@ -3371,7 +3371,7 @@ msgstr ""
|
|
3371 |
msgid "Dropdown"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: ../includes/Elements/Filterable_Gallery.php:2449, ../includes/Elements/Product_Grid.php:
|
3375 |
msgid "Top Spacing"
|
3376 |
msgstr ""
|
3377 |
|
@@ -3627,7 +3627,7 @@ msgstr ""
|
|
3627 |
msgid "Border Height"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:124, ../includes/Elements/Product_Grid.php:
|
3631 |
msgid "Price"
|
3632 |
msgstr ""
|
3633 |
|
@@ -3635,7 +3635,7 @@ msgstr ""
|
|
3635 |
msgid "Price Label Color"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: ../includes/Elements/GravityForms.php:1111, ../includes/Elements/Product_Grid.php:
|
3639 |
msgid "Price Color"
|
3640 |
msgstr ""
|
3641 |
|
@@ -3867,31 +3867,31 @@ msgstr ""
|
|
3867 |
msgid "Login | Register Form"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: ../includes/Elements/Login_Register.php:180, ../includes/Elements/Login_Register.php:1061, ../includes/Elements/Login_Register.php:1062, ../includes/Elements/Login_Register.php:
|
3871 |
msgid "Username"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: ../includes/Elements/Login_Register.php:181, ../includes/Elements/Login_Register.php:1067, ../includes/Elements/Login_Register.php:1068, ../includes/Elements/Login_Register.php:
|
3875 |
msgid "Email"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: ../includes/Elements/Login_Register.php:182, ../includes/Elements/Login_Register.php:554, ../includes/Elements/Login_Register.php:555, ../includes/Elements/Login_Register.php:581, ../includes/Elements/Login_Register.php:582, ../includes/Elements/Login_Register.php:1074, ../includes/Elements/Login_Register.php:1075, ../includes/Elements/Login_Register.php:
|
3879 |
msgid "Password"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: ../includes/Elements/Login_Register.php:183, ../includes/Elements/Login_Register.php:
|
3883 |
msgid "Confirm Password"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: ../includes/Elements/Login_Register.php:184, ../includes/Elements/Login_Register.php:
|
3887 |
msgid "First Name"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: ../includes/Elements/Login_Register.php:185, ../includes/Elements/Login_Register.php:
|
3891 |
msgid "Last Name"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: ../includes/Elements/Login_Register.php:186, ../includes/Elements/Login_Register.php:
|
3895 |
msgid "Website"
|
3896 |
msgstr ""
|
3897 |
|
@@ -3903,7 +3903,7 @@ msgstr ""
|
|
3903 |
msgid "Default Form Type"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: ../includes/Elements/Login_Register.php:246, ../includes/Elements/Login_Register.php:3362, ../includes/Elements/Login_Register.php:
|
3907 |
msgid "Login"
|
3908 |
msgstr ""
|
3909 |
|
@@ -3936,7 +3936,7 @@ msgstr ""
|
|
3936 |
msgid "Lost Password Text"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: ../includes/Elements/Login_Register.php:294, ../includes/Elements/Login_Register.php:
|
3940 |
msgid "Forgot password?"
|
3941 |
msgstr ""
|
3942 |
|
@@ -3964,7 +3964,7 @@ msgstr ""
|
|
3964 |
msgid "Remember Me Field Text"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: ../includes/Elements/Login_Register.php:339, ../includes/Elements/Login_Register.php:
|
3968 |
msgid "Remember Me"
|
3969 |
msgstr ""
|
3970 |
|
@@ -4060,7 +4060,7 @@ msgstr ""
|
|
4060 |
msgid "Username Label"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
-
#: ../includes/Elements/Login_Register.php:544, ../includes/Elements/Login_Register.php:545, ../includes/Elements/Login_Register.php:571, ../includes/Elements/Login_Register.php:572, ../includes/Elements/Login_Register.php:
|
4064 |
msgid "Username or Email Address"
|
4065 |
msgstr ""
|
4066 |
|
@@ -4399,7 +4399,7 @@ msgstr ""
|
|
4399 |
msgid "Register Button"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: ../includes/Elements/Login_Register.php:1113, ../includes/Elements/Login_Register.php:3362, ../includes/Elements/Login_Register.php:
|
4403 |
msgid "Register"
|
4404 |
msgstr ""
|
4405 |
|
@@ -4799,30 +4799,30 @@ msgid "Link Height"
|
|
4799 |
msgstr ""
|
4800 |
|
4801 |
#. translators: %s user display name
|
4802 |
-
#: ../includes/Elements/Login_Register.php:
|
4803 |
msgid "You are already logged in as %s. "
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: ../includes/Elements/Login_Register.php:
|
4807 |
msgid "Logout"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
-
#: ../includes/Elements/Login_Register.php:
|
4811 |
msgid "Form Logo Image"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
#. translators: %s: Error fields
|
4815 |
-
#: ../includes/Elements/Login_Register.php:
|
4816 |
msgid "Error! you seem to have added %s field in the form more than once."
|
4817 |
msgstr ""
|
4818 |
|
4819 |
#. translators: %s: Error String
|
4820 |
-
#: ../includes/Elements/Login_Register.php:
|
4821 |
msgid "Error! It is required to use %s field."
|
4822 |
msgstr ""
|
4823 |
|
4824 |
#. translators: %s: Error String
|
4825 |
-
#: ../includes/Elements/Login_Register.php:
|
4826 |
msgid "Error! It is required to use %s field with %s Field."
|
4827 |
msgstr ""
|
4828 |
|
@@ -4850,7 +4850,7 @@ msgstr ""
|
|
4850 |
msgid "Target Blank"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: ../includes/Elements/Post_Grid.php:178, ../includes/Elements/Product_Grid.php:
|
4854 |
msgid "Read More"
|
4855 |
msgstr ""
|
4856 |
|
@@ -5030,7 +5030,7 @@ msgstr ""
|
|
5030 |
msgid "Date Text Color"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
-
#: ../includes/Elements/Post_Timeline.php:464, ../includes/Elements/Product_Grid.php:
|
5034 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
5035 |
msgstr ""
|
5036 |
|
@@ -5314,11 +5314,11 @@ msgstr ""
|
|
5314 |
msgid "Product ID"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: ../includes/Elements/Product_Grid.php:123, ../includes/Elements/Product_Grid.php:
|
5318 |
msgid "Product Title"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: ../includes/Elements/Product_Grid.php:125, ../includes/Elements/Product_Grid.php:
|
5322 |
msgid "SKU"
|
5323 |
msgstr ""
|
5324 |
|
@@ -5362,7 +5362,7 @@ msgstr ""
|
|
5362 |
msgid "Layouts"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: ../includes/Elements/Product_Grid.php:226, ../includes/Elements/Product_Grid.php:248, ../includes/Elements/Product_Grid.php:
|
5366 |
msgid "Style Preset"
|
5367 |
msgstr ""
|
5368 |
|
@@ -5378,7 +5378,7 @@ msgstr ""
|
|
5378 |
msgid "Overlay Style"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
-
#: ../includes/Elements/Product_Grid.php:234, ../includes/Elements/Product_Grid.php:
|
5382 |
msgid "Preset 5"
|
5383 |
msgstr ""
|
5384 |
|
@@ -5394,19 +5394,19 @@ msgstr ""
|
|
5394 |
msgid "Preset 8"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: ../includes/Elements/Product_Grid.php:252, ../includes/Elements/Product_Grid.php:
|
5398 |
msgid "Preset 1"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
-
#: ../includes/Elements/Product_Grid.php:253, ../includes/Elements/Product_Grid.php:
|
5402 |
msgid "Preset 2"
|
5403 |
msgstr ""
|
5404 |
|
5405 |
-
#: ../includes/Elements/Product_Grid.php:254, ../includes/Elements/Product_Grid.php:
|
5406 |
msgid "Preset 3"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
-
#: ../includes/Elements/Product_Grid.php:255, ../includes/Elements/Product_Grid.php:
|
5410 |
msgid "Preset 4"
|
5411 |
msgstr ""
|
5412 |
|
@@ -5414,239 +5414,247 @@ msgstr ""
|
|
5414 |
msgid "Product Settings"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: ../includes/Elements/Product_Grid.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5418 |
msgid "Filter By"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: ../includes/Elements/Product_Grid.php:
|
5422 |
msgid "Order By"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: ../includes/Elements/Product_Grid.php:
|
5426 |
msgid "Order"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: ../includes/Elements/Product_Grid.php:
|
5430 |
msgid "Products Count"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: ../includes/Elements/Product_Grid.php:
|
5434 |
msgid "Offset"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: ../includes/Elements/Product_Grid.php:
|
5438 |
msgid "Product Categories"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: ../includes/Elements/Product_Grid.php:
|
5442 |
msgid "Show Product Rating?"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: ../includes/Elements/Product_Grid.php:
|
5446 |
msgid "Show Product Price?"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: ../includes/Elements/Product_Grid.php:
|
5450 |
msgid "Short Description?"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: ../includes/Elements/Product_Grid.php:
|
5454 |
msgid "Excerpt Words"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#: ../includes/Elements/Product_Grid.php:
|
5458 |
msgid "Expansion Indicator"
|
5459 |
msgstr ""
|
5460 |
|
5461 |
-
#: ../includes/Elements/Product_Grid.php:
|
5462 |
msgid "Show Product Compare?"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
-
#: ../includes/Elements/Product_Grid.php:
|
5466 |
msgid "Add To Cart"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: ../includes/Elements/Product_Grid.php:
|
5470 |
msgid "Show Add to cart custom text"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: ../includes/Elements/Product_Grid.php:
|
5474 |
msgid "Simple Product"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#: ../includes/Elements/Product_Grid.php:
|
5478 |
msgid "Buy Now"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: ../includes/Elements/Product_Grid.php:
|
5482 |
msgid "Variable Product"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
-
#: ../includes/Elements/Product_Grid.php:
|
5486 |
msgid "Select options"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
-
#: ../includes/Elements/Product_Grid.php:
|
5490 |
msgid "Grouped Product"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
-
#: ../includes/Elements/Product_Grid.php:
|
5494 |
msgid "View products"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
-
#: ../includes/Elements/Product_Grid.php:
|
5498 |
msgid "External Product"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
-
#: ../includes/Elements/Product_Grid.php:
|
5502 |
msgid "Default Product"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
-
#: ../includes/Elements/Product_Grid.php:
|
5506 |
msgid "Label Text"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: ../includes/Elements/Product_Grid.php:
|
5510 |
-
msgid "Products"
|
5511 |
-
msgstr ""
|
5512 |
-
|
5513 |
-
#: ../includes/Elements/Product_Grid.php:647, ../includes/Elements/Team_Member.php:358
|
5514 |
msgid "Content Background Color"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#: ../includes/Elements/Product_Grid.php:
|
5518 |
msgid "Image Width(%)"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
-
#: ../includes/Elements/Product_Grid.php:
|
5522 |
msgid "Product Details"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
-
#: ../includes/Elements/Product_Grid.php:
|
5526 |
msgid "Padding (PX)"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
-
#: ../includes/Elements/Product_Grid.php:
|
5530 |
msgid "Width (%)"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
-
#: ../includes/Elements/Product_Grid.php:
|
5534 |
msgid "Product Title Color"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: ../includes/Elements/Product_Grid.php:
|
5538 |
msgid "Product Price"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#: ../includes/Elements/Product_Grid.php:
|
5542 |
msgid "Product Price Color"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#: ../includes/Elements/Product_Grid.php:
|
5546 |
msgid "Star Rating"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
-
#: ../includes/Elements/Product_Grid.php:
|
5550 |
msgid "Rating Color"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#: ../includes/Elements/Product_Grid.php:
|
5554 |
msgid "Product Description"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
-
#: ../includes/Elements/Product_Grid.php:
|
5558 |
msgid "Sale Badge"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
-
#: ../includes/Elements/Product_Grid.php:
|
5562 |
msgid "Sale Badge Color"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#: ../includes/Elements/Product_Grid.php:
|
5566 |
msgid "Sale Badge Background"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#: ../includes/Elements/Product_Grid.php:
|
5570 |
msgid "Stock Out Badge"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#: ../includes/Elements/Product_Grid.php:
|
5574 |
msgid "Stock Out Badge Color"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
-
#: ../includes/Elements/Product_Grid.php:
|
5578 |
msgid "Stock Out Badge Background"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: ../includes/Elements/Product_Grid.php:
|
5582 |
msgid "Add to Cart Button Styles"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#: ../includes/Elements/Product_Grid.php:
|
5586 |
msgid "Button Color"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
-
#: ../includes/Elements/Product_Grid.php:
|
5590 |
msgid "Sale / Stock Out Badge"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
-
#: ../includes/Elements/Product_Grid.php:
|
5594 |
msgid "Show Quick view?"
|
5595 |
msgstr ""
|
5596 |
|
5597 |
-
#: ../includes/Elements/Product_Grid.php:
|
5598 |
msgid "Icons Size"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#: ../includes/Elements/Product_Grid.php:
|
5602 |
msgid "Show pagination"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
-
#: ../includes/Elements/Product_Grid.php:
|
5606 |
msgid "Previous Label"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: ../includes/Elements/Product_Grid.php:
|
5610 |
msgid "←"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: ../includes/Elements/Product_Grid.php:
|
5614 |
msgid "Next Label"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: ../includes/Elements/Product_Grid.php:
|
5618 |
msgid "→"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: ../includes/Elements/Product_Grid.php:
|
5622 |
msgid "Loader"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: ../includes/Elements/Product_Grid.php:
|
5626 |
msgid "Popup"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: ../includes/Elements/Product_Grid.php:
|
5630 |
msgid "Sale Price Color"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: ../includes/Elements/Product_Grid.php:
|
5634 |
msgid "Review Link Color"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
-
#: ../includes/Elements/Product_Grid.php:
|
5638 |
msgid "Review Link Hover"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
-
#: ../includes/Elements/Product_Grid.php:
|
5642 |
msgid "Sale"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
-
#: ../includes/Elements/Product_Grid.php:
|
5646 |
msgid "Quantity"
|
5647 |
msgstr ""
|
5648 |
|
5649 |
-
#: ../includes/Elements/Product_Grid.php:
|
5650 |
msgid "Cart Button"
|
5651 |
msgstr ""
|
5652 |
|
@@ -6458,10 +6466,6 @@ msgstr ""
|
|
6458 |
msgid "<strong>ReviewX</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=reviewx&tab=search&type=term\" target=\"_blank\">ReviewX</a> first."
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: ../includes/Elements/Woo_Checkout.php:92, ../includes/Traits/Woo_Product_Comparable.php:123
|
6462 |
-
msgid "<strong>WooCommerce</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=woocommerce&tab=search&type=term\" target=\"_blank\">WooCommerce</a> first."
|
6463 |
-
msgstr ""
|
6464 |
-
|
6465 |
#: ../includes/Elements/Woo_Checkout.php:148, ../includes/Elements/Woo_Checkout.php:610
|
6466 |
msgid "Order Details"
|
6467 |
msgstr ""
|
@@ -7054,10 +7058,6 @@ msgstr ""
|
|
7054 |
msgid "Dynamic Content Settings"
|
7055 |
msgstr ""
|
7056 |
|
7057 |
-
#: ../includes/Traits/Controls.php:78
|
7058 |
-
msgid "This option will only affect in <strong>Archive page of Elementor Theme Builder</strong> dynamically."
|
7059 |
-
msgstr ""
|
7060 |
-
|
7061 |
#: ../includes/Traits/Controls.php:89
|
7062 |
msgid "Search & Select"
|
7063 |
msgstr ""
|
@@ -8158,11 +8158,11 @@ msgstr ""
|
|
8158 |
msgid "Stock <br/> Out"
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#: ../includes/Template/Eicon-Woocommerce/default.php:
|
8162 |
msgid "Stock "
|
8163 |
msgstr ""
|
8164 |
|
8165 |
-
#: ../includes/Template/Eicon-Woocommerce/default.php:
|
8166 |
msgid "Out"
|
8167 |
msgstr ""
|
8168 |
|
53 |
msgid "Select a Fluent Form"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../includes/Classes/Helper.php:881, ../includes/Template/Content/Product_Grid.php:63, ../includes/Template/Content/Product_Grid.php:29, ../includes/Template/Eicon-Woocommerce/default.php:265, ../includes/Template/Eicon-Woocommerce/default.php:204, ../includes/Template/Eicon-Woocommerce/default.php:98, ../includes/Template/Eicon-Woocommerce/default.php:82, ../includes/Template/Eicon-Woocommerce/default.php:45
|
57 |
msgid "Sale!"
|
58 |
msgstr ""
|
59 |
|
511 |
msgid "Data Source"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: ../includes/Elements/Advanced_Data_Table.php:79, ../includes/Elements/Event_Calendar.php:93, ../includes/Elements/Product_Grid.php:315, ../includes/Elements/Sticky_Video.php:144, ../includes/Traits/Controls.php:67
|
515 |
msgid "Source"
|
516 |
msgstr ""
|
517 |
|
567 |
msgid "Placeholder"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../includes/Elements/Advanced_Data_Table.php:166, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Facebook_Feed.php:365, ../includes/Elements/FluentForm.php:1679, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:2009, ../includes/Elements/Product_Grid.php:2060
|
571 |
msgid "Pagination"
|
572 |
msgstr ""
|
573 |
|
575 |
msgid "Pagination Type"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: ../includes/Elements/Advanced_Data_Table.php:179, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Betterdocs_Category_Grid.php:1289, ../includes/Elements/Event_Calendar.php:720, ../includes/Elements/Flip_Box.php:650, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:349, ../includes/Elements/Pricing_Table.php:506, ../includes/Elements/Pricing_Table.php:1815, ../includes/Elements/Product_Grid.php:1714, ../includes/Elements/Woo_Checkout.php:1287, ../includes/Elements/Woo_Checkout.php:1585, ../includes/Elements/Woo_Checkout.php:2358, ../includes/Traits/Woo_Product_Comparable.php:1198, ../includes/Traits/Woo_Product_Comparable.php:1248
|
579 |
msgid "Button"
|
580 |
msgstr ""
|
581 |
|
615 |
msgid "Width"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: ../includes/Elements/Advanced_Data_Table.php:321, ../includes/Elements/Advanced_Data_Table.php:989, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1387, ../includes/Elements/Adv_Accordion.php:354, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:707, ../includes/Elements/Adv_Accordion.php:804, ../includes/Elements/Adv_Accordion.php:928, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Tabs.php:323, ../includes/Elements/Adv_Tabs.php:513, ../includes/Elements/Adv_Tabs.php:579, ../includes/Elements/Adv_Tabs.php:648, ../includes/Elements/Adv_Tabs.php:743, ../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:843, ../includes/Elements/Betterdocs_Category_Grid.php:940, ../includes/Elements/Betterdocs_Category_Grid.php:1185, ../includes/Elements/Betterdocs_Category_Grid.php:1385, ../includes/Elements/Betterdocs_Category_Grid.php:1484, ../includes/Elements/Betterdocs_Search_Form.php:211, ../includes/Elements/Betterdocs_Search_Form.php:366, ../includes/Elements/Betterdocs_Search_Form.php:424, ../includes/Elements/Betterdocs_Search_Form.php:534, ../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:1258, ../includes/Elements/Contact_Form_7.php:1495, ../includes/Elements/Contact_Form_7.php:1570, ../includes/Elements/Contact_Form_7.php:1647, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:620, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:851, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Dual_Color_Header.php:345, ../includes/Elements/Event_Calendar.php:771, ../includes/Elements/Event_Calendar.php:838, ../includes/Elements/Event_Calendar.php:892, ../includes/Elements/Event_Calendar.php:1564, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Facebook_Feed.php:440, ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:1047, ../includes/Elements/Filterable_Gallery.php:1127, ../includes/Elements/Filterable_Gallery.php:1274, ../includes/Elements/Filterable_Gallery.php:1331, ../includes/Elements/Filterable_Gallery.php:1550, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:1886, ../includes/Elements/Filterable_Gallery.php:2397, ../includes/Elements/Filterable_Gallery.php:2514, ../includes/Elements/Flip_Box.php:987, ../includes/Elements/Flip_Box.php:1100, ../includes/Elements/FluentForm.php:636, ../includes/Elements/FluentForm.php:832, ../includes/Elements/FluentForm.php:1549, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/FluentForm.php:1953, ../includes/Elements/FluentForm.php:2071, ../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:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:353, ../includes/Elements/Image_Accordion.php:463, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:817, ../includes/Elements/Info_Box.php:897, ../includes/Elements/Info_Box.php:1048, ../includes/Elements/Info_Box.php:1128, ../includes/Elements/Login_Register.php:2681, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:282, ../includes/Elements/Pricing_Table.php:1766, ../includes/Elements/Pricing_Table.php:1932, ../includes/Elements/Product_Grid.php:2155, ../includes/Elements/Team_Member.php:412, ../includes/Elements/Team_Member.php:500, ../includes/Elements/Testimonial.php:434, ../includes/Elements/Tooltip.php:429, ../includes/Elements/Tooltip.php:472, ../includes/Elements/Twitter_Feed.php:437, ../includes/Elements/Twitter_Feed.php:527, ../includes/Elements/Twitter_Feed.php:844, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1753, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:498, ../includes/Traits/Controls.php:1210, ../includes/Traits/Controls.php:1264, ../includes/Traits/Controls.php:1394
|
619 |
msgid "Border"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../includes/Elements/Advanced_Data_Table.php:347, ../includes/Elements/Advanced_Data_Table.php:1015, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1285, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:641, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Tabs.php:331, ../includes/Elements/Adv_Tabs.php:520, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:655, ../includes/Elements/Adv_Tabs.php:750, ../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:854, ../includes/Elements/Betterdocs_Category_Grid.php:951, ../includes/Elements/Betterdocs_Category_Grid.php:1393, ../includes/Elements/Betterdocs_Category_Grid.php:1492, ../includes/Elements/Betterdocs_Search_Form.php:198, ../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:1267, ../includes/Elements/Content_Ticker.php:444, ../includes/Elements/Content_Ticker.php:518, ../includes/Elements/Content_Ticker.php:675, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:333, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:353, ../includes/Elements/Event_Calendar.php:779, ../includes/Elements/Event_Calendar.php:846, ../includes/Elements/Event_Calendar.php:900, ../includes/Elements/Event_Calendar.php:1136, ../includes/Elements/Event_Calendar.php:1304, ../includes/Elements/Event_Calendar.php:1572, ../includes/Elements/Event_Calendar.php:1643, ../includes/Elements/Facebook_Feed.php:465, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Fancy_Text.php:518, ../includes/Elements/Feature_List.php:638, ../includes/Elements/Filterable_Gallery.php:876, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1055, ../includes/Elements/Filterable_Gallery.php:1135, ../includes/Elements/Filterable_Gallery.php:1339, ../includes/Elements/Filterable_Gallery.php:1833, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2188, ../includes/Elements/Filterable_Gallery.php:2323, ../includes/Elements/Filterable_Gallery.php:2419, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:825, ../includes/Elements/Flip_Box.php:886, ../includes/Elements/Flip_Box.php:1010, ../includes/Elements/Flip_Box.php:1123, ../includes/Elements/Flip_Box.php:1383, ../includes/Elements/FluentForm.php:499, ../includes/Elements/FluentForm.php:647, ../includes/Elements/FluentForm.php:1012, ../includes/Elements/FluentForm.php:1038, ../includes/Elements/FluentForm.php:1559, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/FluentForm.php:1961, ../includes/Elements/FluentForm.php:2015, ../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:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:361, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:1210, ../includes/Elements/Login_Register.php:1482, ../includes/Elements/Login_Register.php:1717, ../includes/Elements/Login_Register.php:1891, ../includes/Elements/Login_Register.php:2047, ../includes/Elements/Login_Register.php:2187, ../includes/Elements/Login_Register.php:2281, ../includes/Elements/Login_Register.php:2372, ../includes/Elements/Login_Register.php:2546, ../includes/Elements/Login_Register.php:2583, ../includes/Elements/Login_Register.php:2697, ../includes/Elements/Login_Register.php:3207, ../includes/Elements/Login_Register.php:3244, ../includes/Elements/Login_Register.php:3528, ../includes/Elements/Login_Register.php:3565, ../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:290, ../includes/Elements/Pricing_Table.php:786, ../includes/Elements/Pricing_Table.php:1540, ../includes/Elements/Pricing_Table.php:1789, ../includes/Elements/Pricing_Table.php:1940, ../includes/Elements/Product_Grid.php:892, ../includes/Elements/Product_Grid.php:1899, ../includes/Elements/Product_Grid.php:2255, ../includes/Elements/Product_Grid.php:2592, ../includes/Elements/Product_Grid.php:2787, ../includes/Elements/Product_Grid.php:2819, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:420, ../includes/Elements/Team_Member.php:519, ../includes/Elements/Team_Member.php:766, ../includes/Elements/Testimonial.php:453, ../includes/Elements/Tooltip.php:489, ../includes/Elements/Twitter_Feed.php:445, ../includes/Elements/Twitter_Feed.php:538, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Checkout.php:647, ../includes/Elements/Woo_Checkout.php:796, ../includes/Elements/Woo_Checkout.php:992, ../includes/Elements/Woo_Checkout.php:1240, ../includes/Elements/Woo_Checkout.php:1393, ../includes/Elements/Woo_Checkout.php:1516, ../includes/Elements/Woo_Checkout.php:1691, ../includes/Elements/Woo_Checkout.php:1899, ../includes/Elements/Woo_Checkout.php:2101, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2475, ../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/Table_of_Content.php:521, ../includes/Extensions/Table_of_Content.php:736, ../includes/Traits/Controls.php:1218, ../includes/Traits/Controls.php:1272, ../includes/Traits/Controls.php:1402, ../includes/Traits/Woo_Product_Comparable.php:355, ../includes/Traits/Woo_Product_Comparable.php:500, ../includes/Traits/Woo_Product_Comparable.php:1381
|
623 |
msgid "Border Radius"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: ../includes/Elements/Advanced_Data_Table.php:360, ../includes/Elements/Advanced_Data_Table.php:1423, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:658, ../includes/Elements/Event_Calendar.php:1596, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Product_Grid.php:852, ../includes/Elements/Product_Grid.php:880, ../includes/Elements/Product_Grid.php:2811, ../includes/Elements/Product_Grid.php:2846, ../includes/Elements/Progress_Bar.php:650, ../includes/Elements/Twitter_Feed.php:640, ../includes/Elements/Twitter_Feed.php:852, ../includes/Extensions/Table_of_Content.php:510, ../includes/Extensions/Table_of_Content.php:755, ../includes/Traits/Woo_Product_Comparable.php:1405
|
627 |
msgid "Box Shadow"
|
628 |
msgstr ""
|
629 |
|
631 |
msgid "Head"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../includes/Elements/Advanced_Data_Table.php:379, ../includes/Elements/Advanced_Data_Table.php:498, ../includes/Elements/Advanced_Data_Table.php:956, ../includes/Elements/Advanced_Data_Table.php:1106, ../includes/Elements/Advanced_Data_Table.php:1314, ../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:1311, ../includes/Elements/Contact_Form_7.php:1556, ../includes/Elements/Contact_Form_7.php:1613, ../includes/Elements/Event_Calendar.php:700, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:944, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1053, ../includes/Elements/Event_Calendar.php:1296, ../includes/Elements/Event_Calendar.php:1359, ../includes/Elements/Event_Calendar.php:1388, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1614, ../includes/Elements/Filterable_Gallery.php:1961, ../includes/Elements/Filterable_Gallery.php:2006, ../includes/Elements/Filterable_Gallery.php:2040, ../includes/Elements/Filterable_Gallery.php:2095, ../includes/Elements/Filterable_Gallery.php:2387, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/FluentForm.php:293, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:554, ../includes/Elements/FluentForm.php:792, ../includes/Elements/FluentForm.php:1119, ../includes/Elements/FluentForm.php:1174, ../includes/Elements/FluentForm.php:1278, ../includes/Elements/FluentForm.php:1364, ../includes/Elements/FluentForm.php:1430, ../includes/Elements/FluentForm.php:1603, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/FluentForm.php:1933, ../includes/Elements/FluentForm.php:2082, ../includes/Elements/FluentForm.php:2131, ../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:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:859, ../includes/Elements/GravityForms.php:948, ../includes/Elements/GravityForms.php:1002, ../includes/Elements/GravityForms.php:1138, ../includes/Elements/GravityForms.php:1598, ../includes/Elements/GravityForms.php:1933, ../includes/Elements/GravityForms.php:2154, ../includes/Elements/GravityForms.php:2347, ../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:371, ../includes/Elements/Post_Grid.php:471, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:625, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Post_Timeline.php:292, ../includes/Elements/Product_Grid.php:2315, ../includes/Elements/Product_Grid.php:2345, ../includes/Elements/Product_Grid.php:2387, ../includes/Elements/Product_Grid.php:2453, ../includes/Elements/Product_Grid.php:2492, ../includes/Elements/Product_Grid.php:2549, ../includes/Elements/Product_Grid.php:2666, ../includes/Elements/Progress_Bar.php:670, ../includes/Elements/Woo_Checkout.php:1296, ../includes/Elements/Woo_Checkout.php:1594, ../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:1064, ../includes/Traits/Woo_Product_Comparable.php:1182
|
635 |
msgid "Typography"
|
636 |
msgstr ""
|
637 |
|
639 |
msgid "Text Alignment"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:510, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1083, ../includes/Elements/Adv_Accordion.php:138, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../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:333, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:442, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:746, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Dual_Color_Header.php:189, ../includes/Elements/Event_Calendar.php:968, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Fancy_Text.php:172, ../includes/Elements/Feature_List.php:302, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/Filterable_Gallery.php:1296, ../includes/Elements/Filterable_Gallery.php:1679, ../includes/Elements/Flip_Box.php:368, ../includes/Elements/Flip_Box.php:597, ../includes/Elements/FluentForm.php:239, ../includes/Elements/FluentForm.php:434, ../includes/Elements/FluentForm.php:580, ../includes/Elements/FluentForm.php:1211, ../includes/Elements/FluentForm.php:1456, ../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:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:108, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:673, ../includes/Elements/Login_Register.php:706, ../includes/Elements/Login_Register.php:2490, ../includes/Elements/Login_Register.php:3158, ../includes/Elements/Login_Register.php:3478, ../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:448, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Grid.php:671, ../includes/Elements/Post_Grid.php:766, ../includes/Elements/Post_Grid.php:849, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:261, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:644, ../includes/Elements/Product_Grid.php:962, ../includes/Elements/Product_Grid.php:1633, ../includes/Elements/Product_Grid.php:2076, ../includes/Elements/Progress_Bar.php:319, ../includes/Elements/Progress_Bar.php:530, ../includes/Elements/Team_Member.php:379, ../includes/Elements/Testimonial.php:313, ../includes/Elements/Tooltip.php:175, ../includes/Elements/Tooltip.php:281, ../includes/Elements/Tooltip.php:370, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Table_of_Content.php:415, ../includes/Traits/Controls.php:597, ../includes/Traits/Controls.php:1483, ../includes/Traits/Controls.php:1534, ../includes/Traits/Controls.php:1535
|
643 |
msgid "Left"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: ../includes/Elements/Advanced_Data_Table.php:395, ../includes/Elements/Advanced_Data_Table.php:514, ../includes/Elements/Advanced_Data_Table.php:940, ../includes/Elements/Advanced_Data_Table.php:1087, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../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:446, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:525, ../includes/Elements/Data_Table.php:750, ../includes/Elements/Data_Table.php:999, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:586, ../includes/Elements/Event_Calendar.php:972, ../includes/Elements/Event_Calendar.php:1104, ../includes/Elements/Fancy_Text.php:176, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:372, ../includes/Elements/Flip_Box.php:601, ../includes/Elements/FluentForm.php:243, ../includes/Elements/FluentForm.php:438, ../includes/Elements/FluentForm.php:584, ../includes/Elements/FluentForm.php:1215, ../includes/Elements/FluentForm.php:1460, ../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:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:112, ../includes/Elements/Image_Accordion.php:135, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2494, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3162, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3459, ../includes/Elements/Login_Register.php:3482, ../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:452, ../includes/Elements/Post_Grid.php:607, ../includes/Elements/Post_Grid.php:675, ../includes/Elements/Post_Grid.php:770, ../includes/Elements/Post_Grid.php:853, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:648, ../includes/Elements/Product_Grid.php:966, ../includes/Elements/Product_Grid.php:2080, ../includes/Elements/Progress_Bar.php:323, ../includes/Elements/Progress_Bar.php:534, ../includes/Elements/Team_Member.php:383, ../includes/Elements/Testimonial.php:317, ../includes/Elements/Tooltip.php:179, ../includes/Elements/Tooltip.php:374, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:596, ../includes/Traits/Controls.php:1487
|
647 |
msgid "Center"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: ../includes/Elements/Advanced_Data_Table.php:399, ../includes/Elements/Advanced_Data_Table.php:518, ../includes/Elements/Advanced_Data_Table.php:944, ../includes/Elements/Advanced_Data_Table.php:1091, ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../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:334, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:450, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:529, ../includes/Elements/Data_Table.php:754, ../includes/Elements/Data_Table.php:1003, ../includes/Elements/Dual_Color_Header.php:197, ../includes/Elements/Event_Calendar.php:976, ../includes/Elements/Event_Calendar.php:1108, ../includes/Elements/Fancy_Text.php:180, ../includes/Elements/Feature_List.php:310, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:376, ../includes/Elements/Flip_Box.php:605, ../includes/Elements/FluentForm.php:247, ../includes/Elements/FluentForm.php:442, ../includes/Elements/FluentForm.php:588, ../includes/Elements/FluentForm.php:1219, ../includes/Elements/FluentForm.php:1464, ../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:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:116, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:677, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3486, ../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:456, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Grid.php:679, ../includes/Elements/Post_Grid.php:774, ../includes/Elements/Post_Grid.php:857, ../includes/Elements/Post_Timeline.php:334, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Pricing_Table.php:262, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Pricing_Table.php:828, ../includes/Elements/Pricing_Table.php:853, ../includes/Elements/Product_Grid.php:652, ../includes/Elements/Product_Grid.php:970, ../includes/Elements/Product_Grid.php:1637, ../includes/Elements/Product_Grid.php:2084, ../includes/Elements/Progress_Bar.php:327, ../includes/Elements/Progress_Bar.php:538, ../includes/Elements/Team_Member.php:387, ../includes/Elements/Testimonial.php:321, ../includes/Elements/Tooltip.php:183, ../includes/Elements/Tooltip.php:282, ../includes/Elements/Tooltip.php:378, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Table_of_Content.php:416, ../includes/Traits/Controls.php:595, ../includes/Traits/Controls.php:1491, ../includes/Traits/Controls.php:1534, ../includes/Traits/Controls.php:1535
|
651 |
msgid "Right"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../includes/Elements/Advanced_Data_Table.php:414, ../includes/Elements/Advanced_Data_Table.php:533, ../includes/Elements/Advanced_Data_Table.php:627, ../includes/Elements/Advanced_Data_Table.php:658, ../includes/Elements/Advanced_Data_Table.php:689, ../includes/Elements/Advanced_Data_Table.php:720, ../includes/Elements/Advanced_Data_Table.php:751, ../includes/Elements/Advanced_Data_Table.php:782, ../includes/Elements/Advanced_Data_Table.php:964, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1230, ../includes/Elements/Adv_Accordion.php:534, ../includes/Elements/Adv_Accordion.php:607, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:763, ../includes/Elements/Adv_Tabs.php:487, ../includes/Elements/Adv_Tabs.php:553, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:702, ../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:1245, ../includes/Elements/Contact_Form_7.php:1351, ../includes/Elements/Contact_Form_7.php:1415, ../includes/Elements/Contact_Form_7.php:1479, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Contact_Form_7.php:1622, ../includes/Elements/Content_Ticker.php:400, ../includes/Elements/Content_Ticker.php:476, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:275, ../includes/Elements/Creative_Button.php:367, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:957, ../includes/Elements/Data_Table.php:974, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1247, ../includes/Elements/Filterable_Gallery.php:956, ../includes/Elements/Filterable_Gallery.php:1022, ../includes/Elements/Filterable_Gallery.php:2497, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:277, ../includes/Elements/FluentForm.php:338, ../includes/Elements/FluentForm.php:542, ../includes/Elements/FluentForm.php:623, ../includes/Elements/FluentForm.php:872, ../includes/Elements/FluentForm.php:1536, ../includes/Elements/FluentForm.php:1642, ../includes/Elements/FluentForm.php:2059, ../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:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Login_Register.php:2519, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3002, ../includes/Elements/Login_Register.php:3187, ../includes/Elements/Login_Register.php:3224, ../includes/Elements/Login_Register.php:3508, ../includes/Elements/Login_Register.php:3545, ../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:1892, ../includes/Elements/Pricing_Table.php:1961, ../includes/Elements/Product_Grid.php:2130, ../includes/Elements/Product_Grid.php:2168, ../includes/Elements/Product_Grid.php:2212, ../includes/Elements/Tooltip.php:408, ../includes/Elements/Tooltip.php:451, ../includes/Elements/Tooltip.php:624, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../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:579, ../includes/Extensions/Table_of_Content.php:894, ../includes/Extensions/Table_of_Content.php:917, ../includes/Extensions/Table_of_Content.php:943, ../includes/Traits/Controls.php:1184, ../includes/Traits/Controls.php:1239, ../includes/Traits/Controls.php:1369, ../includes/Traits/Controls.php:1431
|
655 |
msgid "Text Color"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../includes/Elements/Advanced_Data_Table.php:428, ../includes/Elements/Advanced_Data_Table.php:569, ../includes/Elements/Advanced_Data_Table.php:642, ../includes/Elements/Advanced_Data_Table.php:673, ../includes/Elements/Advanced_Data_Table.php:704, ../includes/Elements/Advanced_Data_Table.php:735, ../includes/Elements/Advanced_Data_Table.php:766, ../includes/Elements/Advanced_Data_Table.php:797, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1173, ../includes/Elements/Advanced_Data_Table.php:1244, ../includes/Elements/Advanced_Data_Table.php:1339, ../includes/Elements/Advanced_Data_Table.php:1369, ../includes/Elements/Adv_Accordion.php:515, ../includes/Elements/Adv_Accordion.php:588, ../includes/Elements/Adv_Accordion.php:661, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Accordion.php:914, ../includes/Elements/Adv_Accordion.php:960, ../includes/Elements/Adv_Accordion.php:1007, ../includes/Elements/Adv_Tabs.php:468, ../includes/Elements/Adv_Tabs.php:683, ../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:1233, ../includes/Elements/Contact_Form_7.php:1339, ../includes/Elements/Contact_Form_7.php:1464, ../includes/Elements/Contact_Form_7.php:1525, ../includes/Elements/Content_Ticker.php:388, ../includes/Elements/Content_Ticker.php:465, ../includes/Elements/Content_Ticker.php:640, ../includes/Elements/Content_Ticker.php:696, ../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:288, ../includes/Elements/Creative_Button.php:380, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:647, ../includes/Elements/Data_Table.php:1084, ../includes/Elements/Dual_Color_Header.php:308, ../includes/Elements/Event_Calendar.php:1226, ../includes/Elements/Filterable_Gallery.php:831, ../includes/Elements/Filterable_Gallery.php:968, ../includes/Elements/Filterable_Gallery.php:1034, ../includes/Elements/Filterable_Gallery.php:1180, ../includes/Elements/Filterable_Gallery.php:1370, ../includes/Elements/Filterable_Gallery.php:1400, ../includes/Elements/Filterable_Gallery.php:1505, ../includes/Elements/Filterable_Gallery.php:1521, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:2481, ../includes/Elements/Filterable_Gallery.php:2674, ../includes/Elements/FluentForm.php:611, ../includes/Elements/FluentForm.php:819, ../includes/Elements/FluentForm.php:1253, ../includes/Elements/FluentForm.php:1339, ../includes/Elements/FluentForm.php:1524, ../includes/Elements/FluentForm.php:1630, ../includes/Elements/FluentForm.php:2048, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:316, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1032, ../includes/Elements/Info_Box.php:1094, ../includes/Elements/Info_Box.php:1244, ../includes/Elements/Info_Box.php:1290, ../includes/Elements/Login_Register.php:1497, ../includes/Elements/Login_Register.php:1630, ../includes/Elements/Login_Register.php:1732, ../includes/Elements/Login_Register.php:1906, ../includes/Elements/Login_Register.php:2262, ../includes/Elements/Login_Register.php:2353, ../includes/Elements/Login_Register.php:2533, ../includes/Elements/Login_Register.php:2571, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3516, ../includes/Elements/Login_Register.php:3553, ../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:923, ../includes/Elements/Pricing_Table.php:741, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Pricing_Table.php:1407, ../includes/Elements/Pricing_Table.php:1476, ../includes/Elements/Pricing_Table.php:1642, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:1742, ../includes/Elements/Product_Grid.php:1850, ../includes/Elements/Product_Grid.php:1956, ../includes/Elements/Product_Grid.php:2142, ../includes/Elements/Product_Grid.php:2180, ../includes/Elements/Product_Grid.php:2224, ../includes/Elements/Product_Grid.php:2470, ../includes/Elements/Product_Grid.php:2512, ../includes/Elements/Product_Grid.php:2573, ../includes/Elements/Product_Grid.php:2624, ../includes/Elements/Progress_Bar.php:576, ../includes/Elements/Team_Member.php:730, ../includes/Elements/Tooltip.php:397, ../includes/Elements/Tooltip.php:440, ../includes/Elements/Tooltip.php:613, ../includes/Elements/Twitter_Feed.php:390, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:617, ../includes/Elements/Woo_Checkout.php:732, ../includes/Elements/Woo_Checkout.php:854, ../includes/Elements/Woo_Checkout.php:1312, ../includes/Elements/Woo_Checkout.php:1352, ../includes/Elements/Woo_Checkout.php:1610, ../includes/Elements/Woo_Checkout.php:1650, ../includes/Elements/Woo_Checkout.php:2154, ../includes/Elements/Woo_Checkout.php:2284, ../includes/Elements/Woo_Checkout.php:2394, ../includes/Elements/Woo_Checkout.php:2434, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:566, ../includes/Extensions/Table_of_Content.php:712, ../includes/Extensions/Table_of_Content.php:776, ../includes/Traits/Controls.php:1381, ../includes/Traits/Controls.php:1443, ../includes/Traits/Woo_Product_Comparable.php:367, ../includes/Traits/Woo_Product_Comparable.php:473
|
659 |
msgid "Background Color"
|
660 |
msgstr ""
|
661 |
|
663 |
msgid "Cell Border"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: ../includes/Elements/Advanced_Data_Table.php:467, ../includes/Elements/Advanced_Data_Table.php:812, ../includes/Elements/Advanced_Data_Table.php:896, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Advanced_Data_Table.php:1431, ../includes/Elements/Adv_Accordion.php:331, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:781, ../includes/Elements/Adv_Tabs.php:300, ../includes/Elements/Adv_Tabs.php:442, ../includes/Elements/Adv_Tabs.php:720, ../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:1405, ../includes/Elements/Betterdocs_Search_Form.php:124, ../includes/Elements/Betterdocs_Search_Form.php:432, ../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:1279, ../includes/Elements/Contact_Form_7.php:1695, ../includes/Elements/Content_Ticker.php:432, ../includes/Elements/Content_Ticker.php:495, ../includes/Elements/Content_Ticker.php:736, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:575, ../includes/Elements/Data_Table.php:860, ../includes/Elements/Dual_Color_Header.php:320, ../includes/Elements/Facebook_Feed.php:594, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:692, ../includes/Elements/Fancy_Text.php:483, ../includes/Elements/Feature_List.php:595, ../includes/Elements/Filterable_Gallery.php:843, ../includes/Elements/Filterable_Gallery.php:920, ../includes/Elements/Filterable_Gallery.php:1102, ../includes/Elements/Filterable_Gallery.php:1192, ../includes/Elements/Filterable_Gallery.php:1536, ../includes/Elements/Filterable_Gallery.php:1747, ../includes/Elements/Filterable_Gallery.php:2598, ../includes/Elements/Flip_Box.php:998, ../includes/Elements/Flip_Box.php:1111, ../includes/Elements/Flip_Box.php:1347, ../includes/Elements/FluentForm.php:760, ../includes/Elements/FluentForm.php:1128, ../includes/Elements/FluentForm.php:1183, ../includes/Elements/FluentForm.php:1306, ../includes/Elements/FluentForm.php:1391, ../includes/Elements/FluentForm.php:1571, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2139, ../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:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:328, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1460, ../includes/Elements/Login_Register.php:2025, ../includes/Elements/Login_Register.php:2164, ../includes/Elements/Login_Register.php:2237, ../includes/Elements/Login_Register.php:2328, ../includes/Elements/Login_Register.php:2430, ../includes/Elements/Login_Register.php:2466, ../includes/Elements/Login_Register.php:2628, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3399, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:753, ../includes/Elements/Pricing_Table.php:1518, ../includes/Elements/Pricing_Table.php:1823, ../includes/Elements/Product_Grid.php:755, ../includes/Elements/Product_Grid.php:1006, ../includes/Elements/Product_Grid.php:1404, ../includes/Elements/Team_Member.php:486, ../includes/Elements/Testimonial.php:420, ../includes/Elements/Tooltip.php:342, ../includes/Elements/Tooltip.php:591, ../includes/Elements/Twitter_Feed.php:420, ../includes/Elements/Twitter_Feed.php:479, ../includes/Elements/Twitter_Feed.php:512, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:628, ../includes/Elements/Woo_Checkout.php:1220, ../includes/Elements/Woo_Checkout.php:1413, ../includes/Elements/Woo_Checkout.php:1543, ../includes/Elements/Woo_Checkout.php:1711, ../includes/Elements/Woo_Checkout.php:1926, ../includes/Elements/Woo_Checkout.php:2176, ../includes/Elements/Woo_Checkout.php:2507, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:601, ../includes/Extensions/Table_of_Content.php:789, ../includes/Traits/Controls.php:1288, ../includes/Traits/Controls.php:1333, ../includes/Traits/Woo_Product_Comparable.php:339, ../includes/Traits/Woo_Product_Comparable.php:984, ../includes/Traits/Woo_Product_Comparable.php:1133, ../includes/Traits/Woo_Product_Comparable.php:1601
|
667 |
msgid "Padding"
|
668 |
msgstr ""
|
669 |
|
719 |
msgid "Margin Bottom"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: ../includes/Elements/Advanced_Data_Table.php:931, ../includes/Elements/Advanced_Data_Table.php:1079, ../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:97, ../includes/Elements/Data_Table.php:515, ../includes/Elements/Dual_Color_Header.php:184, ../includes/Elements/Dual_Color_Header.php:578, ../includes/Elements/Event_Calendar.php:964, ../includes/Elements/Event_Calendar.php:1096, ../includes/Elements/Fancy_Text.php:168, ../includes/Elements/Filterable_Gallery.php:760, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:576, ../includes/Elements/FluentForm.php:1207, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Login_Register.php:3154, ../includes/Elements/Login_Register.php:3474, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:444, ../includes/Elements/Post_Grid.php:762, ../includes/Elements/Post_Grid.php:845, ../includes/Elements/Product_Grid.php:640, ../includes/Elements/Product_Grid.php:958, ../includes/Elements/Product_Grid.php:1629, ../includes/Elements/Product_Grid.php:2072, ../includes/Elements/Progress_Bar.php:315, ../includes/Elements/Progress_Bar.php:526, ../includes/Elements/Tooltip.php:170, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133
|
723 |
msgid "Alignment"
|
724 |
msgstr ""
|
725 |
|
727 |
msgid "Margin"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1155, ../includes/Elements/Advanced_Data_Table.php:1321, ../includes/Elements/Adv_Accordion.php:511, ../includes/Elements/Adv_Accordion.php:894, ../includes/Elements/Adv_Tabs.php:464, ../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:799, ../includes/Elements/Betterdocs_Category_Grid.php:1347, ../includes/Elements/Betterdocs_Search_Form.php:390, ../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:1226, ../includes/Elements/Content_Ticker.php:633, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:587, ../includes/Elements/Data_Table.php:780, ../includes/Elements/Data_Table.php:952, ../includes/Elements/Event_Calendar.php:741, ../includes/Elements/Filterable_Gallery.php:951, ../includes/Elements/Filterable_Gallery.php:1716, ../includes/Elements/Filterable_Gallery.php:2470, ../includes/Elements/Flip_Box.php:1329, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:939, ../includes/Elements/FluentForm.php:1517, ../includes/Elements/FluentForm.php:1689, ../includes/Elements/FluentForm.php:1906, ../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:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:536, ../includes/Elements/Info_Box.php:764, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1226, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2516, ../includes/Elements/Login_Register.php:3184, ../includes/Elements/Login_Register.php:3347, ../includes/Elements/Login_Register.php:3505, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1887, ../includes/Elements/Product_Grid.php:810, ../includes/Elements/Product_Grid.php:1441, ../includes/Elements/Product_Grid.php:1832, ../includes/Elements/Product_Grid.php:2125, ../includes/Elements/Product_Grid.php:2556, ../includes/Elements/Team_Member.php:713, ../includes/Elements/Tooltip.php:393, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:943, ../includes/Elements/Woo_Checkout.php:1086, ../includes/Elements/Woo_Checkout.php:1305, ../includes/Elements/Woo_Checkout.php:1603, ../includes/Elements/Woo_Checkout.php:2063, ../includes/Elements/Woo_Checkout.php:2233, ../includes/Elements/Woo_Checkout.php:2387, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:887, ../includes/Traits/Controls.php:1177, ../includes/Traits/Controls.php:1364, ../includes/Traits/Woo_Product_Comparable.php:825, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1629
|
731 |
msgid "Normal"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1225, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:940, ../includes/Elements/Adv_Tabs.php:530, ../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:871, ../includes/Elements/Betterdocs_Category_Grid.php:1431, ../includes/Elements/Betterdocs_Search_Form.php:474, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1332, ../includes/Elements/Content_Ticker.php:689, ../includes/Elements/Creative_Button.php:350, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:627, ../includes/Elements/Data_Table.php:871, ../includes/Elements/Data_Table.php:969, ../includes/Elements/Event_Calendar.php:808, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2663, ../includes/Elements/Flip_Box.php:1411, ../includes/Elements/FluentForm.php:1623, ../includes/Elements/FluentForm.php:1987, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:835, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1272, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3221, ../includes/Elements/Login_Register.php:3542, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:860, ../includes/Elements/Product_Grid.php:1510, ../includes/Elements/Product_Grid.php:1939, ../includes/Elements/Product_Grid.php:2163, ../includes/Elements/Product_Grid.php:2607, ../includes/Elements/Team_Member.php:790, ../includes/Elements/Tooltip.php:436, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:916, ../includes/Elements/Woo_Checkout.php:960, ../includes/Elements/Woo_Checkout.php:1102, ../includes/Elements/Woo_Checkout.php:1345, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:2079, ../includes/Elements/Woo_Checkout.php:2427, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1232, ../includes/Traits/Controls.php:1426, ../includes/Traits/Woo_Product_Comparable.php:925, ../includes/Traits/Woo_Product_Comparable.php:1292, ../includes/Traits/Woo_Product_Comparable.php:1679
|
735 |
msgid "Hover"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1326, ../includes/Elements/Advanced_Data_Table.php:1356, ../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:805, ../includes/Elements/Betterdocs_Category_Grid.php:902, ../includes/Elements/Betterdocs_Category_Grid.php:1005, ../includes/Elements/Betterdocs_Category_Grid.php:1085, ../includes/Elements/Betterdocs_Category_Grid.php:1161, ../includes/Elements/Betterdocs_Category_Grid.php:1238, ../includes/Elements/Betterdocs_Category_Grid.php:1361, ../includes/Elements/Betterdocs_Category_Grid.php:1460, ../includes/Elements/Betterdocs_Search_Form.php:238, ../includes/Elements/Betterdocs_Search_Form.php:275, ../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:652, ../includes/Elements/Content_Ticker.php:708, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:592, ../includes/Elements/Data_Table.php:632, ../includes/Elements/Data_Table.php:1069, ../includes/Elements/Dual_Color_Header.php:468, ../includes/Elements/Dual_Color_Header.php:541, ../includes/Elements/Dual_Color_Header.php:641, ../includes/Elements/Event_Calendar.php:708, ../includes/Elements/Event_Calendar.php:748, ../includes/Elements/Event_Calendar.php:815, ../includes/Elements/Event_Calendar.php:869, ../includes/Elements/Event_Calendar.php:952, ../includes/Elements/Event_Calendar.php:1027, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1170, ../includes/Elements/Event_Calendar.php:1536, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Facebook_Feed.php:884, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:960, ../includes/Elements/Facebook_Feed.php:1013, ../includes/Elements/Facebook_Feed.php:1051, ../includes/Elements/Facebook_Feed.php:1089, ../includes/Elements/Facebook_Feed.php:1121, ../includes/Elements/Fancy_Text.php:344, ../includes/Elements/Feature_List.php:540, ../includes/Elements/Feature_List.php:761, ../includes/Elements/Feature_List.php:795, ../includes/Elements/Filterable_Gallery.php:1213, ../includes/Elements/Filterable_Gallery.php:1253, ../includes/Elements/Filterable_Gallery.php:1575, ../includes/Elements/Filterable_Gallery.php:1590, ../includes/Elements/Filterable_Gallery.php:1635, ../includes/Elements/Filterable_Gallery.php:1650, ../includes/Elements/Filterable_Gallery.php:1735, ../includes/Elements/Filterable_Gallery.php:1873, ../includes/Elements/Filterable_Gallery.php:1949, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2028, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2352, ../includes/Elements/Flip_Box.php:944, ../includes/Elements/Flip_Box.php:1057, ../includes/Elements/Flip_Box.php:1184, ../includes/Elements/Flip_Box.php:1215, ../includes/Elements/Flip_Box.php:1253, ../includes/Elements/Flip_Box.php:1285, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/Flip_Box.php:1417, ../includes/Elements/FluentForm.php:413, ../includes/Elements/FluentForm.php:949, ../includes/Elements/FluentForm.php:1065, ../includes/Elements/FluentForm.php:1106, ../includes/Elements/FluentForm.php:1161, ../includes/Elements/FluentForm.php:1265, ../includes/Elements/FluentForm.php:1327, ../includes/Elements/FluentForm.php:1921, ../includes/Elements/FluentForm.php:1994, ../includes/Elements/FluentForm.php:2115, ../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:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:495, ../includes/Elements/Image_Accordion.php:524, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2252, ../includes/Elements/Login_Register.php:2343, ../includes/Elements/Login_Register.php:2757, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:359, ../includes/Elements/Post_Grid.php:432, ../includes/Elements/Post_Grid.php:824, ../includes/Elements/Pricing_Table.php:888, ../includes/Elements/Pricing_Table.php:952, ../includes/Elements/Pricing_Table.php:1043, ../includes/Elements/Pricing_Table.php:1072, ../includes/Elements/Pricing_Table.php:1113, ../includes/Elements/Pricing_Table.php:1142, ../includes/Elements/Pricing_Table.php:1182, ../includes/Elements/Pricing_Table.php:1217, ../includes/Elements/Pricing_Table.php:1374, ../includes/Elements/Pricing_Table.php:1506, ../includes/Elements/Product_Grid.php:1269, ../includes/Elements/Product_Grid.php:1837, ../includes/Elements/Product_Grid.php:1944, ../includes/Elements/Product_Grid.php:2281, ../includes/Elements/Product_Grid.php:2460, ../includes/Elements/Product_Grid.php:2500, ../includes/Elements/Product_Grid.php:2561, ../includes/Elements/Product_Grid.php:2612, ../includes/Elements/Product_Grid.php:2765, ../includes/Elements/Progress_Bar.php:405, ../includes/Elements/Progress_Bar.php:465, ../includes/Elements/Twitter_Feed.php:671, ../includes/Elements/Twitter_Feed.php:700, ../includes/Elements/Twitter_Feed.php:730, ../includes/Elements/Twitter_Feed.php:900, ../includes/Elements/Woo_Checkout.php:572, ../includes/Elements/Woo_Checkout.php:746, ../includes/Elements/Woo_Checkout.php:760, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:882, ../includes/Elements/Woo_Checkout.php:1055, ../includes/Elements/Woo_Checkout.php:1091, ../includes/Elements/Woo_Checkout.php:1107, ../includes/Elements/Woo_Checkout.php:1175, ../includes/Elements/Woo_Checkout.php:1274, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1461, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:1780, ../includes/Elements/Woo_Checkout.php:1824, ../includes/Elements/Woo_Checkout.php:1868, ../includes/Elements/Woo_Checkout.php:1974, ../includes/Elements/Woo_Checkout.php:2013, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2240, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Checkout.php:2296, ../includes/Elements/Woo_Checkout.php:2317, ../includes/Elements/Woo_Checkout.php:2406, ../includes/Elements/Woo_Checkout.php:2446, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1046, ../includes/Traits/Woo_Product_Comparable.php:47, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1359, ../includes/Traits/Woo_Product_Comparable.php:1471
|
739 |
msgid "Color"
|
740 |
msgstr ""
|
741 |
|
839 |
msgid "Content Type"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../includes/Elements/Adv_Accordion.php:238, ../includes/Elements/Adv_Tabs.php:122, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:676, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:244, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Data_Table.php:353, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1446, ../includes/Elements/Facebook_Feed.php:937, ../includes/Elements/Feature_List.php:190, ../includes/Elements/Feature_List.php:693, ../includes/Elements/Flip_Box.php:156, ../includes/Elements/Image_Accordion.php:96, ../includes/Elements/Image_Accordion.php:207, ../includes/Elements/Image_Accordion.php:515, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:2377, ../includes/Elements/Tooltip.php:94, ../includes/Elements/Tooltip.php:266
|
843 |
msgid "Content"
|
844 |
msgstr ""
|
845 |
|
879 |
msgid "Tab Style"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: ../includes/Elements/Adv_Accordion.php:400, ../includes/Elements/Adv_Accordion.php:832, ../includes/Elements/Adv_Tabs.php:396, ../includes/Elements/Creative_Button.php:496, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Dual_Color_Header.php:395, ../includes/Elements/Event_Calendar.php:1417, ../includes/Elements/Event_Calendar.php:1484, ../includes/Elements/Feature_List.php:573, ../includes/Elements/Filterable_Gallery.php:1771, ../includes/Elements/Filterable_Gallery.php:2125, ../includes/Elements/Filterable_Gallery.php:2558, ../includes/Elements/Flip_Box.php:959, ../includes/Elements/Flip_Box.php:1072, ../includes/Elements/Info_Box.php:935, ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Login_Register.php:2821, ../includes/Elements/Pricing_Table.php:1241, ../includes/Elements/Pricing_Table.php:1676, ../includes/Elements/Pricing_Table.php:1847, ../includes/Elements/Product_Grid.php:1219, ../includes/Elements/Product_Grid.php:2713, ../includes/Elements/Team_Member.php:642, ../includes/Elements/Tooltip.php:199, ../includes/Extensions/Table_of_Content.php:658, ../includes/Traits/Woo_Product_Comparable.php:1332
|
883 |
msgid "Icon Size"
|
884 |
msgstr ""
|
885 |
|
895 |
msgid "Icon Color"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../includes/Elements/Adv_Accordion.php:655, ../includes/Elements/Adv_Accordion.php:986, ../includes/Elements/Adv_Tabs.php:596, ../includes/Elements/Event_Calendar.php:862, ../includes/Elements/Filterable_Gallery.php:1017, ../includes/Elements/Product_Grid.php:2207, ../includes/Extensions/Table_of_Content.php:936
|
899 |
msgid "Active"
|
900 |
msgstr ""
|
901 |
|
919 |
msgid "Caret Color"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../includes/Elements/Adv_Tabs.php:79, ../includes/Elements/Countdown.php:148, ../includes/Elements/Facebook_Feed.php:168, ../includes/Elements/Filterable_Gallery.php:167, ../includes/Elements/Product_Grid.php:212, ../includes/Elements/Product_Grid.php:405, ../includes/Elements/Progress_Bar.php:73, ../includes/Elements/Progress_Bar.php:99, ../includes/Elements/Woo_Checkout.php:115, ../includes/Traits/Controls.php:402, ../includes/Traits/Controls.php:531, ../includes/Traits/Controls.php:591
|
923 |
msgid "Layout"
|
924 |
msgstr ""
|
925 |
|
1019 |
msgid "Show Icon"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: ../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:1302, ../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:298, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:93, ../includes/Elements/Dual_Color_Header.php:103, ../includes/Elements/Facebook_Feed.php:295, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:322, ../includes/Elements/Facebook_Feed.php:337, ../includes/Elements/Facebook_Feed.php:352, ../includes/Elements/Facebook_Feed.php:418, ../includes/Elements/Feature_List.php:359, ../includes/Elements/Filterable_Gallery.php:272, ../includes/Elements/FluentForm.php:166, ../includes/Elements/FluentForm.php:178, ../includes/Elements/FluentForm.php:204, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/FluentForm.php:1774, ../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:290, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:621, ../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:88, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1630, ../includes/Elements/Product_Grid.php:506, ../includes/Elements/Product_Grid.php:608, ../includes/Elements/Product_Grid.php:1433, ../includes/Elements/Product_Grid.php:2023, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:368, ../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:562, ../includes/Traits/Controls.php:624, ../includes/Traits/Controls.php:654, ../includes/Traits/Controls.php:762, ../includes/Traits/Controls.php:810, ../includes/Traits/Controls.php:878, ../includes/Traits/Controls.php:913, ../includes/Traits/Controls.php:944, ../includes/Traits/Controls.php:995, ../includes/Traits/Controls.php:1023, ../includes/Traits/Controls.php:1039, ../includes/Traits/Controls.php:1054
|
1023 |
msgid "Show"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: ../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:1303, ../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:299, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:251, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:94, ../includes/Elements/Dual_Color_Header.php:104, ../includes/Elements/Facebook_Feed.php:296, ../includes/Elements/Facebook_Feed.php:308, ../includes/Elements/Facebook_Feed.php:323, ../includes/Elements/Facebook_Feed.php:338, ../includes/Elements/Facebook_Feed.php:353, ../includes/Elements/Facebook_Feed.php:419, ../includes/Elements/Filterable_Gallery.php:273, ../includes/Elements/FluentForm.php:167, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:205, ../includes/Elements/FluentForm.php:1707, ../includes/Elements/FluentForm.php:1775, ../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:291, ../includes/Elements/Login_Register.php:329, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:620, ../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:89, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:507, ../includes/Elements/Product_Grid.php:609, ../includes/Elements/Product_Grid.php:1434, ../includes/Elements/Product_Grid.php:2024, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:369, ../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:563, ../includes/Traits/Controls.php:625, ../includes/Traits/Controls.php:655, ../includes/Traits/Controls.php:763, ../includes/Traits/Controls.php:811, ../includes/Traits/Controls.php:879, ../includes/Traits/Controls.php:914, ../includes/Traits/Controls.php:945, ../includes/Traits/Controls.php:996, ../includes/Traits/Controls.php:1024, ../includes/Traits/Controls.php:1040, ../includes/Traits/Controls.php:1055
|
1027 |
msgid "Hide"
|
1028 |
msgstr ""
|
1029 |
|
1079 |
msgid "Spacing"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: ../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:1145, ../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:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:691, ../includes/Elements/Event_Calendar.php:1350, ../includes/Elements/Feature_List.php:180, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:733, ../includes/Elements/Flip_Box.php:649, ../includes/Elements/FluentForm.php:132, ../includes/Elements/FluentForm.php:265, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:196, ../includes/Elements/Image_Accordion.php:486, ../includes/Elements/Login_Register.php:2213, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:138, ../includes/Elements/Pricing_Table.php:135, ../includes/Elements/Product_Grid.php:2306, ../includes/Elements/Progress_Bar.php:120, ../includes/Elements/Progress_Bar.php:679, ../includes/Elements/Woo_Checkout.php:323, ../includes/Elements/Woo_Checkout.php:433, ../includes/Elements/Woo_Checkout.php:527, ../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:39, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1070, ../includes/Traits/Woo_Product_Comparable.php:1188
|
1083 |
msgid "Title"
|
1084 |
msgstr ""
|
1085 |
|
1103 |
msgid "File Not Found"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:1181, ../includes/Elements/Betterdocs_Category_Box.php:1146, ../includes/Elements/Betterdocs_Category_Grid.php:1678, ../includes/Elements/Betterdocs_Category_Grid.php:1645, ../includes/Elements/Post_Grid.php:1041, ../includes/Elements/Post_Timeline.php:460, ../includes/Elements/Product_Grid.php:2919
|
1107 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
1108 |
msgstr ""
|
1109 |
|
1163 |
msgid "List"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:1016, ../includes/Elements/Filterable_Gallery.php:1225, ../includes/Elements/Filterable_Gallery.php:1605, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Pricing_Table.php:1774, ../includes/Elements/Product_Grid.php:2693, ../includes/Elements/Twitter_Feed.php:742
|
1167 |
msgid "Hover Color"
|
1168 |
msgstr ""
|
1169 |
|
1235 |
msgid "Close Icon"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:286, ../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:1363, ../includes/Elements/Content_Ticker.php:720, ../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:417, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:639, ../includes/Elements/Facebook_Feed.php:717, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:986, ../includes/Elements/FluentForm.php:1654, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2000, ../includes/Elements/Product_Grid.php:725, ../includes/Elements/Product_Grid.php:865, ../includes/Elements/Product_Grid.php:1559, ../includes/Elements/Product_Grid.php:1803, ../includes/Elements/Product_Grid.php:1983, ../includes/Elements/Product_Grid.php:2192, ../includes/Elements/Product_Grid.php:2236, ../includes/Elements/Product_Grid.php:2430, ../includes/Elements/Product_Grid.php:2524, ../includes/Elements/Product_Grid.php:2636, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:618, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:774, ../includes/Elements/Woo_Checkout.php:981, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1572, ../includes/Elements/Woo_Checkout.php:1674, ../includes/Elements/Woo_Checkout.php:1791, ../includes/Elements/Woo_Checkout.php:1835, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2068, ../includes/Elements/Woo_Checkout.php:2084, ../includes/Elements/Woo_Checkout.php:2346, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1455, ../includes/Traits/Woo_Product_Comparable.php:1710
|
1239 |
msgid "Border Color"
|
1240 |
msgstr ""
|
1241 |
|
1443 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1636, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:741, ../includes/Elements/Dual_Color_Header.php:821, ../includes/Elements/Event_Calendar.php:627, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Event_Calendar.php:826, ../includes/Elements/Event_Calendar.php:880, ../includes/Elements/Event_Calendar.php:992, ../includes/Elements/Event_Calendar.php:1084, ../includes/Elements/Event_Calendar.php:1182, ../includes/Elements/Event_Calendar.php:1548, ../includes/Elements/Event_Calendar.php:1657, ../includes/Elements/Facebook_Feed.php:477, ../includes/Elements/Facebook_Feed.php:490, ../includes/Elements/Facebook_Feed.php:565, ../includes/Elements/Facebook_Feed.php:578, ../includes/Elements/Facebook_Feed.php:663, ../includes/Elements/Facebook_Feed.php:676, ../includes/Elements/Facebook_Feed.php:747, ../includes/Elements/Facebook_Feed.php:785, ../includes/Elements/Facebook_Feed.php:825, ../includes/Elements/Fancy_Text.php:438, ../includes/Elements/Filterable_Gallery.php:2050, ../includes/Elements/Filterable_Gallery.php:2269, ../includes/Elements/Flip_Box.php:1371, ../includes/Elements/Flip_Box.php:1429, ../includes/Elements/FluentForm.php:1853, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:1943, ../includes/Elements/FluentForm.php:2006, ../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:351, ../includes/Elements/Pricing_Table.php:1919, ../includes/Elements/Pricing_Table.php:1988, ../includes/Elements/Product_Grid.php:1461, ../includes/Elements/Product_Grid.php:1475, ../includes/Elements/Product_Grid.php:1529, ../includes/Elements/Product_Grid.php:1542, ../includes/Elements/Product_Grid.php:2776, ../includes/Elements/Product_Grid.php:2833, ../includes/Elements/Progress_Bar.php:343, ../includes/Elements/Team_Member.php:745, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Twitter_Feed.php:378, ../includes/Elements/Twitter_Feed.php:630, ../includes/Elements/Woo_Checkout.php:1769, ../includes/Elements/Woo_Checkout.php:1813, ../includes/Elements/Woo_Checkout.php:1857, ../includes/Traits/Controls.php:1197, ../includes/Traits/Controls.php:1251, ../includes/Traits/Woo_Product_Comparable.php:1370, ../includes/Traits/Woo_Product_Comparable.php:1649, ../includes/Traits/Woo_Product_Comparable.php:1698
|
1447 |
msgid "Background"
|
1448 |
msgstr ""
|
1449 |
|
1491 |
msgid "After Submit Feedback"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: ../includes/Elements/Contact_Form_7.php:1658, ../includes/Elements/Dual_Color_Header.php:729, ../includes/Elements/Dual_Color_Header.php:809, ../includes/Elements/Flip_Box.php:870, ../includes/Elements/Info_Box.php:583, ../includes/Elements/Info_Box.php:638, ../includes/Elements/Info_Box.php:806, ../includes/Elements/Info_Box.php:886, ../includes/Elements/Info_Box.php:1022, ../includes/Elements/Info_Box.php:1117, ../includes/Elements/Post_Grid.php:323, ../includes/Elements/Product_Grid.php:1418, ../includes/Traits/Woo_Product_Comparable.php:1615
|
1495 |
msgid "Radius"
|
1496 |
msgstr ""
|
1497 |
|
1503 |
msgid "Template Layout"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:320, ../includes/Elements/Progress_Bar.php:158, ../includes/Traits/Controls.php:30
|
1507 |
msgid "Dynamic"
|
1508 |
msgstr ""
|
1509 |
|
1811 |
msgid "Space Below Container"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:436, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Flip_Box.php:1160, ../includes/Elements/Image_Accordion.php:478, ../includes/Elements/Info_Box.php:1329, ../includes/Elements/Product_Grid.php:1106, ../includes/Elements/Team_Member.php:536, ../includes/Elements/Twitter_Feed.php:655
|
1815 |
msgid "Color & Typography"
|
1816 |
msgstr ""
|
1817 |
|
1843 |
msgid "Title Style"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1367, ../includes/Elements/FluentForm.php:1807, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Post_Grid.php:573, ../includes/Elements/Post_Timeline.php:309, ../includes/Elements/Product_Grid.php:2323, ../includes/Elements/Product_Grid.php:2673, ../includes/Elements/Progress_Bar.php:688, ../includes/Elements/Twitter_Feed.php:567, ../includes/Elements/Woo_Checkout.php:2165, ../includes/Traits/Woo_Product_Comparable.php:1005, ../includes/Traits/Woo_Product_Comparable.php:1236
|
1847 |
msgid "Title Color"
|
1848 |
msgstr ""
|
1849 |
|
1947 |
msgid "Shikoba (Pro)"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: ../includes/Elements/Creative_Button.php:248, ../includes/Elements/Cta_Box.php:682, ../includes/Elements/Product_Grid.php:1431, ../includes/Elements/Team_Member.php:702
|
1951 |
msgid "Use Gradient Background"
|
1952 |
msgstr ""
|
1953 |
|
2543 |
msgid "Date Icon"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: ../includes/Elements/Event_Calendar.php:1464, ../includes/Elements/Info_Box.php:1465, ../includes/Elements/Product_Grid.php:2395, ../includes/Elements/Product_Grid.php:2683, ../includes/Elements/Twitter_Feed.php:577
|
2547 |
msgid "Content Color"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: ../includes/Elements/Event_Calendar.php:1475, ../includes/Elements/Product_Grid.php:2704, ../includes/Traits/Woo_Product_Comparable.php:1323
|
2551 |
msgid " Close Button"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: ../includes/Elements/Event_Calendar.php:1510, ../includes/Elements/Product_Grid.php:2739, ../includes/Extensions/Table_of_Content.php:676
|
2555 |
msgid "Button Size"
|
2556 |
msgstr ""
|
2557 |
|
2703 |
msgid "Show Preview Description"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: ../includes/Elements/Facebook_Feed.php:373, ../includes/Elements/Product_Grid.php:606, ../includes/Traits/Controls.php:622
|
2707 |
msgid "Show Load More"
|
2708 |
msgstr ""
|
2709 |
|
2711 |
msgid "Label"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: ../includes/Elements/Facebook_Feed.php:395, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Product_Grid.php:585, ../includes/Elements/Product_Grid.php:618, ../includes/Traits/Controls.php:638
|
2715 |
msgid "Load More"
|
2716 |
msgstr ""
|
2717 |
|
3091 |
msgid "Media"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: ../includes/Elements/Filterable_Gallery.php:227, ../includes/Elements/Product_Grid.php:1655, ../includes/Traits/Woo_Product_Comparable.php:866
|
3095 |
msgid "Buttons"
|
3096 |
msgstr ""
|
3097 |
|
3371 |
msgid "Dropdown"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: ../includes/Elements/Filterable_Gallery.php:2449, ../includes/Elements/Product_Grid.php:1921, ../includes/Elements/Product_Grid.php:2098, ../includes/Elements/Woo_Checkout.php:701, ../includes/Elements/Woo_Checkout.php:1014, ../includes/Elements/Woo_Checkout.php:1123, ../includes/Elements/Woo_Checkout.php:2529
|
3375 |
msgid "Top Spacing"
|
3376 |
msgstr ""
|
3377 |
|
3627 |
msgid "Border Height"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:124, ../includes/Elements/Product_Grid.php:2335, ../includes/Elements/Woo_Checkout.php:216, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:79
|
3631 |
msgid "Price"
|
3632 |
msgstr ""
|
3633 |
|
3635 |
msgid "Price Label Color"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: ../includes/Elements/GravityForms.php:1111, ../includes/Elements/Product_Grid.php:2353
|
3639 |
msgid "Price Color"
|
3640 |
msgstr ""
|
3641 |
|
3867 |
msgid "Login | Register Form"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: ../includes/Elements/Login_Register.php:180, ../includes/Elements/Login_Register.php:1061, ../includes/Elements/Login_Register.php:1062, ../includes/Elements/Login_Register.php:3946
|
3871 |
msgid "Username"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: ../includes/Elements/Login_Register.php:181, ../includes/Elements/Login_Register.php:1067, ../includes/Elements/Login_Register.php:1068, ../includes/Elements/Login_Register.php:3943
|
3875 |
msgid "Email"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: ../includes/Elements/Login_Register.php:182, ../includes/Elements/Login_Register.php:554, ../includes/Elements/Login_Register.php:555, ../includes/Elements/Login_Register.php:581, ../includes/Elements/Login_Register.php:582, ../includes/Elements/Login_Register.php:1074, ../includes/Elements/Login_Register.php:1075, ../includes/Elements/Login_Register.php:3754, ../includes/Elements/Login_Register.php:3944, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:329
|
3879 |
msgid "Password"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: ../includes/Elements/Login_Register.php:183, ../includes/Elements/Login_Register.php:3945
|
3883 |
msgid "Confirm Password"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: ../includes/Elements/Login_Register.php:184, ../includes/Elements/Login_Register.php:3947
|
3887 |
msgid "First Name"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: ../includes/Elements/Login_Register.php:185, ../includes/Elements/Login_Register.php:3948
|
3891 |
msgid "Last Name"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: ../includes/Elements/Login_Register.php:186, ../includes/Elements/Login_Register.php:3949
|
3895 |
msgid "Website"
|
3896 |
msgstr ""
|
3897 |
|
3903 |
msgid "Default Form Type"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: ../includes/Elements/Login_Register.php:246, ../includes/Elements/Login_Register.php:3362, ../includes/Elements/Login_Register.php:3957, ../includes/Elements/Woo_Checkout.php:388, ../includes/Elements/Woo_Checkout.php:1153, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:342, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:342
|
3907 |
msgid "Login"
|
3908 |
msgstr ""
|
3909 |
|
3936 |
msgid "Lost Password Text"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: ../includes/Elements/Login_Register.php:294, ../includes/Elements/Login_Register.php:3773
|
3940 |
msgid "Forgot password?"
|
3941 |
msgstr ""
|
3942 |
|
3964 |
msgid "Remember Me Field Text"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: ../includes/Elements/Login_Register.php:339, ../includes/Elements/Login_Register.php:3767
|
3968 |
msgid "Remember Me"
|
3969 |
msgstr ""
|
3970 |
|
4060 |
msgid "Username Label"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: ../includes/Elements/Login_Register.php:544, ../includes/Elements/Login_Register.php:545, ../includes/Elements/Login_Register.php:571, ../includes/Elements/Login_Register.php:572, ../includes/Elements/Login_Register.php:3753
|
4064 |
msgid "Username or Email Address"
|
4065 |
msgstr ""
|
4066 |
|
4399 |
msgid "Register Button"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: ../includes/Elements/Login_Register.php:1113, ../includes/Elements/Login_Register.php:3362, ../includes/Elements/Login_Register.php:3726
|
4403 |
msgid "Register"
|
4404 |
msgstr ""
|
4405 |
|
4799 |
msgstr ""
|
4800 |
|
4801 |
#. translators: %s user display name
|
4802 |
+
#: ../includes/Elements/Login_Register.php:3802
|
4803 |
msgid "You are already logged in as %s. "
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: ../includes/Elements/Login_Register.php:3803
|
4807 |
msgid "Logout"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: ../includes/Elements/Login_Register.php:4189
|
4811 |
msgid "Form Logo Image"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
#. translators: %s: Error fields
|
4815 |
+
#: ../includes/Elements/Login_Register.php:4308
|
4816 |
msgid "Error! you seem to have added %s field in the form more than once."
|
4817 |
msgstr ""
|
4818 |
|
4819 |
#. translators: %s: Error String
|
4820 |
+
#: ../includes/Elements/Login_Register.php:4324
|
4821 |
msgid "Error! It is required to use %s field."
|
4822 |
msgstr ""
|
4823 |
|
4824 |
#. translators: %s: Error String
|
4825 |
+
#: ../includes/Elements/Login_Register.php:4348
|
4826 |
msgid "Error! It is required to use %s field with %s Field."
|
4827 |
msgstr ""
|
4828 |
|
4850 |
msgid "Target Blank"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: ../includes/Elements/Post_Grid.php:178, ../includes/Elements/Product_Grid.php:572, ../includes/Traits/Controls.php:895, ../includes/Traits/Controls.php:929
|
4854 |
msgid "Read More"
|
4855 |
msgstr ""
|
4856 |
|
5030 |
msgid "Date Text Color"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
+
#: ../includes/Elements/Post_Timeline.php:464, ../includes/Elements/Product_Grid.php:2922
|
5034 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
5035 |
msgstr ""
|
5036 |
|
5314 |
msgid "Product ID"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
+
#: ../includes/Elements/Product_Grid.php:123, ../includes/Elements/Product_Grid.php:1114
|
5318 |
msgid "Product Title"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
+
#: ../includes/Elements/Product_Grid.php:125, ../includes/Elements/Product_Grid.php:2656, ../includes/Traits/Woo_Product_Comparable.php:43, ../includes/Traits/Woo_Product_Comparable.php:91
|
5322 |
msgid "SKU"
|
5323 |
msgstr ""
|
5324 |
|
5362 |
msgid "Layouts"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: ../includes/Elements/Product_Grid.php:226, ../includes/Elements/Product_Grid.php:248, ../includes/Elements/Product_Grid.php:1612, ../includes/Elements/Product_Grid.php:1693, ../includes/Elements/Team_Member.php:279
|
5366 |
msgid "Style Preset"
|
5367 |
msgstr ""
|
5368 |
|
5378 |
msgid "Overlay Style"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: ../includes/Elements/Product_Grid.php:234, ../includes/Elements/Product_Grid.php:1620, ../includes/Traits/Controls.php:423
|
5382 |
msgid "Preset 5"
|
5383 |
msgstr ""
|
5384 |
|
5394 |
msgid "Preset 8"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
+
#: ../includes/Elements/Product_Grid.php:252, ../includes/Elements/Product_Grid.php:1616, ../includes/Elements/Product_Grid.php:1697, ../includes/Traits/Controls.php:419
|
5398 |
msgid "Preset 1"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
+
#: ../includes/Elements/Product_Grid.php:253, ../includes/Elements/Product_Grid.php:1617, ../includes/Elements/Product_Grid.php:1698, ../includes/Traits/Controls.php:420
|
5402 |
msgid "Preset 2"
|
5403 |
msgstr ""
|
5404 |
|
5405 |
+
#: ../includes/Elements/Product_Grid.php:254, ../includes/Elements/Product_Grid.php:1618, ../includes/Traits/Controls.php:421
|
5406 |
msgid "Preset 3"
|
5407 |
msgstr ""
|
5408 |
|
5409 |
+
#: ../includes/Elements/Product_Grid.php:255, ../includes/Elements/Product_Grid.php:1619, ../includes/Traits/Controls.php:422
|
5410 |
msgid "Preset 4"
|
5411 |
msgstr ""
|
5412 |
|
5414 |
msgid "Product Settings"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
+
#: ../includes/Elements/Product_Grid.php:319, ../includes/Elements/Product_Grid.php:632, ../includes/Traits/Woo_Product_Comparable.php:152
|
5418 |
+
msgid "Products"
|
5419 |
+
msgstr ""
|
5420 |
+
|
5421 |
+
#: ../includes/Elements/Product_Grid.php:329, ../includes/Traits/Controls.php:78
|
5422 |
+
msgid "This option will only affect in <strong>Archive page of Elementor Theme Builder</strong> dynamically."
|
5423 |
+
msgstr ""
|
5424 |
+
|
5425 |
+
#: ../includes/Elements/Product_Grid.php:342, ../includes/Elements/Woo_Checkout.php:92, ../includes/Traits/Woo_Product_Comparable.php:123
|
5426 |
+
msgid "<strong>WooCommerce</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=woocommerce&tab=search&type=term\" target=\"_blank\">WooCommerce</a> first."
|
5427 |
+
msgstr ""
|
5428 |
+
|
5429 |
+
#: ../includes/Elements/Product_Grid.php:349
|
5430 |
msgid "Filter By"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: ../includes/Elements/Product_Grid.php:359, ../includes/Traits/Controls.php:171, ../includes/Traits/Controls.php:298, ../includes/Traits/Controls.php:349
|
5434 |
msgid "Order By"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: ../includes/Elements/Product_Grid.php:367, ../includes/Traits/Controls.php:182, ../includes/Traits/Controls.php:316, ../includes/Traits/Controls.php:359
|
5438 |
msgid "Order"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
+
#: ../includes/Elements/Product_Grid.php:378
|
5442 |
msgid "Products Count"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
+
#: ../includes/Elements/Product_Grid.php:387, ../includes/Traits/Controls.php:162, ../includes/Traits/Controls.php:289, ../includes/Traits/Controls.php:1565, ../includes/Traits/Controls.php:1604, ../includes/Traits/Controls.php:1667, ../includes/Traits/Controls.php:1705
|
5446 |
msgid "Offset"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
+
#: ../includes/Elements/Product_Grid.php:393
|
5450 |
msgid "Product Categories"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: ../includes/Elements/Product_Grid.php:413
|
5454 |
msgid "Show Product Rating?"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
+
#: ../includes/Elements/Product_Grid.php:426
|
5458 |
msgid "Show Product Price?"
|
5459 |
msgstr ""
|
5460 |
|
5461 |
+
#: ../includes/Elements/Product_Grid.php:438
|
5462 |
msgid "Short Description?"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
+
#: ../includes/Elements/Product_Grid.php:450, ../includes/Traits/Controls.php:849, ../includes/Traits/Controls.php:821
|
5466 |
msgid "Excerpt Words"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
+
#: ../includes/Elements/Product_Grid.php:463
|
5470 |
msgid "Expansion Indicator"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
+
#: ../includes/Elements/Product_Grid.php:485, ../includes/Traits/Woo_Product_Comparable.php:146
|
5474 |
msgid "Show Product Compare?"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
+
#: ../includes/Elements/Product_Grid.php:497
|
5478 |
msgid "Add To Cart"
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: ../includes/Elements/Product_Grid.php:504
|
5482 |
msgid "Show Add to cart custom text"
|
5483 |
msgstr ""
|
5484 |
|
5485 |
+
#: ../includes/Elements/Product_Grid.php:516
|
5486 |
msgid "Simple Product"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: ../includes/Elements/Product_Grid.php:520, ../includes/Elements/Product_Grid.php:559
|
5490 |
msgid "Buy Now"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
+
#: ../includes/Elements/Product_Grid.php:529
|
5494 |
msgid "Variable Product"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
+
#: ../includes/Elements/Product_Grid.php:533
|
5498 |
msgid "Select options"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
+
#: ../includes/Elements/Product_Grid.php:542
|
5502 |
msgid "Grouped Product"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
+
#: ../includes/Elements/Product_Grid.php:546
|
5506 |
msgid "View products"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: ../includes/Elements/Product_Grid.php:555
|
5510 |
msgid "External Product"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
+
#: ../includes/Elements/Product_Grid.php:568
|
5514 |
msgid "Default Product"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
+
#: ../includes/Elements/Product_Grid.php:615, ../includes/Traits/Controls.php:634, ../includes/Traits/Controls.php:891
|
5518 |
msgid "Label Text"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
+
#: ../includes/Elements/Product_Grid.php:689, ../includes/Elements/Team_Member.php:358
|
|
|
|
|
|
|
|
|
5522 |
msgid "Content Background Color"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: ../includes/Elements/Product_Grid.php:905
|
5526 |
msgid "Image Width(%)"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: ../includes/Elements/Product_Grid.php:925
|
5530 |
msgid "Product Details"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
+
#: ../includes/Elements/Product_Grid.php:1059
|
5534 |
msgid "Padding (PX)"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
+
#: ../includes/Elements/Product_Grid.php:1081
|
5538 |
msgid "Width (%)"
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: ../includes/Elements/Product_Grid.php:1122
|
5542 |
msgid "Product Title Color"
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: ../includes/Elements/Product_Grid.php:1142
|
5546 |
msgid "Product Price"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: ../includes/Elements/Product_Grid.php:1150
|
5550 |
msgid "Product Price Color"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: ../includes/Elements/Product_Grid.php:1170
|
5554 |
msgid "Star Rating"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: ../includes/Elements/Product_Grid.php:1178
|
5558 |
msgid "Rating Color"
|
5559 |
msgstr ""
|
5560 |
|
5561 |
+
#: ../includes/Elements/Product_Grid.php:1257
|
5562 |
msgid "Product Description"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: ../includes/Elements/Product_Grid.php:1297
|
5566 |
msgid "Sale Badge"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: ../includes/Elements/Product_Grid.php:1305
|
5570 |
msgid "Sale Badge Color"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: ../includes/Elements/Product_Grid.php:1317
|
5574 |
msgid "Sale Badge Background"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: ../includes/Elements/Product_Grid.php:1340
|
5578 |
msgid "Stock Out Badge"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: ../includes/Elements/Product_Grid.php:1348
|
5582 |
msgid "Stock Out Badge Color"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: ../includes/Elements/Product_Grid.php:1360
|
5586 |
msgid "Stock Out Badge Background"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
+
#: ../includes/Elements/Product_Grid.php:1387
|
5590 |
msgid "Add to Cart Button Styles"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
+
#: ../includes/Elements/Product_Grid.php:1446, ../includes/Elements/Product_Grid.php:1515
|
5594 |
msgid "Button Color"
|
5595 |
msgstr ""
|
5596 |
|
5597 |
+
#: ../includes/Elements/Product_Grid.php:1582
|
5598 |
msgid "Sale / Stock Out Badge"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
+
#: ../includes/Elements/Product_Grid.php:1682
|
5602 |
msgid "Show Quick view?"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: ../includes/Elements/Product_Grid.php:1772
|
5606 |
msgid "Icons Size"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: ../includes/Elements/Product_Grid.php:2021
|
5610 |
msgid "Show pagination"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: ../includes/Elements/Product_Grid.php:2033
|
5614 |
msgid "Previous Label"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
+
#: ../includes/Elements/Product_Grid.php:2034
|
5618 |
msgid "←"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
+
#: ../includes/Elements/Product_Grid.php:2044
|
5622 |
msgid "Next Label"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
+
#: ../includes/Elements/Product_Grid.php:2045
|
5626 |
msgid "→"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: ../includes/Elements/Product_Grid.php:2272
|
5630 |
msgid "Loader"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: ../includes/Elements/Product_Grid.php:2298
|
5634 |
msgid "Popup"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: ../includes/Elements/Product_Grid.php:2365
|
5638 |
msgid "Sale Price Color"
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: ../includes/Elements/Product_Grid.php:2407
|
5642 |
msgid "Review Link Color"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: ../includes/Elements/Product_Grid.php:2418
|
5646 |
msgid "Review Link Hover"
|
5647 |
msgstr ""
|
5648 |
|
5649 |
+
#: ../includes/Elements/Product_Grid.php:2443
|
5650 |
msgid "Sale"
|
5651 |
msgstr ""
|
5652 |
|
5653 |
+
#: ../includes/Elements/Product_Grid.php:2482, ../includes/Elements/Woo_Checkout.php:199
|
5654 |
msgid "Quantity"
|
5655 |
msgstr ""
|
5656 |
|
5657 |
+
#: ../includes/Elements/Product_Grid.php:2539
|
5658 |
msgid "Cart Button"
|
5659 |
msgstr ""
|
5660 |
|
6466 |
msgid "<strong>ReviewX</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=reviewx&tab=search&type=term\" target=\"_blank\">ReviewX</a> first."
|
6467 |
msgstr ""
|
6468 |
|
|
|
|
|
|
|
|
|
6469 |
#: ../includes/Elements/Woo_Checkout.php:148, ../includes/Elements/Woo_Checkout.php:610
|
6470 |
msgid "Order Details"
|
6471 |
msgstr ""
|
7058 |
msgid "Dynamic Content Settings"
|
7059 |
msgstr ""
|
7060 |
|
|
|
|
|
|
|
|
|
7061 |
#: ../includes/Traits/Controls.php:89
|
7062 |
msgid "Search & Select"
|
7063 |
msgstr ""
|
8158 |
msgid "Stock <br/> Out"
|
8159 |
msgstr ""
|
8160 |
|
8161 |
+
#: ../includes/Template/Eicon-Woocommerce/default.php:265, ../includes/Template/Eicon-Woocommerce/default.php:204, ../includes/Template/Eicon-Woocommerce/default.php:98
|
8162 |
msgid "Stock "
|
8163 |
msgstr ""
|
8164 |
|
8165 |
+
#: ../includes/Template/Eicon-Woocommerce/default.php:265, ../includes/Template/Eicon-Woocommerce/default.php:204, ../includes/Template/Eicon-Woocommerce/default.php:98
|
8166 |
msgid "Out"
|
8167 |
msgstr ""
|
8168 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addon, elementor widget, elementor
|
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.6
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 4.5.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -227,6 +227,14 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
227 |
|
228 |
== Changelog ==
|
229 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
= 4.5.1 - 23/02/2021 =
|
231 |
- Fixed: EA Login Register Form | ‘Security Token Does Not Match’ error
|
232 |
- Fixed: EA Product Grid | Pagination disappearing with the latest update
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 5.6
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 4.5.2
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
227 |
|
228 |
== Changelog ==
|
229 |
|
230 |
+
= 4.5.2 - 03/03/2021 =
|
231 |
+
|
232 |
+
- Added: Dynamic query option for EA Woo Product Grid
|
233 |
+
- Fixed: EA Login/Register Form | Error/Success message not appearing after Registration
|
234 |
+
- Fixed: EA Advanced Accordion | Showing a border around the tab
|
235 |
+
- Fixed: EA Facebook Feed | Preview content settings not working properly
|
236 |
+
- Few minor bug fix and improvements
|
237 |
+
|
238 |
= 4.5.1 - 23/02/2021 =
|
239 |
- Fixed: EA Login Register Form | ‘Security Token Does Not Match’ error
|
240 |
- Fixed: EA Product Grid | Pagination disappearing with the latest update
|