Version Description
02/02/2022 =
Improved: Data sanitization, validation & escaping for Security Enhancement
Fixed: JS error when Anchor tags are used without the href attribute
Fixed: EA Product Grid | Product Grid thumbnails not using the image size selected
Fixed: EA Woo Product Carousel | not fetching the variable products when Sale Items option is selected
Few minor bug fixes & improvements
Download this release
Release Info
| Developer | wpdevteam |
| Plugin | |
| Version | 5.0.6 |
| Comparing to | |
| See all releases | |
Code changes from version 5.0.5 to 5.0.6
- assets/front-end/js/view/general.js +1 -1
- assets/front-end/js/view/general.min.js +1 -1
- essential_adons_elementor.php +2 -2
- includes/Classes/Bootstrap.php +5 -5
- includes/Classes/Helper.php +52 -33
- includes/Classes/Migration.php +0 -4
- includes/Classes/Plugin_Usage_Tracker.php +7 -27
- includes/Classes/WPDeveloper_Core_Installer.php +3 -3
- includes/Classes/WPDeveloper_Notice.php +24 -31
- includes/Classes/WPDeveloper_Plugin_Installer.php +13 -12
- includes/Classes/WPDeveloper_Setup_Wizard.php +21 -20
- includes/Controls/Select2.php +4 -4
- includes/Elements/Info_Box.php +1 -1
- includes/Elements/Woo_Product_Carousel.php +1 -16
- includes/Extensions/Post_Duplicator.php +1 -1
- includes/Template/Betterdocs-Category-Grid/Layout_2.php +5 -5
- includes/Template/Betterdocs-Category-Grid/Layout_Default.php +6 -6
- includes/Template/Content-Ticker/default.php +1 -1
- includes/Template/Eicon-Woocommerce/default.php +11 -11
- includes/Template/Post-Grid/default.php +4 -1
- includes/Template/Post-Timeline/default.php +1 -1
- includes/Template/Woo-Product-Carousel/preset-1.php +3 -3
- includes/Template/Woo-Product-Carousel/preset-2.php +3 -3
- includes/Template/Woo-Product-Carousel/preset-3.php +3 -3
- includes/Template/Woo-Product-Carousel/preset-4.php +3 -3
- includes/Traits/Admin.php +7 -6
- includes/Traits/Controls.php +0 -1
- includes/Traits/Core.php +1 -1
- includes/Traits/Elements.php +3 -3
- includes/Traits/Enqueue.php +3 -3
- includes/Traits/Facebook_Feed.php +20 -20
- includes/Traits/Helper.php +49 -31
- includes/Traits/Library.php +2 -2
- includes/Traits/Login_Registration.php +4 -4
- includes/Traits/Woo_Product_Comparable.php +2 -2
- includes/templates/admin/elements.php +2 -2
- includes/templates/admin/extensions.php +3 -3
- includes/templates/admin/integrations.php +2 -2
- includes/templates/admin/popup.php +3 -3
- languages/essential-addons-for-elementor-lite.pot +74 -74
- readme.txt +9 -1
assets/front-end/js/view/general.js
CHANGED
|
@@ -310,7 +310,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/**\n * Validate a namespace
|
|
| 310 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
| 311 |
|
| 312 |
"use strict";
|
| 313 |
-
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/@wordpress/hooks/build-module/index.js\");\n\nwindow.isEditMode = false;\nwindow.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false\n};\nea.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n\n if (eventCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n\n if (testimonialSlider.length) {\n ea.hooks.doAction(\"testimonialSlider.reinit\");\n }\n\n if (teamMemberCarousel.length) {\n ea.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n\n if (postCarousel.length) {\n ea.hooks.doAction(\"postCarousel.reinit\");\n }\n\n if (logoCarousel.length) {\n ea.hooks.doAction(\"logoCarousel.reinit\");\n }\n\n if (twitterCarousel.length) {\n ea.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.ea.isEditMode = elementorFrontend.isEditMode(); // hooks\n\n ea.hooks.doAction(\"init\"); // init edit mode hook\n\n if (ea.isEditMode) {\n ea.hooks.doAction(\"editMode.init\");\n }\n});\n\n(function ($) {\n $(document).on('click', 'a', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash = hashURL.startsWith('#');\n\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n } // we will try and catch the error but not show anything just do it if possible\n\n\n try {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n }\n } catch (err) {// nothing to do\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?");
|
| 314 |
|
| 315 |
/***/ })
|
| 316 |
|
| 310 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
| 311 |
|
| 312 |
"use strict";
|
| 313 |
+
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/hooks */ \"./node_modules/@wordpress/hooks/build-module/index.js\");\n\nwindow.isEditMode = false;\nwindow.ea = {\n hooks: Object(_wordpress_hooks__WEBPACK_IMPORTED_MODULE_0__[\"createHooks\"])(),\n isEditMode: false\n};\nea.hooks.addAction(\"widgets.reinit\", \"ea\", function ($content) {\n var filterGallery = jQuery(\".eael-filter-gallery-container\", $content);\n var postGridGallery = jQuery(\".eael-post-grid:not(.eael-post-carousel)\", $content);\n var twitterfeedGallery = jQuery(\".eael-twitter-feed-masonry\", $content);\n var instaGallery = jQuery(\".eael-instafeed\", $content);\n var paGallery = jQuery(\".premium-gallery-container\", $content);\n var eventCalendar = jQuery(\".eael-event-calendar-cls\", $content);\n var testimonialSlider = jQuery(\".eael-testimonial-slider\", $content);\n var teamMemberCarousel = jQuery(\".eael-tm-carousel\", $content);\n var postCarousel = jQuery(\".eael-post-carousel:not(.eael-post-grid)\", $content);\n var logoCarousel = jQuery(\".eael-logo-carousel\", $content);\n var twitterCarousel = jQuery(\".eael-twitter-feed-carousel\", $content);\n\n if (filterGallery.length) {\n filterGallery.isotope(\"layout\");\n }\n\n if (postGridGallery.length) {\n postGridGallery.isotope(\"layout\");\n }\n\n if (twitterfeedGallery.length) {\n twitterfeedGallery.isotope(\"layout\");\n }\n\n if (instaGallery.length) {\n instaGallery.isotope(\"layout\");\n }\n\n if (paGallery.length) {\n paGallery.isotope(\"layout\");\n }\n\n if (eventCalendar.length) {\n ea.hooks.doAction(\"eventCalendar.reinit\");\n }\n\n if (testimonialSlider.length) {\n ea.hooks.doAction(\"testimonialSlider.reinit\");\n }\n\n if (teamMemberCarousel.length) {\n ea.hooks.doAction(\"teamMemberCarousel.reinit\");\n }\n\n if (postCarousel.length) {\n ea.hooks.doAction(\"postCarousel.reinit\");\n }\n\n if (logoCarousel.length) {\n ea.hooks.doAction(\"logoCarousel.reinit\");\n }\n\n if (twitterCarousel.length) {\n ea.hooks.doAction(\"twitterCarousel.reinit\");\n }\n});\njQuery(window).on(\"elementor/frontend/init\", function () {\n window.isEditMode = elementorFrontend.isEditMode();\n window.ea.isEditMode = elementorFrontend.isEditMode(); // hooks\n\n ea.hooks.doAction(\"init\"); // init edit mode hook\n\n if (ea.isEditMode) {\n ea.hooks.doAction(\"editMode.init\");\n }\n});\n\n(function ($) {\n $(document).on('click', 'a', function (e) {\n var hashURL = $(this).attr('href'),\n isStartWithHash;\n hashURL = hashURL === undefined ? '' : hashURL;\n isStartWithHash = hashURL.startsWith('#');\n\n if (!isStartWithHash) {\n hashURL = hashURL.replace(localize.page_permalink, '');\n isStartWithHash = hashURL.startsWith('#');\n } // we will try and catch the error but not show anything just do it if possible\n\n\n try {\n if (isStartWithHash && ($(hashURL).hasClass('eael-tab-item-trigger') || $(hashURL).hasClass('eael-accordion-header'))) {\n $(hashURL).trigger('click');\n }\n } catch (err) {// nothing to do\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/general.js?");
|
| 314 |
|
| 315 |
/***/ })
|
| 316 |
|
assets/front-end/js/view/general.min.js
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},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 r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},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=89)}({89:function(e,t,n){"use strict";n.r(t);var r=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var o=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var i=function(e,t){return function(n,i,s){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,l=e[t];if(o(n)&&r(i))if("function"==typeof s)if("number"==typeof a){var c={callback:s,priority:a,namespace:i};if(l[n]){var u,d=l[n].handlers;for(u=d.length;u>0&&!(a>=d[u-1].priority);u--);u===d.length?d[u]=c:d.splice(u,0,c),l.__current.forEach((function(e){e.name===n&&e.currentIndex>=u&&e.currentIndex++}))}else l[n]={handlers:[c],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,i,s,a)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var s=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(i,s){var a=e[t];if(o(i)&&(n||r(s))){if(!a[i])return 0;var l=0;if(n)l=a[i].handlers.length,a[i]={runs:a[i].runs,handlers:[]};else for(var c=a[i].handlers,u=function(e){c[e].namespace===s&&(c.splice(e,1),l++,a.__current.forEach((function(t){t.name===i&&t.currentIndex>=e&&t.currentIndex--})))},d=c.length-1;d>=0;d--)u(d);return"hookRemoved"!==i&&e.doAction("hookRemoved",i,s),l}}};var a=function(e,t){return function(n,r){var o=e[t];return void 0!==r?n in o&&o[n].handlers.some((function(e){return e.namespace===r})):n in o}};var l=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(r){var o=e[t];o[r]||(o[r]={handlers:[],runs:0}),o[r].runs++;var i=o[r].handlers;for(var s=arguments.length,a=new Array(s>1?s-1:0),l=1;l<s;l++)a[l-1]=arguments[l];if(!i||!i.length)return n?a[0]:void 0;var c={name:r,currentIndex:0};for(o.__current.push(c);c.currentIndex<i.length;){var u=i[c.currentIndex],d=u.callback.apply(null,a);n&&(a[0]=d),c.currentIndex++}return o.__current.pop(),n?a[0]:void 0}};var c=function(e,t){return function(){var n,r,o=e[t];return null!==(n=null===(r=o.__current[o.__current.length-1])||void 0===r?void 0:r.name)&&void 0!==n?n:null}};var u=function(e,t){return function(n){var r=e[t];return void 0===n?void 0!==r.__current[0]:!!r.__current[0]&&n===r.__current[0].name}};var d=function(e,t){return function(n){var r=e[t];if(o(n))return r[n]&&r[n].runs?r[n].runs:0}},h=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=i(this,"actions"),this.addFilter=i(this,"filters"),this.removeAction=s(this,"actions"),this.removeFilter=s(this,"filters"),this.hasAction=a(this,"actions"),this.hasFilter=a(this,"filters"),this.removeAllActions=s(this,"actions",!0),this.removeAllFilters=s(this,"filters",!0),this.doAction=l(this,"actions"),this.applyFilters=l(this,"filters",!0),this.currentAction=c(this,"actions"),this.currentFilter=c(this,"filters"),this.doingAction=u(this,"actions"),this.doingFilter=u(this,"filters"),this.didAction=d(this,"actions"),this.didFilter=d(this,"filters")};var f,v=function(){return new h},p=v();p.addAction,p.addFilter,p.removeAction,p.removeFilter,p.hasAction,p.hasFilter,p.removeAllActions,p.removeAllFilters,p.doAction,p.applyFilters,p.currentAction,p.currentFilter,p.doingAction,p.doingFilter,p.didAction,p.didFilter,p.actions,p.filters;window.isEditMode=!1,window.ea={hooks:v(),isEditMode:!1},ea.hooks.addAction("widgets.reinit","ea",(function(e){var t=jQuery(".eael-filter-gallery-container",e),n=jQuery(".eael-post-grid:not(.eael-post-carousel)",e),r=jQuery(".eael-twitter-feed-masonry",e),o=jQuery(".eael-instafeed",e),i=jQuery(".premium-gallery-container",e),s=jQuery(".eael-event-calendar-cls",e),a=jQuery(".eael-testimonial-slider",e),l=jQuery(".eael-tm-carousel",e),c=jQuery(".eael-post-carousel:not(.eael-post-grid)",e),u=jQuery(".eael-logo-carousel",e),d=jQuery(".eael-twitter-feed-carousel",e);t.length&&t.isotope("layout"),n.length&&n.isotope("layout"),r.length&&r.isotope("layout"),o.length&&o.isotope("layout"),i.length&&i.isotope("layout"),s.length&&ea.hooks.doAction("eventCalendar.reinit"),a.length&&ea.hooks.doAction("testimonialSlider.reinit"),l.length&&ea.hooks.doAction("teamMemberCarousel.reinit"),c.length&&ea.hooks.doAction("postCarousel.reinit"),u.length&&ea.hooks.doAction("logoCarousel.reinit"),d.length&&ea.hooks.doAction("twitterCarousel.reinit")})),jQuery(window).on("elementor/frontend/init",(function(){window.isEditMode=elementorFrontend.isEditMode(),window.ea.isEditMode=elementorFrontend.isEditMode(),ea.hooks.doAction("init"),ea.isEditMode&&ea.hooks.doAction("editMode.init")})),(f=jQuery)(document).on("click","a",(function(e){var t=f(this).attr("href")
|
| 1 |
+
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},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 r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},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=89)}({89:function(e,t,n){"use strict";n.r(t);var r=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)};var o=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)};var i=function(e,t){return function(n,i,s){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:10,l=e[t];if(o(n)&&r(i))if("function"==typeof s)if("number"==typeof a){var c={callback:s,priority:a,namespace:i};if(l[n]){var u,d=l[n].handlers;for(u=d.length;u>0&&!(a>=d[u-1].priority);u--);u===d.length?d[u]=c:d.splice(u,0,c),l.__current.forEach((function(e){e.name===n&&e.currentIndex>=u&&e.currentIndex++}))}else l[n]={handlers:[c],runs:0};"hookAdded"!==n&&e.doAction("hookAdded",n,i,s,a)}else console.error("If specified, the hook priority must be a number.");else console.error("The hook callback must be a function.")}};var s=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(i,s){var a=e[t];if(o(i)&&(n||r(s))){if(!a[i])return 0;var l=0;if(n)l=a[i].handlers.length,a[i]={runs:a[i].runs,handlers:[]};else for(var c=a[i].handlers,u=function(e){c[e].namespace===s&&(c.splice(e,1),l++,a.__current.forEach((function(t){t.name===i&&t.currentIndex>=e&&t.currentIndex--})))},d=c.length-1;d>=0;d--)u(d);return"hookRemoved"!==i&&e.doAction("hookRemoved",i,s),l}}};var a=function(e,t){return function(n,r){var o=e[t];return void 0!==r?n in o&&o[n].handlers.some((function(e){return e.namespace===r})):n in o}};var l=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return function(r){var o=e[t];o[r]||(o[r]={handlers:[],runs:0}),o[r].runs++;var i=o[r].handlers;for(var s=arguments.length,a=new Array(s>1?s-1:0),l=1;l<s;l++)a[l-1]=arguments[l];if(!i||!i.length)return n?a[0]:void 0;var c={name:r,currentIndex:0};for(o.__current.push(c);c.currentIndex<i.length;){var u=i[c.currentIndex],d=u.callback.apply(null,a);n&&(a[0]=d),c.currentIndex++}return o.__current.pop(),n?a[0]:void 0}};var c=function(e,t){return function(){var n,r,o=e[t];return null!==(n=null===(r=o.__current[o.__current.length-1])||void 0===r?void 0:r.name)&&void 0!==n?n:null}};var u=function(e,t){return function(n){var r=e[t];return void 0===n?void 0!==r.__current[0]:!!r.__current[0]&&n===r.__current[0].name}};var d=function(e,t){return function(n){var r=e[t];if(o(n))return r[n]&&r[n].runs?r[n].runs:0}},h=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=i(this,"actions"),this.addFilter=i(this,"filters"),this.removeAction=s(this,"actions"),this.removeFilter=s(this,"filters"),this.hasAction=a(this,"actions"),this.hasFilter=a(this,"filters"),this.removeAllActions=s(this,"actions",!0),this.removeAllFilters=s(this,"filters",!0),this.doAction=l(this,"actions"),this.applyFilters=l(this,"filters",!0),this.currentAction=c(this,"actions"),this.currentFilter=c(this,"filters"),this.doingAction=u(this,"actions"),this.doingFilter=u(this,"filters"),this.didAction=d(this,"actions"),this.didFilter=d(this,"filters")};var f,v=function(){return new h},p=v();p.addAction,p.addFilter,p.removeAction,p.removeFilter,p.hasAction,p.hasFilter,p.removeAllActions,p.removeAllFilters,p.doAction,p.applyFilters,p.currentAction,p.currentFilter,p.doingAction,p.doingFilter,p.didAction,p.didFilter,p.actions,p.filters;window.isEditMode=!1,window.ea={hooks:v(),isEditMode:!1},ea.hooks.addAction("widgets.reinit","ea",(function(e){var t=jQuery(".eael-filter-gallery-container",e),n=jQuery(".eael-post-grid:not(.eael-post-carousel)",e),r=jQuery(".eael-twitter-feed-masonry",e),o=jQuery(".eael-instafeed",e),i=jQuery(".premium-gallery-container",e),s=jQuery(".eael-event-calendar-cls",e),a=jQuery(".eael-testimonial-slider",e),l=jQuery(".eael-tm-carousel",e),c=jQuery(".eael-post-carousel:not(.eael-post-grid)",e),u=jQuery(".eael-logo-carousel",e),d=jQuery(".eael-twitter-feed-carousel",e);t.length&&t.isotope("layout"),n.length&&n.isotope("layout"),r.length&&r.isotope("layout"),o.length&&o.isotope("layout"),i.length&&i.isotope("layout"),s.length&&ea.hooks.doAction("eventCalendar.reinit"),a.length&&ea.hooks.doAction("testimonialSlider.reinit"),l.length&&ea.hooks.doAction("teamMemberCarousel.reinit"),c.length&&ea.hooks.doAction("postCarousel.reinit"),u.length&&ea.hooks.doAction("logoCarousel.reinit"),d.length&&ea.hooks.doAction("twitterCarousel.reinit")})),jQuery(window).on("elementor/frontend/init",(function(){window.isEditMode=elementorFrontend.isEditMode(),window.ea.isEditMode=elementorFrontend.isEditMode(),ea.hooks.doAction("init"),ea.isEditMode&&ea.hooks.doAction("editMode.init")})),(f=jQuery)(document).on("click","a",(function(e){var t,n=f(this).attr("href");(t=(n=void 0===n?"":n).startsWith("#"))||(t=(n=n.replace(localize.page_permalink,"")).startsWith("#"));try{t&&(f(n).hasClass("eael-tab-item-trigger")||f(n).hasClass("eael-accordion-header"))&&f(n).trigger("click")}catch(e){}}))}});
|
essential_adons_elementor.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
| 5 |
* Plugin URI: https://essential-addons.com/elementor/
|
| 6 |
* Author: WPDeveloper
|
| 7 |
-
* Version: 5.0.
|
| 8 |
* Author URI: https://wpdeveloper.com/
|
| 9 |
* Text Domain: essential-addons-for-elementor-lite
|
| 10 |
* Domain Path: /languages
|
|
@@ -27,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
| 27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
| 28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
| 29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
| 30 |
-
define('EAEL_PLUGIN_VERSION', '5.0.
|
| 31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
| 32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
| 33 |
/**
|
| 4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
| 5 |
* Plugin URI: https://essential-addons.com/elementor/
|
| 6 |
* Author: WPDeveloper
|
| 7 |
+
* Version: 5.0.6
|
| 8 |
* Author URI: https://wpdeveloper.com/
|
| 9 |
* Text Domain: essential-addons-for-elementor-lite
|
| 10 |
* Domain Path: /languages
|
| 27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
| 28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
| 29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
| 30 |
+
define('EAEL_PLUGIN_VERSION', '5.0.6');
|
| 31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
| 32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
| 33 |
/**
|
includes/Classes/Bootstrap.php
CHANGED
|
@@ -265,11 +265,11 @@ class Bootstrap
|
|
| 265 |
add_action('admin_init', [$this, 'typeform_auth_handle']);
|
| 266 |
|
| 267 |
|
| 268 |
-
|
| 269 |
-
|
| 270 |
-
|
| 271 |
-
|
| 272 |
-
|
| 273 |
}
|
| 274 |
}
|
| 275 |
}
|
| 265 |
add_action('admin_init', [$this, 'typeform_auth_handle']);
|
| 266 |
|
| 267 |
|
| 268 |
+
// On Editor - Register WooCommerce frontend hooks before the Editor init.
|
| 269 |
+
// Priority = 5, in order to allow plugins remove/add their wc hooks on init.
|
| 270 |
+
if ( ! empty( $_REQUEST['action'] ) && 'elementor' === $_REQUEST['action'] ) {
|
| 271 |
+
add_action( 'init', [ $this, 'register_wc_hooks' ], 5 );
|
| 272 |
+
}
|
| 273 |
}
|
| 274 |
}
|
| 275 |
}
|
includes/Classes/Helper.php
CHANGED
|
@@ -852,39 +852,44 @@ class Helper
|
|
| 852 |
public static function eael_pagination ($args, $settings) {
|
| 853 |
$args['posts_per_page'] = -1;
|
| 854 |
|
| 855 |
-
$pagination_Query
|
| 856 |
-
$pagination_Count
|
| 857 |
-
$paginationLimit
|
| 858 |
-
$pagination_Paginationlist = ceil($pagination_Count
|
| 859 |
-
$last
|
| 860 |
-
|
| 861 |
-
$
|
| 862 |
-
$
|
| 863 |
-
$
|
| 864 |
-
|
| 865 |
-
$adjacents = "2";
|
| 866 |
-
$setPagination = "";
|
| 867 |
if( $pagination_Paginationlist > 0 ){
|
| 868 |
|
| 869 |
$setPagination .="<nav class='eael-woo-pagination'>";
|
| 870 |
$setPagination .="<ul class='page-numbers'>";
|
| 871 |
-
// $setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers'
|
| 872 |
-
// data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."'
|
| 873 |
-
// data-pnumber='1' data-plimit='$paginationLimit'>$prev_label</a></li>";
|
| 874 |
|
| 875 |
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
| 876 |
|
| 877 |
-
for( $pagination=1; $pagination
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 878 |
|
| 879 |
-
if( $pagination == 0 || $pagination == 1 ){ $active="current"; }else{ $active=""; }
|
| 880 |
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
| 881 |
|
| 882 |
}
|
| 883 |
|
| 884 |
} else if ( $pagination_Paginationlist > 5 + ($adjacents * 2) ){
|
| 885 |
|
| 886 |
-
for( $pagination=1; $pagination <= 4 + ($adjacents * 2); $pagination++){
|
| 887 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 888 |
|
| 889 |
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
| 890 |
}
|
|
@@ -894,15 +899,26 @@ class Helper
|
|
| 894 |
|
| 895 |
} else {
|
| 896 |
|
| 897 |
-
for( $pagination=1; $pagination
|
| 898 |
-
|
| 899 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 900 |
}
|
| 901 |
|
| 902 |
}
|
|
|
|
| 903 |
if ($pagination_Paginationlist > 1) {
|
| 904 |
-
$setPagination .= "<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='" . http_build_query( $args ) . "' data-settings='" . http_build_query( $settings ) . "' data-pnumber='2' data-plimit='$paginationLimit'
|
| 905 |
}
|
|
|
|
| 906 |
$setPagination .="</ul>";
|
| 907 |
$setPagination .="</nav>";
|
| 908 |
|
|
@@ -911,26 +927,28 @@ class Helper
|
|
| 911 |
}
|
| 912 |
|
| 913 |
public static function eael_product_quick_view ($product, $settings, $widget_id) {
|
| 914 |
-
|
| 915 |
-
$
|
| 916 |
-
$
|
| 917 |
-
$
|
| 918 |
-
|
|
|
|
| 919 |
|
| 920 |
remove_action( 'eael_woo_single_product_summary', 'woocommerce_template_single_title', 5 );
|
| 921 |
add_action( 'eael_woo_single_product_summary', function () use ( $tag ) {
|
| 922 |
the_title( '<' . $tag . ' class="eael-product-quick-view-title product_title entry-title">', '</' . $tag . '>' );
|
| 923 |
}, 5 );
|
| 924 |
-
|
| 925 |
?>
|
| 926 |
-
|
|
|
|
| 927 |
eael-product-zoom-in woocommerce">
|
| 928 |
<div class="eael-product-modal-bg"></div>
|
| 929 |
<div class="eael-product-popup-details">
|
| 930 |
-
<div id="product-<?php
|
| 931 |
<div class="eael-product-image-wrap">
|
| 932 |
<?php
|
| 933 |
-
echo ( ! $product->is_in_stock() ? '<span class="eael-onsale outofstock '
|
| 934 |
do_action( 'eael_woo_single_product_image' );
|
| 935 |
?>
|
| 936 |
</div>
|
|
@@ -942,7 +960,8 @@ class Helper
|
|
| 942 |
</div>
|
| 943 |
|
| 944 |
</div>
|
| 945 |
-
<?php
|
|
|
|
| 946 |
|
| 947 |
public static function eael_avoid_redirect_to_single_page() {
|
| 948 |
return '';
|
| 852 |
public static function eael_pagination ($args, $settings) {
|
| 853 |
$args['posts_per_page'] = -1;
|
| 854 |
|
| 855 |
+
$pagination_Query = new \WP_Query( $args );
|
| 856 |
+
$pagination_Count = count( $pagination_Query->posts );
|
| 857 |
+
$paginationLimit = intval( $settings['eael_product_grid_products_count'] ) ?: 4;
|
| 858 |
+
$pagination_Paginationlist = ceil( $pagination_Count / $paginationLimit );
|
| 859 |
+
$last = ceil( $pagination_Paginationlist );
|
| 860 |
+
$widget_id = sanitize_key( $settings['eael_widget_id'] );
|
| 861 |
+
$next_label = $settings['pagination_next_label'];
|
| 862 |
+
$adjacents = "2";
|
| 863 |
+
$setPagination = "";
|
| 864 |
+
|
|
|
|
|
|
|
| 865 |
if( $pagination_Paginationlist > 0 ){
|
| 866 |
|
| 867 |
$setPagination .="<nav class='eael-woo-pagination'>";
|
| 868 |
$setPagination .="<ul class='page-numbers'>";
|
|
|
|
|
|
|
|
|
|
| 869 |
|
| 870 |
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
| 871 |
|
| 872 |
+
for ( $pagination = 1; $pagination <= $pagination_Paginationlist; $pagination ++ ) {
|
| 873 |
+
|
| 874 |
+
if ( $pagination == 0 || $pagination == 1 ) {
|
| 875 |
+
$active = "current";
|
| 876 |
+
} else {
|
| 877 |
+
$active = "";
|
| 878 |
+
}
|
| 879 |
|
|
|
|
| 880 |
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
| 881 |
|
| 882 |
}
|
| 883 |
|
| 884 |
} else if ( $pagination_Paginationlist > 5 + ($adjacents * 2) ){
|
| 885 |
|
| 886 |
+
for ( $pagination = 1; $pagination <= 4 + ( $adjacents * 2 ); $pagination ++ ) {
|
| 887 |
+
|
| 888 |
+
if ( $pagination == 0 || $pagination == 1 ) {
|
| 889 |
+
$active = "current";
|
| 890 |
+
} else {
|
| 891 |
+
$active = "";
|
| 892 |
+
}
|
| 893 |
|
| 894 |
$setPagination .="<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
| 895 |
}
|
| 899 |
|
| 900 |
} else {
|
| 901 |
|
| 902 |
+
for ( $pagination = 1; $pagination <= $pagination_Paginationlist; $pagination ++ ) {
|
| 903 |
+
|
| 904 |
+
if ( $pagination == 0 || $pagination == 1 ) {
|
| 905 |
+
$active = "current";
|
| 906 |
+
} else {
|
| 907 |
+
$active = "";
|
| 908 |
+
}
|
| 909 |
+
|
| 910 |
+
$setPagination .= "<li><a href='javascript:void(0);' id='post' class='page-numbers $active' data-template='" . json_encode( [ 'dir' => 'free',
|
| 911 |
+
'file_name' => $settings['eael_dynamic_template_Layout'],
|
| 912 |
+
'name' => $settings['eael_widget_name']
|
| 913 |
+
], 1 ) . "' data-widgetid='$widget_id' data-args='" . http_build_query( $args ) . "' data-settings='" . http_build_query( $settings ) . "' data-pnumber='$pagination' data-plimit='$paginationLimit'>$pagination</a></li>";
|
| 914 |
}
|
| 915 |
|
| 916 |
}
|
| 917 |
+
|
| 918 |
if ($pagination_Paginationlist > 1) {
|
| 919 |
+
$setPagination .= "<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='" . http_build_query( $args ) . "' data-settings='" . http_build_query( $settings ) . "' data-pnumber='2' data-plimit='$paginationLimit'>".esc_html( $next_label )."</a></li>";
|
| 920 |
}
|
| 921 |
+
|
| 922 |
$setPagination .="</ul>";
|
| 923 |
$setPagination .="</nav>";
|
| 924 |
|
| 927 |
}
|
| 928 |
|
| 929 |
public static function eael_product_quick_view ($product, $settings, $widget_id) {
|
| 930 |
+
|
| 931 |
+
$sale_badge_align = isset( $settings['eael_product_sale_badge_alignment'] ) ? $settings['eael_product_sale_badge_alignment'] : '';
|
| 932 |
+
$sale_badge_preset = isset( $settings['eael_product_sale_badge_preset'] ) ? $settings['eael_product_sale_badge_preset'] : '';
|
| 933 |
+
$sale_text = ! empty( $settings['eael_product_carousel_sale_text'] ) ? $settings['eael_product_carousel_sale_text'] : 'Sale!';
|
| 934 |
+
$stockout_text = ! empty( $settings['eael_product_carousel_stockout_text'] ) ? $settings['eael_product_carousel_stockout_text'] : 'Stock Out';
|
| 935 |
+
$tag = ! empty( $settings['eael_product_quick_view_title_tag'] ) ? self::eael_validate_html_tag( $settings['eael_product_quick_view_title_tag'] ) : 'h1';
|
| 936 |
|
| 937 |
remove_action( 'eael_woo_single_product_summary', 'woocommerce_template_single_title', 5 );
|
| 938 |
add_action( 'eael_woo_single_product_summary', function () use ( $tag ) {
|
| 939 |
the_title( '<' . $tag . ' class="eael-product-quick-view-title product_title entry-title">', '</' . $tag . '>' );
|
| 940 |
}, 5 );
|
| 941 |
+
|
| 942 |
?>
|
| 943 |
+
|
| 944 |
+
<div id="eaproduct<?php echo esc_attr( $widget_id . $product->get_id() ); ?>" class="eael-product-popup
|
| 945 |
eael-product-zoom-in woocommerce">
|
| 946 |
<div class="eael-product-modal-bg"></div>
|
| 947 |
<div class="eael-product-popup-details">
|
| 948 |
+
<div id="product-<?php esc_attr( get_the_ID() ); ?>" <?php post_class( 'product' ); ?>>
|
| 949 |
<div class="eael-product-image-wrap">
|
| 950 |
<?php
|
| 951 |
+
echo ( ! $product->is_in_stock() ? '<span class="eael-onsale outofstock '.esc_attr( $sale_badge_preset ).' '.esc_attr( $sale_badge_align ).'">'. esc_html( $stockout_text ) .'</span>' : ($product->is_on_sale() ? '<span class="eael-onsale '.esc_attr( $sale_badge_preset ).' '.esc_attr( $sale_badge_align ).'">' . esc_html( $sale_text ) . '</span>' : '') );
|
| 952 |
do_action( 'eael_woo_single_product_image' );
|
| 953 |
?>
|
| 954 |
</div>
|
| 960 |
</div>
|
| 961 |
|
| 962 |
</div>
|
| 963 |
+
<?php
|
| 964 |
+
}
|
| 965 |
|
| 966 |
public static function eael_avoid_redirect_to_single_page() {
|
| 967 |
return '';
|
includes/Classes/Migration.php
CHANGED
|
@@ -27,10 +27,6 @@ class Migration
|
|
| 27 |
// save default values
|
| 28 |
$this->set_default_values();
|
| 29 |
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
// Redirect to options page - disabled temporarily
|
| 33 |
-
// set_transient('eael_do_activation_redirect', true, 60);
|
| 34 |
}
|
| 35 |
|
| 36 |
/**
|
| 27 |
// save default values
|
| 28 |
$this->set_default_values();
|
| 29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
}
|
| 31 |
|
| 32 |
/**
|
includes/Classes/Plugin_Usage_Tracker.php
CHANGED
|
@@ -393,26 +393,6 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 393 |
$body['status'] = 'Active';
|
| 394 |
}
|
| 395 |
|
| 396 |
-
/**
|
| 397 |
-
* Get our plugin options
|
| 398 |
-
* @since 1.0.0
|
| 399 |
-
*/
|
| 400 |
-
// $options = $this->options;
|
| 401 |
-
// $plugin_options = array();
|
| 402 |
-
// if( ! empty( $options ) && is_array( $options ) ) {
|
| 403 |
-
// foreach( $options as $option ) {
|
| 404 |
-
// $fields = get_option( $option );
|
| 405 |
-
// // Check for permission to send this option
|
| 406 |
-
// if( isset( $fields['wpins_registered_setting'] ) ) {
|
| 407 |
-
// foreach( $fields as $key=>$value ) {
|
| 408 |
-
// $plugin_options[$key] = $value;
|
| 409 |
-
// }
|
| 410 |
-
// }
|
| 411 |
-
// }
|
| 412 |
-
// }
|
| 413 |
-
// $body['plugin_options'] = $this->options; // Returns array
|
| 414 |
-
// $body['plugin_options_fields'] = $plugin_options; // Returns object
|
| 415 |
-
|
| 416 |
/**
|
| 417 |
* Get active theme name and version
|
| 418 |
* @since 3.0.0
|
|
@@ -623,7 +603,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 623 |
) );
|
| 624 |
|
| 625 |
// Decide on notice text
|
| 626 |
-
$notice_text = $this->notice_options['notice'] . ' <a href="#" class="wpinsights-'. $this->plugin_name .'-collect">'. $this->notice_options['consent_button_text'] .'</a>';
|
| 627 |
$extra_notice_text = $this->notice_options['extra_notice'];
|
| 628 |
|
| 629 |
$output = '';
|
|
@@ -636,7 +616,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 636 |
$output .= '<a href="'. esc_url( $url_yes ) .'" class="button-primary">'. $this->notice_options['yes'] .'</a> ';
|
| 637 |
$output .= '<a href="'. esc_url( $url_no ) .'" class="button-secondary">'. $this->notice_options['no'] .'</a>';
|
| 638 |
$output .= '</p>';
|
| 639 |
-
$output .= "<script type='text/javascript'>jQuery('.wpinsights-". $this->plugin_name ."-collect').on('click', function(e) {e.preventDefault();jQuery('.wpinsights-data').slideToggle('fast');});</script>";
|
| 640 |
$output .= '</div>';
|
| 641 |
|
| 642 |
echo $output;
|
|
@@ -708,7 +688,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 708 |
public function deactivate_reasons_form_submit() {
|
| 709 |
check_ajax_referer( 'wpins_deactivation_nonce', 'security' );
|
| 710 |
if( isset( $_POST['values'] ) ) {
|
| 711 |
-
$values = $_POST['values'];
|
| 712 |
update_option( 'wpins_deactivation_reason_' . $this->plugin_name, $values );
|
| 713 |
}
|
| 714 |
if( isset( $_POST['details'] ) ) {
|
|
@@ -782,19 +762,19 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
| 782 |
$id = strtolower( str_replace( " ", "_", esc_attr( $option['label'] ) ) );
|
| 783 |
$id = $id . '_' . $class_plugin_name;
|
| 784 |
$html .= '<li class="has-goodbye-extra">';
|
| 785 |
-
$html .= '<input type="radio" name="wpinsights-'. $class_plugin_name .'-goodbye-options" id="' . $id . '" value="' . esc_attr( $option['label'] ) . '">';
|
| 786 |
$html .= '<div><label for="' . $id . '">' . esc_attr( $option['label'] ) . '</label>';
|
| 787 |
if( isset( $option[ 'extra_field' ] ) && ! isset( $option['type'] )) {
|
| 788 |
-
$html .= '<input type="text" style="display: none" name="'. $id .'" id="' . str_replace( " ", "", esc_attr( $option['extra_field'] ) ) . '" placeholder="' . esc_attr( $option['extra_field'] ) . '">';
|
| 789 |
}
|
| 790 |
if( isset( $option[ 'extra_field' ] ) && isset( $option['type'] )) {
|
| 791 |
-
$html .= '<'. $option['type'] .' style="display: none" type="text" name="'. $id .'" id="' . str_replace( " ", "", esc_attr( $option['extra_field'] ) ) . '" placeholder="' . esc_attr( $option['extra_field'] ) . '"></' . $option['type'] . '>';
|
| 792 |
}
|
| 793 |
$html .= '</div></li>';
|
| 794 |
} else {
|
| 795 |
$id = strtolower( str_replace( " ", "_", esc_attr( $option ) ) );
|
| 796 |
$id = $id . '_' . $class_plugin_name;
|
| 797 |
-
$html .= '<li><input type="radio" name="wpinsights-'. $class_plugin_name .'-goodbye-options" id="' . $id . '" value="' . esc_attr( $option ) . '"> <label for="' . $id . '">' . esc_attr( $option ) . '</label></li>';
|
| 798 |
}
|
| 799 |
}
|
| 800 |
$html .= '</ul></div><!-- .wpinsights-'. $class_plugin_name .'-goodbye-options -->';
|
| 393 |
$body['status'] = 'Active';
|
| 394 |
}
|
| 395 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 396 |
/**
|
| 397 |
* Get active theme name and version
|
| 398 |
* @since 3.0.0
|
| 603 |
) );
|
| 604 |
|
| 605 |
// Decide on notice text
|
| 606 |
+
$notice_text = $this->notice_options['notice'] . ' <a href="#" class="wpinsights-'. esc_attr( $this->plugin_name ) .'-collect">'. $this->notice_options['consent_button_text'] .'</a>';
|
| 607 |
$extra_notice_text = $this->notice_options['extra_notice'];
|
| 608 |
|
| 609 |
$output = '';
|
| 616 |
$output .= '<a href="'. esc_url( $url_yes ) .'" class="button-primary">'. $this->notice_options['yes'] .'</a> ';
|
| 617 |
$output .= '<a href="'. esc_url( $url_no ) .'" class="button-secondary">'. $this->notice_options['no'] .'</a>';
|
| 618 |
$output .= '</p>';
|
| 619 |
+
$output .= "<script type='text/javascript'>jQuery('.wpinsights-". esc_attr( $this->plugin_name ) ."-collect').on('click', function(e) {e.preventDefault();jQuery('.wpinsights-data').slideToggle('fast');});</script>";
|
| 620 |
$output .= '</div>';
|
| 621 |
|
| 622 |
echo $output;
|
| 688 |
public function deactivate_reasons_form_submit() {
|
| 689 |
check_ajax_referer( 'wpins_deactivation_nonce', 'security' );
|
| 690 |
if( isset( $_POST['values'] ) ) {
|
| 691 |
+
$values = sanitize_text_field( $_POST['values'] );
|
| 692 |
update_option( 'wpins_deactivation_reason_' . $this->plugin_name, $values );
|
| 693 |
}
|
| 694 |
if( isset( $_POST['details'] ) ) {
|
| 762 |
$id = strtolower( str_replace( " ", "_", esc_attr( $option['label'] ) ) );
|
| 763 |
$id = $id . '_' . $class_plugin_name;
|
| 764 |
$html .= '<li class="has-goodbye-extra">';
|
| 765 |
+
$html .= '<input type="radio" name="wpinsights-'. esc_attr( $class_plugin_name ) .'-goodbye-options" id="' . esc_attr( $id ) . '" value="' . esc_attr( $option['label'] ) . '">';
|
| 766 |
$html .= '<div><label for="' . $id . '">' . esc_attr( $option['label'] ) . '</label>';
|
| 767 |
if( isset( $option[ 'extra_field' ] ) && ! isset( $option['type'] )) {
|
| 768 |
+
$html .= '<input type="text" style="display: none" name="'. esc_attr( $id ) .'" id="' . str_replace( " ", "", esc_attr( $option['extra_field'] ) ) . '" placeholder="' . esc_attr( $option['extra_field'] ) . '">';
|
| 769 |
}
|
| 770 |
if( isset( $option[ 'extra_field' ] ) && isset( $option['type'] )) {
|
| 771 |
+
$html .= '<'. $option['type'] .' style="display: none" type="text" name="'. esc_attr( $id ) .'" id="' . str_replace( " ", "", esc_attr( $option['extra_field'] ) ) . '" placeholder="' . esc_attr( $option['extra_field'] ) . '"></' . $option['type'] . '>';
|
| 772 |
}
|
| 773 |
$html .= '</div></li>';
|
| 774 |
} else {
|
| 775 |
$id = strtolower( str_replace( " ", "_", esc_attr( $option ) ) );
|
| 776 |
$id = $id . '_' . $class_plugin_name;
|
| 777 |
+
$html .= '<li><input type="radio" name="wpinsights-'. $class_plugin_name .'-goodbye-options" id="' . esc_attr( $id ) . '" value="' . esc_attr( $option ) . '"> <label for="' . $id . '">' . esc_attr( $option ) . '</label></li>';
|
| 778 |
}
|
| 779 |
}
|
| 780 |
$html .= '</ul></div><!-- .wpinsights-'. $class_plugin_name .'-goodbye-options -->';
|
includes/Classes/WPDeveloper_Core_Installer.php
CHANGED
|
@@ -60,8 +60,8 @@ class WPDeveloper_Core_Installer {
|
|
| 60 |
wp_send_json_error( __( 'You don\'t have permission to install the plugins', 'essential-addons-for-elementor-lite' ) );
|
| 61 |
}
|
| 62 |
|
| 63 |
-
$plugin_slug = ( isset( $_POST['slug'] ) ) ? $_POST['slug'] : '';
|
| 64 |
-
$plugin_file = ( isset( $_POST['file'] ) ) ? $_POST['file'] : '';
|
| 65 |
|
| 66 |
if( empty( $plugin_file ) || empty( $plugin_slug ) ) {
|
| 67 |
wp_send_json_error( __( 'You don\'t have set any slug and file name to install the plugins', 'essential-addons-for-elementor-lite' ) );
|
|
@@ -103,4 +103,4 @@ class WPDeveloper_Core_Installer {
|
|
| 103 |
|
| 104 |
return activate_plugin( $plugin_basename );
|
| 105 |
}
|
| 106 |
-
}
|
| 60 |
wp_send_json_error( __( 'You don\'t have permission to install the plugins', 'essential-addons-for-elementor-lite' ) );
|
| 61 |
}
|
| 62 |
|
| 63 |
+
$plugin_slug = ( isset( $_POST['slug'] ) ) ? sanitize_text_field( $_POST['slug'] ) : '';
|
| 64 |
+
$plugin_file = ( isset( $_POST['file'] ) ) ? sanitize_text_field( $_POST['file'] ) : '';
|
| 65 |
|
| 66 |
if( empty( $plugin_file ) || empty( $plugin_slug ) ) {
|
| 67 |
wp_send_json_error( __( 'You don\'t have set any slug and file name to install the plugins', 'essential-addons-for-elementor-lite' ) );
|
| 103 |
|
| 104 |
return activate_plugin( $plugin_basename );
|
| 105 |
}
|
| 106 |
+
}
|
includes/Classes/WPDeveloper_Notice.php
CHANGED
|
@@ -73,14 +73,7 @@ class WPDeveloper_Notice {
|
|
| 73 |
* @var array
|
| 74 |
*/
|
| 75 |
public $options_args = array(
|
| 76 |
-
|
| 77 |
-
// 'notice_will_show' => [
|
| 78 |
-
// 'opt_in' => true,
|
| 79 |
-
// 'first_install' => false,
|
| 80 |
-
// 'update' => true,
|
| 81 |
-
// 'review' => true,
|
| 82 |
-
// 'upsale' => true,
|
| 83 |
-
// ]
|
| 84 |
);
|
| 85 |
/**
|
| 86 |
* Notice ID for users.
|
|
@@ -331,7 +324,7 @@ class WPDeveloper_Notice {
|
|
| 331 |
private function redirect_to(){
|
| 332 |
$request_uri = parse_url( $_SERVER['REQUEST_URI'], PHP_URL_PATH );
|
| 333 |
$query_string = parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY );
|
| 334 |
-
|
| 335 |
|
| 336 |
$unset_array = array( 'dismiss', 'plugin', '_wpnonce', 'later', 'plugin_action', 'marketing_optin' );
|
| 337 |
|
|
@@ -448,7 +441,7 @@ class WPDeveloper_Notice {
|
|
| 448 |
if( empty( $plugin_slug ) ) {
|
| 449 |
return;
|
| 450 |
}
|
| 451 |
-
echo '<button data-slug="'. $plugin_slug .'" id="plugin-install-core-'. $this->plugin_name .'" class="button button-primary">'. $btn_text .'</button>';
|
| 452 |
}
|
| 453 |
/**
|
| 454 |
* This methods is responsible for get notice image.
|
|
@@ -460,7 +453,7 @@ class WPDeveloper_Notice {
|
|
| 460 |
$output = '';
|
| 461 |
if( isset( $this->data['thumbnail'] ) && isset( $this->data['thumbnail'][ $msg_for ] ) ) {
|
| 462 |
$output = '<div class="wpdeveloper-notice-thumbnail">';
|
| 463 |
-
$output .= '<img src="'. $this->data['thumbnail'][ $msg_for ] .'" alt="">';
|
| 464 |
$output .= '</div>';
|
| 465 |
}
|
| 466 |
echo $output;
|
|
@@ -489,7 +482,7 @@ class WPDeveloper_Notice {
|
|
| 489 |
protected function get_message( $msg_for ){
|
| 490 |
if( isset( $this->data['message'] ) && isset( $this->data['message'][ $msg_for ] ) ) {
|
| 491 |
echo '<div class="wpdeveloper-notice-message">';
|
| 492 |
-
echo $this->data['message'][ $msg_for ];
|
| 493 |
if( $msg_for === 'upsale' ) {
|
| 494 |
$this->upsale_button();
|
| 495 |
}
|
|
@@ -575,7 +568,7 @@ class WPDeveloper_Notice {
|
|
| 575 |
$output .= '<li>';
|
| 576 |
if( isset( $link_value['link'] ) ) {
|
| 577 |
$link = $link_value['link'];
|
| 578 |
-
$target = isset( $link_value['target'] ) ? 'target="'. $link_value['target'] .'"' : '';
|
| 579 |
if( isset( $link_value['data_args'] ) && is_array( $link_value['data_args'] ) ) {
|
| 580 |
$data_args = [];
|
| 581 |
foreach( $link_value['data_args'] as $key => $args_value ) {
|
|
@@ -587,15 +580,15 @@ class WPDeveloper_Notice {
|
|
| 587 |
}
|
| 588 |
$class = '';
|
| 589 |
if( isset( $link_value['link_class'] ) ) {
|
| 590 |
-
$class = 'class="' . implode( ' ', $link_value['link_class'] ) . '"';
|
| 591 |
}
|
| 592 |
$output .= '<a '. $class .' href="'. esc_url( $link ) .'" '. $target .'>';
|
| 593 |
}
|
| 594 |
if( isset( $link_value['icon_class'] ) ) {
|
| 595 |
-
$output .= '<span class="'. $link_value['icon_class'] .'"></span>';
|
| 596 |
}
|
| 597 |
if( isset( $link_value['icon_img'] ) ) {
|
| 598 |
-
$output .= '<img src="'. $link_value['icon_img'] .'" />';
|
| 599 |
}
|
| 600 |
$output .= $link_value['label'];
|
| 601 |
if( isset( $link_value['link'] ) ) {
|
|
@@ -787,8 +780,8 @@ class WPDeveloper_Notice {
|
|
| 787 |
return;
|
| 788 |
}
|
| 789 |
|
| 790 |
-
$dismiss = isset( $_POST['dismiss'] ) ? $_POST['dismiss'] : false;
|
| 791 |
-
$notice = isset( $_POST['notice'] ) ? $_POST['notice'] : false;
|
| 792 |
if( $dismiss ) {
|
| 793 |
$this->update( $notice );
|
| 794 |
update_user_meta( get_current_user_id(), $this->plugin_name . '_' . $notice, true );
|
|
@@ -813,7 +806,7 @@ class WPDeveloper_Notice {
|
|
| 813 |
return;
|
| 814 |
}
|
| 815 |
|
| 816 |
-
$dismiss = isset( $_POST['dismiss'] ) ? $_POST['dismiss'] : false;
|
| 817 |
if( $dismiss ) {
|
| 818 |
$this->update( 'upsale' );
|
| 819 |
echo 'success';
|
|
@@ -832,10 +825,10 @@ class WPDeveloper_Notice {
|
|
| 832 |
$('body').on('click', 'button.notice-dismiss', function (e) {
|
| 833 |
e.preventDefault();
|
| 834 |
$.ajax({
|
| 835 |
-
url: '<?php echo admin_url( 'admin-ajax.php' ); ?>',
|
| 836 |
type: 'post',
|
| 837 |
data: {
|
| 838 |
-
action: 'wpdeveloper_notice_dissmiss_for_<?php echo $this->plugin_name; ?>',
|
| 839 |
_wpnonce: '<?php echo wp_create_nonce('wpdeveloper_notice_dissmiss'); ?>',
|
| 840 |
dismiss: true,
|
| 841 |
notice: wpdevNotice.data('notice'),
|
|
@@ -875,25 +868,25 @@ class WPDeveloper_Notice {
|
|
| 875 |
<script type="text/javascript">
|
| 876 |
jQuery(document).ready( function($) {
|
| 877 |
<?php if( ! empty( $plugin_slug ) && ! empty( $plugin_file ) ) : ?>
|
| 878 |
-
$('#plugin-install-core-<?php echo $this->plugin_name; ?>').on('click', function (e) {
|
| 879 |
var self = $(this);
|
| 880 |
e.preventDefault();
|
| 881 |
self.addClass('install-now updating-message');
|
| 882 |
self.text('<?php echo esc_js( 'Installing...' ); ?>');
|
| 883 |
|
| 884 |
$.ajax({
|
| 885 |
-
url: '<?php echo admin_url( 'admin-ajax.php' ); ?>',
|
| 886 |
type: 'POST',
|
| 887 |
data: {
|
| 888 |
-
action: 'wpdeveloper_upsale_core_install_<?php echo $this->plugin_name; ?>',
|
| 889 |
-
_wpnonce: '<?php echo wp_create_nonce('wpdeveloper_upsale_core_install_' . $this->plugin_name); ?>',
|
| 890 |
-
slug : '<?php echo $plugin_slug; ?>',
|
| 891 |
-
file : '<?php echo $plugin_file; ?>'
|
| 892 |
},
|
| 893 |
success: function(response) {
|
| 894 |
self.text('<?php echo esc_js( 'Installed' ); ?>');
|
| 895 |
<?php if( ! empty( $page_slug ) ) : ?>
|
| 896 |
-
window.location.href = '<?php echo admin_url( "admin.php?page={$page_slug}" ); ?>';
|
| 897 |
<?php endif; ?>
|
| 898 |
},
|
| 899 |
error: function(error) {
|
|
@@ -909,10 +902,10 @@ class WPDeveloper_Notice {
|
|
| 909 |
$('.wpdeveloper-upsale-notice').on('click', 'button.notice-dismiss', function (e) {
|
| 910 |
e.preventDefault();
|
| 911 |
$.ajax({
|
| 912 |
-
url: '<?php echo admin_url( 'admin-ajax.php' ); ?>',
|
| 913 |
type: 'post',
|
| 914 |
data: {
|
| 915 |
-
action: 'wpdeveloper_upsale_notice_dissmiss_for_<?php echo $this->plugin_name; ?>',
|
| 916 |
_wpnonce: '<?php echo wp_create_nonce('wpdeveloper_upsale_notice_dissmiss'); ?>',
|
| 917 |
dismiss: true
|
| 918 |
},
|
|
@@ -932,4 +925,4 @@ class WPDeveloper_Notice {
|
|
| 932 |
|
| 933 |
<?php
|
| 934 |
}
|
| 935 |
-
}
|
| 73 |
* @var array
|
| 74 |
*/
|
| 75 |
public $options_args = array(
|
| 76 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
);
|
| 78 |
/**
|
| 79 |
* Notice ID for users.
|
| 324 |
private function redirect_to(){
|
| 325 |
$request_uri = parse_url( $_SERVER['REQUEST_URI'], PHP_URL_PATH );
|
| 326 |
$query_string = parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY );
|
| 327 |
+
wp_parse_str( $query_string, $current_url );
|
| 328 |
|
| 329 |
$unset_array = array( 'dismiss', 'plugin', '_wpnonce', 'later', 'plugin_action', 'marketing_optin' );
|
| 330 |
|
| 441 |
if( empty( $plugin_slug ) ) {
|
| 442 |
return;
|
| 443 |
}
|
| 444 |
+
echo '<button data-slug="'. esc_attr( $plugin_slug ) .'" id="plugin-install-core-'. $this->plugin_name .'" class="button button-primary">'. esc_html( $btn_text ) .'</button>';
|
| 445 |
}
|
| 446 |
/**
|
| 447 |
* This methods is responsible for get notice image.
|
| 453 |
$output = '';
|
| 454 |
if( isset( $this->data['thumbnail'] ) && isset( $this->data['thumbnail'][ $msg_for ] ) ) {
|
| 455 |
$output = '<div class="wpdeveloper-notice-thumbnail">';
|
| 456 |
+
$output .= '<img src="'. esc_url( $this->data['thumbnail'][ $msg_for ] ) .'" alt="">';
|
| 457 |
$output .= '</div>';
|
| 458 |
}
|
| 459 |
echo $output;
|
| 482 |
protected function get_message( $msg_for ){
|
| 483 |
if( isset( $this->data['message'] ) && isset( $this->data['message'][ $msg_for ] ) ) {
|
| 484 |
echo '<div class="wpdeveloper-notice-message">';
|
| 485 |
+
echo esc_html( $this->data['message'][ $msg_for ] );
|
| 486 |
if( $msg_for === 'upsale' ) {
|
| 487 |
$this->upsale_button();
|
| 488 |
}
|
| 568 |
$output .= '<li>';
|
| 569 |
if( isset( $link_value['link'] ) ) {
|
| 570 |
$link = $link_value['link'];
|
| 571 |
+
$target = isset( $link_value['target'] ) ? 'target="'. esc_attr( $link_value['target'] ) .'"' : '';
|
| 572 |
if( isset( $link_value['data_args'] ) && is_array( $link_value['data_args'] ) ) {
|
| 573 |
$data_args = [];
|
| 574 |
foreach( $link_value['data_args'] as $key => $args_value ) {
|
| 580 |
}
|
| 581 |
$class = '';
|
| 582 |
if( isset( $link_value['link_class'] ) ) {
|
| 583 |
+
$class = 'class="' . sanitize_html_class( implode( ' ', $link_value['link_class'] ) ) . '"';
|
| 584 |
}
|
| 585 |
$output .= '<a '. $class .' href="'. esc_url( $link ) .'" '. $target .'>';
|
| 586 |
}
|
| 587 |
if( isset( $link_value['icon_class'] ) ) {
|
| 588 |
+
$output .= '<span class="'. esc_attr( $link_value['icon_class'] ) .'"></span>';
|
| 589 |
}
|
| 590 |
if( isset( $link_value['icon_img'] ) ) {
|
| 591 |
+
$output .= '<img src="'. esc_url( $link_value['icon_img'] ) .'" alt="" />';
|
| 592 |
}
|
| 593 |
$output .= $link_value['label'];
|
| 594 |
if( isset( $link_value['link'] ) ) {
|
| 780 |
return;
|
| 781 |
}
|
| 782 |
|
| 783 |
+
$dismiss = isset( $_POST['dismiss'] ) ? sanitize_text_field( $_POST['dismiss'] ) : false;
|
| 784 |
+
$notice = isset( $_POST['notice'] ) ? sanitize_text_field( $_POST['notice'] ) : false;
|
| 785 |
if( $dismiss ) {
|
| 786 |
$this->update( $notice );
|
| 787 |
update_user_meta( get_current_user_id(), $this->plugin_name . '_' . $notice, true );
|
| 806 |
return;
|
| 807 |
}
|
| 808 |
|
| 809 |
+
$dismiss = isset( $_POST['dismiss'] ) ? sanitize_text_field( $_POST['dismiss'] ) : false;
|
| 810 |
if( $dismiss ) {
|
| 811 |
$this->update( 'upsale' );
|
| 812 |
echo 'success';
|
| 825 |
$('body').on('click', 'button.notice-dismiss', function (e) {
|
| 826 |
e.preventDefault();
|
| 827 |
$.ajax({
|
| 828 |
+
url: '<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>',
|
| 829 |
type: 'post',
|
| 830 |
data: {
|
| 831 |
+
action: 'wpdeveloper_notice_dissmiss_for_<?php echo esc_html( $this->plugin_name ); ?>',
|
| 832 |
_wpnonce: '<?php echo wp_create_nonce('wpdeveloper_notice_dissmiss'); ?>',
|
| 833 |
dismiss: true,
|
| 834 |
notice: wpdevNotice.data('notice'),
|
| 868 |
<script type="text/javascript">
|
| 869 |
jQuery(document).ready( function($) {
|
| 870 |
<?php if( ! empty( $plugin_slug ) && ! empty( $plugin_file ) ) : ?>
|
| 871 |
+
$('#plugin-install-core-<?php echo esc_html( $this->plugin_name ); ?>').on('click', function (e) {
|
| 872 |
var self = $(this);
|
| 873 |
e.preventDefault();
|
| 874 |
self.addClass('install-now updating-message');
|
| 875 |
self.text('<?php echo esc_js( 'Installing...' ); ?>');
|
| 876 |
|
| 877 |
$.ajax({
|
| 878 |
+
url: '<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>',
|
| 879 |
type: 'POST',
|
| 880 |
data: {
|
| 881 |
+
action: 'wpdeveloper_upsale_core_install_<?php echo esc_html( $this->plugin_name ); ?>',
|
| 882 |
+
_wpnonce: '<?php echo wp_create_nonce('wpdeveloper_upsale_core_install_' . esc_html( $this->plugin_name )); ?>',
|
| 883 |
+
slug : '<?php echo esc_html( $plugin_slug ); ?>',
|
| 884 |
+
file : '<?php echo esc_html( $plugin_file ); ?>'
|
| 885 |
},
|
| 886 |
success: function(response) {
|
| 887 |
self.text('<?php echo esc_js( 'Installed' ); ?>');
|
| 888 |
<?php if( ! empty( $page_slug ) ) : ?>
|
| 889 |
+
window.location.href = '<?php echo esc_url( admin_url( "admin.php?page={$page_slug}" ) ); ?>';
|
| 890 |
<?php endif; ?>
|
| 891 |
},
|
| 892 |
error: function(error) {
|
| 902 |
$('.wpdeveloper-upsale-notice').on('click', 'button.notice-dismiss', function (e) {
|
| 903 |
e.preventDefault();
|
| 904 |
$.ajax({
|
| 905 |
+
url: '<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>',
|
| 906 |
type: 'post',
|
| 907 |
data: {
|
| 908 |
+
action: 'wpdeveloper_upsale_notice_dissmiss_for_<?php echo esc_html( $this->plugin_name ); ?>',
|
| 909 |
_wpnonce: '<?php echo wp_create_nonce('wpdeveloper_upsale_notice_dissmiss'); ?>',
|
| 910 |
dismiss: true
|
| 911 |
},
|
| 925 |
|
| 926 |
<?php
|
| 927 |
}
|
| 928 |
+
}
|
includes/Classes/WPDeveloper_Plugin_Installer.php
CHANGED
|
@@ -151,12 +151,12 @@ class WPDeveloper_Plugin_Installer
|
|
| 151 |
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
| 152 |
}
|
| 153 |
|
| 154 |
-
|
| 155 |
-
|
| 156 |
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
|
| 161 |
wp_send_json_success(__('Plugin is installed successfully!', 'essential-addons-for-elementor-lite'));
|
| 162 |
}
|
|
@@ -168,8 +168,9 @@ class WPDeveloper_Plugin_Installer
|
|
| 168 |
if(!current_user_can( 'update_plugins' )) {
|
| 169 |
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
| 170 |
}
|
| 171 |
-
|
| 172 |
-
|
|
|
|
| 173 |
|
| 174 |
if (is_wp_error($result)) {
|
| 175 |
wp_send_json_error($result->get_error_message());
|
|
@@ -187,12 +188,12 @@ class WPDeveloper_Plugin_Installer
|
|
| 187 |
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
| 188 |
}
|
| 189 |
|
| 190 |
-
|
| 191 |
-
|
| 192 |
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
|
| 197 |
if ($result === false) {
|
| 198 |
wp_send_json_error(__('Plugin couldn\'t be activated.', 'essential-addons-for-elementor-lite'));
|
| 151 |
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
| 152 |
}
|
| 153 |
|
| 154 |
+
$slug = isset( $_POST['slug'] ) ? sanitize_text_field( $_POST['slug'] ) : '';
|
| 155 |
+
$result = $this->install_plugin( $slug );
|
| 156 |
|
| 157 |
+
if ( is_wp_error( $result ) ) {
|
| 158 |
+
wp_send_json_error( $result->get_error_message() );
|
| 159 |
+
}
|
| 160 |
|
| 161 |
wp_send_json_success(__('Plugin is installed successfully!', 'essential-addons-for-elementor-lite'));
|
| 162 |
}
|
| 168 |
if(!current_user_can( 'update_plugins' )) {
|
| 169 |
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
| 170 |
}
|
| 171 |
+
|
| 172 |
+
$basename = isset( $_POST['basename'] ) ? sanitize_text_field( $_POST['basename'] ) : '';
|
| 173 |
+
$result = $this->upgrade_plugin( $basename );
|
| 174 |
|
| 175 |
if (is_wp_error($result)) {
|
| 176 |
wp_send_json_error($result->get_error_message());
|
| 188 |
wp_send_json_error(__('you are not allowed to do this action', 'essential-addons-for-elementor-lite'));
|
| 189 |
}
|
| 190 |
|
| 191 |
+
$basename = isset( $_POST['basename'] ) ? sanitize_text_field( $_POST['basename'] ) : '';
|
| 192 |
+
$result = activate_plugin( $basename, '', false, true );
|
| 193 |
|
| 194 |
+
if ( is_wp_error( $result ) ) {
|
| 195 |
+
wp_send_json_error( $result->get_error_message() );
|
| 196 |
+
}
|
| 197 |
|
| 198 |
if ($result === false) {
|
| 199 |
wp_send_json_error(__('Plugin couldn\'t be activated.', 'essential-addons-for-elementor-lite'));
|
includes/Classes/WPDeveloper_Setup_Wizard.php
CHANGED
|
@@ -50,7 +50,7 @@ class WPDeveloper_Setup_Wizard {
|
|
| 50 |
wp_enqueue_script( 'sweetalert2-core-js', EAEL_PLUGIN_URL . 'assets/admin/vendor/sweetalert2/js/core.js', array( 'jquery' ), EAEL_PLUGIN_VERSION, true );
|
| 51 |
wp_enqueue_script( 'essential_addons_elementor-setup-wizard-js', EAEL_PLUGIN_URL . 'assets/admin/js/admin.js', array( 'jquery' ), EAEL_PLUGIN_VERSION, true );
|
| 52 |
wp_localize_script( 'essential_addons_elementor-setup-wizard-js', 'localize', array(
|
| 53 |
-
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
| 54 |
'nonce' => wp_create_nonce( 'essential-addons-elementor' ),
|
| 55 |
'success_image' => EAEL_PLUGIN_URL . 'assets/admin/images/quick-setup/success.gif',
|
| 56 |
) );
|
|
@@ -105,12 +105,12 @@ class WPDeveloper_Setup_Wizard {
|
|
| 105 |
];
|
| 106 |
$i = 0;
|
| 107 |
?>
|
| 108 |
-
<ul class="eael-quick-setup-wizard <?php echo $wizard_column; ?>" data-step="1">
|
| 109 |
<?php foreach ( $items as $item ): ?>
|
| 110 |
<?php if ( $item == 'Templately' && $this->templately_status || ( $this->get_local_plugin_data( 'templately/templately.php' ) !== false && $item == 'Templately' ) ) continue; ?>
|
| 111 |
-
<li class="eael-quick-setup-step active <?php echo strtolower($item); ?>">
|
| 112 |
<div class="eael-quick-setup-icon"><?php echo ++$i; ?></div>
|
| 113 |
-
<div class="eael-quick-setup-name"><?php echo $item; ?></div>
|
| 114 |
</li>
|
| 115 |
<?php endforeach; ?>
|
| 116 |
</ul>
|
|
@@ -236,9 +236,9 @@ class WPDeveloper_Setup_Wizard {
|
|
| 236 |
$init++;
|
| 237 |
$disable = ( $init > 2 ) ? 'eael-quick-setup-post-grid-panel-disable' : '';
|
| 238 |
?>
|
| 239 |
-
<div class="eael-quick-setup-post-grid-panel <?php echo $disable; ?>">
|
| 240 |
<h3 class="eael-quick-setup-post-grid-panel-title"><?php echo esc_html( $item[ 'title' ] ); ?></h3>
|
| 241 |
-
<div class="eael-quick-setup-post-grid-wrapper eael-<?php echo $key; ?>">
|
| 242 |
<?php foreach ( $item[ 'elements' ] as $element ):
|
| 243 |
$preferences = $checked = '';
|
| 244 |
if ( isset( $element[ 'preferences' ] ) ) {
|
|
@@ -249,11 +249,11 @@ class WPDeveloper_Setup_Wizard {
|
|
| 249 |
}
|
| 250 |
?>
|
| 251 |
<div class="eael-quick-setup-post-grid">
|
| 252 |
-
<h3 class="eael-quick-setup-title"><?php echo $element[ 'title' ]; ?></h3>
|
| 253 |
<label class="eael-quick-setup-toggler">
|
| 254 |
-
<input data-preferences="<?php echo $preferences; ?>" type="checkbox"
|
| 255 |
-
class="eael-element" id="<?php echo $element[ 'key' ]; ?>"
|
| 256 |
-
name="eael_element[<?php echo $element[ 'key' ]; ?>]"
|
| 257 |
<?php echo $checked; ?> >
|
| 258 |
<span class="eael-quick-setup-toggler-icons"></span>
|
| 259 |
</label>
|
|
@@ -291,8 +291,8 @@ class WPDeveloper_Setup_Wizard {
|
|
| 291 |
<a target="_blank" href="<?php echo esc_url( $elements[ 'link' ] ); ?>"
|
| 292 |
class="eael-quick-setup-content">
|
| 293 |
<span class="eael-quick-setup-icon">
|
| 294 |
-
<img src="<?php echo $elements[ 'logo' ]; ?>"
|
| 295 |
-
alt="<?php echo $elements[ 'title' ]; ?>">
|
| 296 |
</span>
|
| 297 |
<p class="eael-quick-setup-title"><?php echo esc_html( $elements[ 'title' ] ); ?></p>
|
| 298 |
</a>
|
|
@@ -362,22 +362,22 @@ class WPDeveloper_Setup_Wizard {
|
|
| 362 |
<?php foreach ( $this->get_plugin_list() as $plugin ) { ?>
|
| 363 |
<div class=" eael-quick-setup-admin-block eael-quick-setup-admin-block-integrations">
|
| 364 |
<span class="eael-quick-setup-logo">
|
| 365 |
-
<img src="<?php echo $plugin[ 'logo' ]; ?>" alt="logo"/>
|
| 366 |
</span>
|
| 367 |
-
<h4 class="eael-quick-setup-title"><?php echo $plugin[ 'title' ]; ?></h4>
|
| 368 |
-
<p class="eael-quick-setup-text"><?php echo $plugin[ 'desc' ]; ?></p>
|
| 369 |
|
| 370 |
<?php if ( $this->get_local_plugin_data( $plugin[ 'basename' ] ) === false ) { ?>
|
| 371 |
<button class="wpdeveloper-plugin-installer eael-quick-setup-wpdeveloper-plugin-installer"
|
| 372 |
data-action="install"
|
| 373 |
-
data-slug="<?php echo $plugin[ 'slug' ]; ?>"><?php _e( 'Install', 'essential-addons-for-elementor-lite' ); ?></button>
|
| 374 |
<?php } else { ?>
|
| 375 |
<?php if ( is_plugin_active( $plugin[ 'basename' ] ) ) { ?>
|
| 376 |
<button class="wpdeveloper-plugin-installer button__white-not-hover eael-quick-setup-wpdeveloper-plugin-installer"><?php _e( 'Activated', 'essential-addons-for-elementor-lite' ); ?></button>
|
| 377 |
<?php } else { ?>
|
| 378 |
<button class="wpdeveloper-plugin-installer eael-quick-setup-wpdeveloper-plugin-installer"
|
| 379 |
data-action="activate"
|
| 380 |
-
data-basename="<?php echo $plugin[ 'basename' ]; ?>"><?php _e( 'Activate', 'essential-addons-for-elementor-lite' ); ?></button>
|
| 381 |
<?php } ?>
|
| 382 |
<?php } ?>
|
| 383 |
</div>
|
|
@@ -521,14 +521,14 @@ class WPDeveloper_Setup_Wizard {
|
|
| 521 |
return;
|
| 522 |
}
|
| 523 |
|
| 524 |
-
|
| 525 |
|
| 526 |
if ( isset( $fields[ 'eael_user_email_address' ] ) && intval( $fields[ 'eael_user_email_address' ] ) == 1 ) {
|
| 527 |
$this->wpins_process();
|
| 528 |
}
|
| 529 |
update_option( 'eael_setup_wizard', 'complete' );
|
| 530 |
if ( $this->save_element_list( $fields ) ) {
|
| 531 |
-
wp_send_json_success( [ 'redirect_url' => admin_url( 'admin.php?page=eael-settings' ) ] );
|
| 532 |
}
|
| 533 |
wp_send_json_error();
|
| 534 |
}
|
|
@@ -547,7 +547,7 @@ class WPDeveloper_Setup_Wizard {
|
|
| 547 |
return;
|
| 548 |
}
|
| 549 |
|
| 550 |
-
|
| 551 |
|
| 552 |
if ( $this->save_element_list( $fields ) ) {
|
| 553 |
wp_send_json_success();
|
|
@@ -920,6 +920,7 @@ class WPDeveloper_Setup_Wizard {
|
|
| 920 |
'crowdfundly-single-campaign' => 1,
|
| 921 |
'crowdfundly-organization' => 1,
|
| 922 |
'crowdfundly-all-campaign' => 1,
|
|
|
|
| 923 |
];
|
| 924 |
}
|
| 925 |
}
|
| 50 |
wp_enqueue_script( 'sweetalert2-core-js', EAEL_PLUGIN_URL . 'assets/admin/vendor/sweetalert2/js/core.js', array( 'jquery' ), EAEL_PLUGIN_VERSION, true );
|
| 51 |
wp_enqueue_script( 'essential_addons_elementor-setup-wizard-js', EAEL_PLUGIN_URL . 'assets/admin/js/admin.js', array( 'jquery' ), EAEL_PLUGIN_VERSION, true );
|
| 52 |
wp_localize_script( 'essential_addons_elementor-setup-wizard-js', 'localize', array(
|
| 53 |
+
'ajaxurl' => esc_url( admin_url( 'admin-ajax.php' ) ),
|
| 54 |
'nonce' => wp_create_nonce( 'essential-addons-elementor' ),
|
| 55 |
'success_image' => EAEL_PLUGIN_URL . 'assets/admin/images/quick-setup/success.gif',
|
| 56 |
) );
|
| 105 |
];
|
| 106 |
$i = 0;
|
| 107 |
?>
|
| 108 |
+
<ul class="eael-quick-setup-wizard <?php echo esc_attr( $wizard_column ); ?>" data-step="1">
|
| 109 |
<?php foreach ( $items as $item ): ?>
|
| 110 |
<?php if ( $item == 'Templately' && $this->templately_status || ( $this->get_local_plugin_data( 'templately/templately.php' ) !== false && $item == 'Templately' ) ) continue; ?>
|
| 111 |
+
<li class="eael-quick-setup-step active <?php echo esc_attr( strtolower($item) ); ?>">
|
| 112 |
<div class="eael-quick-setup-icon"><?php echo ++$i; ?></div>
|
| 113 |
+
<div class="eael-quick-setup-name"><?php echo esc_html( $item ); ?></div>
|
| 114 |
</li>
|
| 115 |
<?php endforeach; ?>
|
| 116 |
</ul>
|
| 236 |
$init++;
|
| 237 |
$disable = ( $init > 2 ) ? 'eael-quick-setup-post-grid-panel-disable' : '';
|
| 238 |
?>
|
| 239 |
+
<div class="eael-quick-setup-post-grid-panel <?php echo esc_attr( $disable ); ?>">
|
| 240 |
<h3 class="eael-quick-setup-post-grid-panel-title"><?php echo esc_html( $item[ 'title' ] ); ?></h3>
|
| 241 |
+
<div class="eael-quick-setup-post-grid-wrapper eael-<?php echo esc_attr( $key ); ?>">
|
| 242 |
<?php foreach ( $item[ 'elements' ] as $element ):
|
| 243 |
$preferences = $checked = '';
|
| 244 |
if ( isset( $element[ 'preferences' ] ) ) {
|
| 249 |
}
|
| 250 |
?>
|
| 251 |
<div class="eael-quick-setup-post-grid">
|
| 252 |
+
<h3 class="eael-quick-setup-title"><?php echo esc_html( $element[ 'title' ] ); ?></h3>
|
| 253 |
<label class="eael-quick-setup-toggler">
|
| 254 |
+
<input data-preferences="<?php echo esc_attr( $preferences ); ?>" type="checkbox"
|
| 255 |
+
class="eael-element" id="<?php echo esc_attr( $element[ 'key' ] ); ?>"
|
| 256 |
+
name="eael_element[<?php echo esc_attr( $element[ 'key' ] ); ?>]"
|
| 257 |
<?php echo $checked; ?> >
|
| 258 |
<span class="eael-quick-setup-toggler-icons"></span>
|
| 259 |
</label>
|
| 291 |
<a target="_blank" href="<?php echo esc_url( $elements[ 'link' ] ); ?>"
|
| 292 |
class="eael-quick-setup-content">
|
| 293 |
<span class="eael-quick-setup-icon">
|
| 294 |
+
<img src="<?php echo esc_url( $elements[ 'logo' ] ); ?>"
|
| 295 |
+
alt="<?php echo esc_attr( $elements[ 'title' ] ); ?>">
|
| 296 |
</span>
|
| 297 |
<p class="eael-quick-setup-title"><?php echo esc_html( $elements[ 'title' ] ); ?></p>
|
| 298 |
</a>
|
| 362 |
<?php foreach ( $this->get_plugin_list() as $plugin ) { ?>
|
| 363 |
<div class=" eael-quick-setup-admin-block eael-quick-setup-admin-block-integrations">
|
| 364 |
<span class="eael-quick-setup-logo">
|
| 365 |
+
<img src="<?php echo esc_url( $plugin[ 'logo' ] ); ?>" alt="logo"/>
|
| 366 |
</span>
|
| 367 |
+
<h4 class="eael-quick-setup-title"><?php echo esc_html( $plugin[ 'title' ] ); ?></h4>
|
| 368 |
+
<p class="eael-quick-setup-text"><?php echo esc_textarea( $plugin[ 'desc' ] ) ; ?></p>
|
| 369 |
|
| 370 |
<?php if ( $this->get_local_plugin_data( $plugin[ 'basename' ] ) === false ) { ?>
|
| 371 |
<button class="wpdeveloper-plugin-installer eael-quick-setup-wpdeveloper-plugin-installer"
|
| 372 |
data-action="install"
|
| 373 |
+
data-slug="<?php echo esc_attr( $plugin[ 'slug' ] ); ?>"><?php _e( 'Install', 'essential-addons-for-elementor-lite' ); ?></button>
|
| 374 |
<?php } else { ?>
|
| 375 |
<?php if ( is_plugin_active( $plugin[ 'basename' ] ) ) { ?>
|
| 376 |
<button class="wpdeveloper-plugin-installer button__white-not-hover eael-quick-setup-wpdeveloper-plugin-installer"><?php _e( 'Activated', 'essential-addons-for-elementor-lite' ); ?></button>
|
| 377 |
<?php } else { ?>
|
| 378 |
<button class="wpdeveloper-plugin-installer eael-quick-setup-wpdeveloper-plugin-installer"
|
| 379 |
data-action="activate"
|
| 380 |
+
data-basename="<?php echo esc_attr( $plugin[ 'basename' ] ); ?>"><?php _e( 'Activate', 'essential-addons-for-elementor-lite' ); ?></button>
|
| 381 |
<?php } ?>
|
| 382 |
<?php } ?>
|
| 383 |
</div>
|
| 521 |
return;
|
| 522 |
}
|
| 523 |
|
| 524 |
+
wp_parse_str( $_POST[ 'fields' ], $fields );
|
| 525 |
|
| 526 |
if ( isset( $fields[ 'eael_user_email_address' ] ) && intval( $fields[ 'eael_user_email_address' ] ) == 1 ) {
|
| 527 |
$this->wpins_process();
|
| 528 |
}
|
| 529 |
update_option( 'eael_setup_wizard', 'complete' );
|
| 530 |
if ( $this->save_element_list( $fields ) ) {
|
| 531 |
+
wp_send_json_success( [ 'redirect_url' => esc_url( admin_url( 'admin.php?page=eael-settings' ) ) ] );
|
| 532 |
}
|
| 533 |
wp_send_json_error();
|
| 534 |
}
|
| 547 |
return;
|
| 548 |
}
|
| 549 |
|
| 550 |
+
wp_parse_str( $_POST[ 'fields' ], $fields );
|
| 551 |
|
| 552 |
if ( $this->save_element_list( $fields ) ) {
|
| 553 |
wp_send_json_success();
|
| 920 |
'crowdfundly-single-campaign' => 1,
|
| 921 |
'crowdfundly-organization' => 1,
|
| 922 |
'crowdfundly-all-campaign' => 1,
|
| 923 |
+
'better-payment' => 1,
|
| 924 |
];
|
| 925 |
}
|
| 926 |
}
|
includes/Controls/Select2.php
CHANGED
|
@@ -24,7 +24,7 @@ class Select2 extends Base_Data_Control
|
|
| 24 |
'eael-select2',
|
| 25 |
'eael_select2_localize',
|
| 26 |
[
|
| 27 |
-
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
| 28 |
'search_text' => esc_html__( 'Search', 'essential-addons-for-elementor-lite' ),
|
| 29 |
'remove' => __( 'Remove', 'essential-addons-for-elementor-lite' ),
|
| 30 |
'thumbnail' => __( 'Image', 'essential-addons-for-elementor-lite' ),
|
|
@@ -50,15 +50,15 @@ class Select2 extends Base_Data_Control
|
|
| 50 |
{
|
| 51 |
$control_uid = $this->get_control_uid();
|
| 52 |
?>
|
| 53 |
-
<# var controlUID = '<?php echo $control_uid; ?>'; #>
|
| 54 |
<# var currentID = elementor.panel.currentView.currentPageView.model.attributes.settings.attributes[data.name]; #>
|
| 55 |
<div class="elementor-control-field">
|
| 56 |
<# if ( data.label ) { #>
|
| 57 |
-
<label for="<?php echo $control_uid; ?>" class="elementor-control-title">{{{data.label }}}</label>
|
| 58 |
<# } #>
|
| 59 |
<div class="elementor-control-input-wrapper elementor-control-unit-5">
|
| 60 |
<# var multiple = ( data.multiple ) ? 'multiple' : ''; #>
|
| 61 |
-
<select id="<?php echo $control_uid; ?>" {{ multiple }} class="ea-select2" data-setting="{{ data.name }}"></select>
|
| 62 |
</div>
|
| 63 |
</div>
|
| 64 |
<#
|
| 24 |
'eael-select2',
|
| 25 |
'eael_select2_localize',
|
| 26 |
[
|
| 27 |
+
'ajaxurl' => esc_url( admin_url( 'admin-ajax.php' ) ),
|
| 28 |
'search_text' => esc_html__( 'Search', 'essential-addons-for-elementor-lite' ),
|
| 29 |
'remove' => __( 'Remove', 'essential-addons-for-elementor-lite' ),
|
| 30 |
'thumbnail' => __( 'Image', 'essential-addons-for-elementor-lite' ),
|
| 50 |
{
|
| 51 |
$control_uid = $this->get_control_uid();
|
| 52 |
?>
|
| 53 |
+
<# var controlUID = '<?php echo esc_html( $control_uid ); ?>'; #>
|
| 54 |
<# var currentID = elementor.panel.currentView.currentPageView.model.attributes.settings.attributes[data.name]; #>
|
| 55 |
<div class="elementor-control-field">
|
| 56 |
<# if ( data.label ) { #>
|
| 57 |
+
<label for="<?php echo esc_attr( $control_uid ); ?>" class="elementor-control-title">{{{data.label }}}</label>
|
| 58 |
<# } #>
|
| 59 |
<div class="elementor-control-input-wrapper elementor-control-unit-5">
|
| 60 |
<# var multiple = ( data.multiple ) ? 'multiple' : ''; #>
|
| 61 |
+
<select id="<?php echo esc_attr( $control_uid ); ?>" {{ multiple }} class="ea-select2" data-setting="{{ data.name }}"></select>
|
| 62 |
</div>
|
| 63 |
</div>
|
| 64 |
<#
|
includes/Elements/Info_Box.php
CHANGED
|
@@ -1634,7 +1634,7 @@ if ('yes' == $settings['eael_show_infobox_clickable']): ?></a><?php endif;
|
|
| 1634 |
ob_start();
|
| 1635 |
?>
|
| 1636 |
<div <?php echo $this->get_render_attribute_string('infobox_content'); ?>>
|
| 1637 |
-
<<?php echo $settings['eael_infobox_title_tag']; ?> class="title"><?php echo $settings['eael_infobox_title']; ?></<?php echo $settings['eael_infobox_title_tag']; ?>>
|
| 1638 |
<?php if ('yes' == $settings['eael_show_infobox_content']): ?>
|
| 1639 |
<?php if ('content' === $settings['eael_infobox_text_type']): ?>
|
| 1640 |
<?php if (!empty($settings['eael_infobox_text'])): ?>
|
| 1634 |
ob_start();
|
| 1635 |
?>
|
| 1636 |
<div <?php echo $this->get_render_attribute_string('infobox_content'); ?>>
|
| 1637 |
+
<<?php echo Helper::eael_validate_html_tag( $settings['eael_infobox_title_tag'] ); ?> class="title"><?php echo $settings['eael_infobox_title']; ?></<?php echo Helper::eael_validate_html_tag( $settings['eael_infobox_title_tag'] ); ?>>
|
| 1638 |
<?php if ('yes' == $settings['eael_show_infobox_content']): ?>
|
| 1639 |
<?php if ('content' === $settings['eael_infobox_text_type']): ?>
|
| 1640 |
<?php if (!empty($settings['eael_infobox_text'])): ?>
|
includes/Elements/Woo_Product_Carousel.php
CHANGED
|
@@ -3089,22 +3089,7 @@ class Woo_Product_Carousel extends Widget_Base {
|
|
| 3089 |
}
|
| 3090 |
|
| 3091 |
if ( $filter == 'sale-products' ) {
|
| 3092 |
-
$
|
| 3093 |
-
$args[ 'meta_query' ][ $count ] = [
|
| 3094 |
-
'relation' => 'OR',
|
| 3095 |
-
[
|
| 3096 |
-
'key' => '_sale_price',
|
| 3097 |
-
'value' => 0,
|
| 3098 |
-
'compare' => '>',
|
| 3099 |
-
'type' => 'numeric',
|
| 3100 |
-
],
|
| 3101 |
-
[
|
| 3102 |
-
'key' => '_min_variation_sale_price',
|
| 3103 |
-
'value' => 0,
|
| 3104 |
-
'compare' => '>',
|
| 3105 |
-
'type' => 'numeric',
|
| 3106 |
-
],
|
| 3107 |
-
];
|
| 3108 |
}
|
| 3109 |
|
| 3110 |
|
| 3089 |
}
|
| 3090 |
|
| 3091 |
if ( $filter == 'sale-products' ) {
|
| 3092 |
+
$args['post__in'] = array_merge( [ 0 ], wc_get_product_ids_on_sale() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3093 |
}
|
| 3094 |
|
| 3095 |
|
includes/Extensions/Post_Duplicator.php
CHANGED
|
@@ -67,7 +67,7 @@ class Post_Duplicator {
|
|
| 67 |
|
| 68 |
$nonce = isset( $_REQUEST['_wpnonce'] ) && ! empty( $_REQUEST['_wpnonce'] ) ? $_REQUEST['_wpnonce'] : null;
|
| 69 |
$post_id = isset( $_REQUEST['post'] ) && ! empty( $_REQUEST['post'] ) ? intval( $_REQUEST['post'] ) : null;
|
| 70 |
-
$action = isset( $_REQUEST['action'] ) && ! empty( $_REQUEST['action'] ) ? trim( $_REQUEST['action'] ) : null;
|
| 71 |
|
| 72 |
if ( is_null( $nonce ) || is_null( $post_id ) || $action !== 'eae_duplicate' ) {
|
| 73 |
return; // Return if action is not eae_duplicate
|
| 67 |
|
| 68 |
$nonce = isset( $_REQUEST['_wpnonce'] ) && ! empty( $_REQUEST['_wpnonce'] ) ? $_REQUEST['_wpnonce'] : null;
|
| 69 |
$post_id = isset( $_REQUEST['post'] ) && ! empty( $_REQUEST['post'] ) ? intval( $_REQUEST['post'] ) : null;
|
| 70 |
+
$action = isset( $_REQUEST['action'] ) && ! empty( $_REQUEST['action'] ) ? trim( sanitize_text_field( $_REQUEST['action'] ) ) : null;
|
| 71 |
|
| 72 |
if ( is_null( $nonce ) || is_null( $post_id ) || $action !== 'eae_duplicate' ) {
|
| 73 |
return; // Return if action is not eae_duplicate
|
includes/Template/Betterdocs-Category-Grid/Layout_2.php
CHANGED
|
@@ -77,13 +77,13 @@ echo '<article class="eael-better-docs-category-grid-post layout-2" data-id="' .
|
|
| 77 |
echo '<span class="eael-bd-grid-sub-cat-title">';
|
| 78 |
|
| 79 |
if (isset($settings['nested_list_title_closed_icon']['value']['url']) && !empty($settings['nested_list_title_closed_icon']['value']['url'])) {
|
| 80 |
-
echo '<img class="toggle-arrow arrow-right" src="' . $settings['nested_list_title_closed_icon']['value']['url'] . '" />';
|
| 81 |
} else {
|
| 82 |
echo '<i class="' . $settings['nested_list_title_closed_icon']['value'] . ' toggle-arrow arrow-right"></i>';
|
| 83 |
}
|
| 84 |
|
| 85 |
if (isset($settings['nested_list_title_open_icon']['value']['url']) && !empty($settings['nested_list_title_open_icon']['value']['url'])) {
|
| 86 |
-
echo '<img class="toggle-arrow arrow-down" src="' . $settings['nested_list_title_open_icon']['value']['url'] . '" />';
|
| 87 |
} else {
|
| 88 |
echo '<i class="' . $settings['nested_list_title_open_icon']['value'] . ' toggle-arrow arrow-down"></i>';
|
| 89 |
}
|
|
@@ -111,7 +111,7 @@ echo '<article class="eael-better-docs-category-grid-post layout-2" data-id="' .
|
|
| 111 |
$sub_attr = ['href="' . get_the_permalink() . '"'];
|
| 112 |
echo '<li class="sub-list">';
|
| 113 |
if (isset($settings['list_icon']['value']['url']) && !empty($settings['list_icon']['value']['url'])) {
|
| 114 |
-
echo '<img class="eael-bd-cg-post-list-icon" src="' . $settings['list_icon']['value']['url'] . '" />';
|
| 115 |
} else {
|
| 116 |
echo '<i class="' . $settings['list_icon']['value'] . ' eael-bd-cg-post-list-icon"></i>';
|
| 117 |
}
|
|
@@ -147,7 +147,7 @@ echo '<article class="eael-better-docs-category-grid-post layout-2" data-id="' .
|
|
| 147 |
|
| 148 |
if ($settings['icon_position'] === 'before') {
|
| 149 |
if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
|
| 150 |
-
echo '<img class="eael-bd-cg-button-icon eael-bd-cg-button-icon-left" src="' . $settings['button_icon']['value']['url'] . '" />';
|
| 151 |
} else {
|
| 152 |
echo '<i class="' . $settings['button_icon']['value'] . ' eael-bd-cg-button-icon eael-bd-cg-button-icon-left"></i>';
|
| 153 |
}
|
|
@@ -157,7 +157,7 @@ echo '<article class="eael-better-docs-category-grid-post layout-2" data-id="' .
|
|
| 157 |
|
| 158 |
if ($settings['icon_position'] === 'after') {
|
| 159 |
if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
|
| 160 |
-
echo '<img class="eael-bd-cg-button-icon eael-bd-cg-button-icon-right" src="' . $settings['button_icon']['value']['url'] . '" />';
|
| 161 |
} else {
|
| 162 |
echo '<i class="' . $settings['button_icon']['value'] . ' eael-bd-cg-button-icon eael-bd-cg-button-icon-right"></i>';
|
| 163 |
}
|
| 77 |
echo '<span class="eael-bd-grid-sub-cat-title">';
|
| 78 |
|
| 79 |
if (isset($settings['nested_list_title_closed_icon']['value']['url']) && !empty($settings['nested_list_title_closed_icon']['value']['url'])) {
|
| 80 |
+
echo '<img class="toggle-arrow arrow-right" src="' . esc_url( $settings['nested_list_title_closed_icon']['value']['url'] ) . '" />';
|
| 81 |
} else {
|
| 82 |
echo '<i class="' . $settings['nested_list_title_closed_icon']['value'] . ' toggle-arrow arrow-right"></i>';
|
| 83 |
}
|
| 84 |
|
| 85 |
if (isset($settings['nested_list_title_open_icon']['value']['url']) && !empty($settings['nested_list_title_open_icon']['value']['url'])) {
|
| 86 |
+
echo '<img class="toggle-arrow arrow-down" src="' . esc_url( $settings['nested_list_title_open_icon']['value']['url'] ) . '" />';
|
| 87 |
} else {
|
| 88 |
echo '<i class="' . $settings['nested_list_title_open_icon']['value'] . ' toggle-arrow arrow-down"></i>';
|
| 89 |
}
|
| 111 |
$sub_attr = ['href="' . get_the_permalink() . '"'];
|
| 112 |
echo '<li class="sub-list">';
|
| 113 |
if (isset($settings['list_icon']['value']['url']) && !empty($settings['list_icon']['value']['url'])) {
|
| 114 |
+
echo '<img class="eael-bd-cg-post-list-icon" src="' . esc_url( $settings['list_icon']['value']['url'] ) . '" />';
|
| 115 |
} else {
|
| 116 |
echo '<i class="' . $settings['list_icon']['value'] . ' eael-bd-cg-post-list-icon"></i>';
|
| 117 |
}
|
| 147 |
|
| 148 |
if ($settings['icon_position'] === 'before') {
|
| 149 |
if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
|
| 150 |
+
echo '<img class="eael-bd-cg-button-icon eael-bd-cg-button-icon-left" src="' . esc_url( $settings['button_icon']['value']['url'] ) . '" />';
|
| 151 |
} else {
|
| 152 |
echo '<i class="' . $settings['button_icon']['value'] . ' eael-bd-cg-button-icon eael-bd-cg-button-icon-left"></i>';
|
| 153 |
}
|
| 157 |
|
| 158 |
if ($settings['icon_position'] === 'after') {
|
| 159 |
if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
|
| 160 |
+
echo '<img class="eael-bd-cg-button-icon eael-bd-cg-button-icon-right" src="' . esc_url( $settings['button_icon']['value']['url'] ) . '" />';
|
| 161 |
} else {
|
| 162 |
echo '<i class="' . $settings['button_icon']['value'] . ' eael-bd-cg-button-icon eael-bd-cg-button-icon-right"></i>';
|
| 163 |
}
|
includes/Template/Betterdocs-Category-Grid/Layout_Default.php
CHANGED
|
@@ -105,7 +105,7 @@ echo '<article class="eael-better-docs-category-grid-post" data-id="' . get_the_
|
|
| 105 |
|
| 106 |
echo '<li>';
|
| 107 |
if (isset($settings['list_icon']['value']['url']) && !empty($settings['list_icon']['value']['url'])) {
|
| 108 |
-
echo '<img class="eael-bd-cg-post-list-icon" src="' . $settings['list_icon']['value']['url'] . '" />';
|
| 109 |
} else {
|
| 110 |
echo '<i class="' . $settings['list_icon']['value'] . ' eael-bd-cg-post-list-icon"></i>';
|
| 111 |
}
|
|
@@ -134,13 +134,13 @@ echo '<article class="eael-better-docs-category-grid-post" data-id="' . get_the_
|
|
| 134 |
echo '<span class="eael-bd-grid-sub-cat-title">';
|
| 135 |
|
| 136 |
if (isset($settings['nested_list_title_closed_icon']['value']['url']) && !empty($settings['nested_list_title_closed_icon']['value']['url'])) {
|
| 137 |
-
echo '<img class="toggle-arrow arrow-right" src="' . $settings['nested_list_title_closed_icon']['value']['url'] . '" />';
|
| 138 |
} else {
|
| 139 |
echo '<i class="' . $settings['nested_list_title_closed_icon']['value'] . ' toggle-arrow arrow-right"></i>';
|
| 140 |
}
|
| 141 |
|
| 142 |
if (isset($settings['nested_list_title_open_icon']['value']['url']) && !empty($settings['nested_list_title_open_icon']['value']['url'])) {
|
| 143 |
-
echo '<img class="toggle-arrow arrow-down" src="' . $settings['nested_list_title_open_icon']['value']['url'] . '" />';
|
| 144 |
} else {
|
| 145 |
echo '<i class="' . $settings['nested_list_title_open_icon']['value'] . ' toggle-arrow arrow-down"></i>';
|
| 146 |
}
|
|
@@ -168,7 +168,7 @@ echo '<article class="eael-better-docs-category-grid-post" data-id="' . get_the_
|
|
| 168 |
$sub_attr = ['href="' . get_the_permalink() . '"'];
|
| 169 |
echo '<li class="sub-list">';
|
| 170 |
if (isset($settings['list_icon']['value']['url']) && !empty($settings['list_icon']['value']['url'])) {
|
| 171 |
-
echo '<img class="eael-bd-cg-post-list-icon" src="' . $settings['list_icon']['value']['url'] . '" />';
|
| 172 |
} else {
|
| 173 |
echo '<i class="' . $settings['list_icon']['value'] . ' eael-bd-cg-post-list-icon"></i>';
|
| 174 |
}
|
|
@@ -200,7 +200,7 @@ echo '<article class="eael-better-docs-category-grid-post" data-id="' . get_the_
|
|
| 200 |
|
| 201 |
if ($settings['icon_position'] === 'before') {
|
| 202 |
if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
|
| 203 |
-
echo '<img class="eael-bd-cg-button-icon eael-bd-cg-button-icon-left" src="' . $settings['button_icon']['value']['url'] . '" />';
|
| 204 |
} else {
|
| 205 |
echo '<i class="' . $settings['button_icon']['value'] . ' eael-bd-cg-button-icon eael-bd-cg-button-icon-left"></i>';
|
| 206 |
}
|
|
@@ -210,7 +210,7 @@ echo '<article class="eael-better-docs-category-grid-post" data-id="' . get_the_
|
|
| 210 |
|
| 211 |
if ($settings['icon_position'] === 'after') {
|
| 212 |
if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
|
| 213 |
-
echo '<img class="eael-bd-cg-button-icon eael-bd-cg-button-icon-right" src="' . $settings['button_icon']['value']['url'] . '" />';
|
| 214 |
} else {
|
| 215 |
echo '<i class="' . $settings['button_icon']['value'] . ' eael-bd-cg-button-icon eael-bd-cg-button-icon-right"></i>';
|
| 216 |
}
|
| 105 |
|
| 106 |
echo '<li>';
|
| 107 |
if (isset($settings['list_icon']['value']['url']) && !empty($settings['list_icon']['value']['url'])) {
|
| 108 |
+
echo '<img class="eael-bd-cg-post-list-icon" src="' . esc_url( $settings['list_icon']['value']['url'] ) . '" />';
|
| 109 |
} else {
|
| 110 |
echo '<i class="' . $settings['list_icon']['value'] . ' eael-bd-cg-post-list-icon"></i>';
|
| 111 |
}
|
| 134 |
echo '<span class="eael-bd-grid-sub-cat-title">';
|
| 135 |
|
| 136 |
if (isset($settings['nested_list_title_closed_icon']['value']['url']) && !empty($settings['nested_list_title_closed_icon']['value']['url'])) {
|
| 137 |
+
echo '<img class="toggle-arrow arrow-right" src="' . esc_url( $settings['nested_list_title_closed_icon']['value']['url'] ) . '" />';
|
| 138 |
} else {
|
| 139 |
echo '<i class="' . $settings['nested_list_title_closed_icon']['value'] . ' toggle-arrow arrow-right"></i>';
|
| 140 |
}
|
| 141 |
|
| 142 |
if (isset($settings['nested_list_title_open_icon']['value']['url']) && !empty($settings['nested_list_title_open_icon']['value']['url'])) {
|
| 143 |
+
echo '<img class="toggle-arrow arrow-down" src="' . esc_url( $settings['nested_list_title_open_icon']['value']['url'] ) . '" />';
|
| 144 |
} else {
|
| 145 |
echo '<i class="' . $settings['nested_list_title_open_icon']['value'] . ' toggle-arrow arrow-down"></i>';
|
| 146 |
}
|
| 168 |
$sub_attr = ['href="' . get_the_permalink() . '"'];
|
| 169 |
echo '<li class="sub-list">';
|
| 170 |
if (isset($settings['list_icon']['value']['url']) && !empty($settings['list_icon']['value']['url'])) {
|
| 171 |
+
echo '<img class="eael-bd-cg-post-list-icon" src="' . esc_url( $settings['list_icon']['value']['url'] ) . '" />';
|
| 172 |
} else {
|
| 173 |
echo '<i class="' . $settings['list_icon']['value'] . ' eael-bd-cg-post-list-icon"></i>';
|
| 174 |
}
|
| 200 |
|
| 201 |
if ($settings['icon_position'] === 'before') {
|
| 202 |
if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
|
| 203 |
+
echo '<img class="eael-bd-cg-button-icon eael-bd-cg-button-icon-left" src="' . esc_url( $settings['button_icon']['value']['url'] ) . '" />';
|
| 204 |
} else {
|
| 205 |
echo '<i class="' . $settings['button_icon']['value'] . ' eael-bd-cg-button-icon eael-bd-cg-button-icon-left"></i>';
|
| 206 |
}
|
| 210 |
|
| 211 |
if ($settings['icon_position'] === 'after') {
|
| 212 |
if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
|
| 213 |
+
echo '<img class="eael-bd-cg-button-icon eael-bd-cg-button-icon-right" src="' . esc_url( $settings['button_icon']['value']['url'] ) . '" />';
|
| 214 |
} else {
|
| 215 |
echo '<i class="' . $settings['button_icon']['value'] . ' eael-bd-cg-button-icon eael-bd-cg-button-icon-right"></i>';
|
| 216 |
}
|
includes/Template/Content-Ticker/default.php
CHANGED
|
@@ -12,7 +12,7 @@ if (isset($content) && isset($link)) {
|
|
| 12 |
echo '<div class="swiper-slide">
|
| 13 |
<div class="ticker-content">';
|
| 14 |
if (!empty($link['url'])) {
|
| 15 |
-
echo '<a href="' . $link['url'] . '" ';
|
| 16 |
|
| 17 |
if ($link['is_external'] == 'on') {
|
| 18 |
echo 'target="_blank" ';
|
| 12 |
echo '<div class="swiper-slide">
|
| 13 |
<div class="ticker-content">';
|
| 14 |
if (!empty($link['url'])) {
|
| 15 |
+
echo '<a href="' . esc_url( $link['url'] ) . '" ';
|
| 16 |
|
| 17 |
if ($link['is_external'] == 'on') {
|
| 18 |
echo 'target="_blank" ';
|
includes/Template/Eicon-Woocommerce/default.php
CHANGED
|
@@ -59,15 +59,15 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 59 |
if( $should_print_image_clickable ) {
|
| 60 |
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 61 |
}?>
|
| 62 |
-
<?php echo wp_kses_post( $product->get_image( '
|
| 63 |
if ( $should_print_image_clickable ) {
|
| 64 |
echo '</a>';
|
| 65 |
}
|
| 66 |
|
| 67 |
// printf('<%1$s class="woocommerce-loop-product__title"><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_simple woocommerce-loop-product__title_link_reveal">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink());
|
| 68 |
echo '<div class="eael-product-title">
|
| 69 |
-
<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 70 |
-
printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, $product->get_title());
|
| 71 |
echo '</a>
|
| 72 |
</div>';
|
| 73 |
|
|
@@ -101,7 +101,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 101 |
if( $should_print_image_clickable ) {
|
| 102 |
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 103 |
}
|
| 104 |
-
echo $product->get_image( '
|
| 105 |
if ( $should_print_image_clickable ) {
|
| 106 |
echo '</a>';
|
| 107 |
}
|
|
@@ -119,7 +119,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 119 |
<?php
|
| 120 |
// printf('<%1$s class="woocommerce-loop-product__title"><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_overlay">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink());
|
| 121 |
echo '<div class="eael-product-title">
|
| 122 |
-
<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 123 |
printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, $product->get_title());
|
| 124 |
echo '</a>
|
| 125 |
</div>';
|
|
@@ -242,7 +242,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 242 |
?>
|
| 243 |
<div class="eael-product-title">
|
| 244 |
<?php
|
| 245 |
-
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 246 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 247 |
echo '</a>';
|
| 248 |
?>
|
|
@@ -306,7 +306,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 306 |
?>
|
| 307 |
<div class="eael-product-title">
|
| 308 |
<?php
|
| 309 |
-
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 310 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 311 |
echo '</a>';
|
| 312 |
?>
|
|
@@ -343,7 +343,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 343 |
<?php
|
| 344 |
if ($list_style_preset == 'eael-product-list-preset-2') {
|
| 345 |
echo '<div class="eael-product-title">
|
| 346 |
-
<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 347 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 348 |
echo '</a>
|
| 349 |
</div>';
|
|
@@ -373,7 +373,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 373 |
echo '</div>
|
| 374 |
<div class="title-wrap">
|
| 375 |
<div class="eael-product-title">
|
| 376 |
-
<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 377 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 378 |
echo '</a>
|
| 379 |
</div>';
|
|
@@ -392,7 +392,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 392 |
}
|
| 393 |
|
| 394 |
echo '<div class="eael-product-title">
|
| 395 |
-
<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 396 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 397 |
echo '</a>
|
| 398 |
</div>';
|
|
@@ -408,7 +408,7 @@ if ( $grid_style_preset == 'eael-product-simple' || $grid_style_preset == 'eael-
|
|
| 408 |
|
| 409 |
} else {
|
| 410 |
echo '<div class="eael-product-title">
|
| 411 |
-
<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 412 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 413 |
echo '</a>
|
| 414 |
</div>';
|
| 59 |
if( $should_print_image_clickable ) {
|
| 60 |
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 61 |
}?>
|
| 62 |
+
<?php echo wp_kses_post( $product->get_image( $settings['eael_product_grid_image_size_size'], [ 'loading' => 'eager' ] ) );
|
| 63 |
if ( $should_print_image_clickable ) {
|
| 64 |
echo '</a>';
|
| 65 |
}
|
| 66 |
|
| 67 |
// printf('<%1$s class="woocommerce-loop-product__title"><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_simple woocommerce-loop-product__title_link_reveal">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink());
|
| 68 |
echo '<div class="eael-product-title">
|
| 69 |
+
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 70 |
+
printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, esc_html( $product->get_title() ));
|
| 71 |
echo '</a>
|
| 72 |
</div>';
|
| 73 |
|
| 101 |
if( $should_print_image_clickable ) {
|
| 102 |
echo '<a href="' . $product->get_permalink() . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 103 |
}
|
| 104 |
+
echo $product->get_image( $settings['eael_product_grid_image_size_size'], [ 'loading' => 'eager' ] );
|
| 105 |
if ( $should_print_image_clickable ) {
|
| 106 |
echo '</a>';
|
| 107 |
}
|
| 119 |
<?php
|
| 120 |
// printf('<%1$s class="woocommerce-loop-product__title"><a href="%3$s" class="woocommerce-LoopProduct-link woocommerce-loop-product__link woocommerce-loop-product__title_link woocommerce-loop-product__title_link_overlay">%2$s</a></%1$s>', $title_tag, $product->get_title(), $product->get_permalink());
|
| 121 |
echo '<div class="eael-product-title">
|
| 122 |
+
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 123 |
printf('<%1$s class="woocommerce-loop-product__title">%2$s</%1$s>', $title_tag, $product->get_title());
|
| 124 |
echo '</a>
|
| 125 |
</div>';
|
| 242 |
?>
|
| 243 |
<div class="eael-product-title">
|
| 244 |
<?php
|
| 245 |
+
echo '<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 246 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 247 |
echo '</a>';
|
| 248 |
?>
|
| 306 |
?>
|
| 307 |
<div class="eael-product-title">
|
| 308 |
<?php
|
| 309 |
+
echo '<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 310 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 311 |
echo '</a>';
|
| 312 |
?>
|
| 343 |
<?php
|
| 344 |
if ($list_style_preset == 'eael-product-list-preset-2') {
|
| 345 |
echo '<div class="eael-product-title">
|
| 346 |
+
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 347 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 348 |
echo '</a>
|
| 349 |
</div>';
|
| 373 |
echo '</div>
|
| 374 |
<div class="title-wrap">
|
| 375 |
<div class="eael-product-title">
|
| 376 |
+
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 377 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 378 |
echo '</a>
|
| 379 |
</div>';
|
| 392 |
}
|
| 393 |
|
| 394 |
echo '<div class="eael-product-title">
|
| 395 |
+
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 396 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 397 |
echo '</a>
|
| 398 |
</div>';
|
| 408 |
|
| 409 |
} else {
|
| 410 |
echo '<div class="eael-product-title">
|
| 411 |
+
<a href="' . esc_url( $product->get_permalink() ) . '" class="woocommerce-LoopProduct-link woocommerce-loop-product__link">';
|
| 412 |
printf('<%1$s>%2$s</%1$s>', $title_tag, $product->get_title());
|
| 413 |
echo '</a>
|
| 414 |
</div>';
|
includes/Template/Post-Grid/default.php
CHANGED
|
@@ -185,6 +185,9 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
| 185 |
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
| 186 |
}
|
| 187 |
echo '</a>';
|
|
|
|
|
|
|
|
|
|
| 188 |
echo '</' . $title_tag . '></header>';
|
| 189 |
}
|
| 190 |
|
|
@@ -227,7 +230,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
| 227 |
</div>
|
| 228 |
</article>';
|
| 229 |
} else {
|
| 230 |
-
echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . get_the_ID() . '">
|
| 231 |
<div class="eael-grid-post-holder">
|
| 232 |
<div class="eael-grid-post-holder-inner">';
|
| 233 |
|
| 185 |
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
| 186 |
}
|
| 187 |
echo '</a>';
|
| 188 |
+
/*
|
| 189 |
+
* used Helper::eael_validate_html_tag() method to validate $title_tag
|
| 190 |
+
*/
|
| 191 |
echo '</' . $title_tag . '></header>';
|
| 192 |
}
|
| 193 |
|
| 230 |
</div>
|
| 231 |
</article>';
|
| 232 |
} else {
|
| 233 |
+
echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . esc_attr( get_the_ID() ) . '">
|
| 234 |
<div class="eael-grid-post-holder">
|
| 235 |
<div class="eael-grid-post-holder-inner">';
|
| 236 |
|
includes/Template/Post-Timeline/default.php
CHANGED
|
@@ -20,7 +20,7 @@ echo '<article class="eael-timeline-post eael-timeline-column">
|
|
| 20 |
<div class="eael-timeline-post-inner">
|
| 21 |
<a class="eael-timeline-post-link" href="' . get_the_permalink() . '" title="' . esc_html(get_the_title()) . '"' . ($settings['timeline_link_nofollow'] ? 'rel="nofollow"' : '') .'' . ($settings['timeline_link_target_blank'] ? 'target="_blank"' : '') . '>
|
| 22 |
<time datetime="' . get_the_date() . '">' . get_the_date() . '</time>
|
| 23 |
-
<div class="eael-timeline-post-image'.$image_class.'" ' . ($settings['eael_show_image'] == 'yes' ? 'style="background-image: url('
|
| 24 |
if ($settings['eael_show_excerpt']) {
|
| 25 |
echo '<div class="eael-timeline-post-excerpt">';
|
| 26 |
if(empty($settings['eael_excerpt_length'])) {
|
| 20 |
<div class="eael-timeline-post-inner">
|
| 21 |
<a class="eael-timeline-post-link" href="' . get_the_permalink() . '" title="' . esc_html(get_the_title()) . '"' . ($settings['timeline_link_nofollow'] ? 'rel="nofollow"' : '') .'' . ($settings['timeline_link_target_blank'] ? 'target="_blank"' : '') . '>
|
| 22 |
<time datetime="' . get_the_date() . '">' . get_the_date() . '</time>
|
| 23 |
+
<div class="eael-timeline-post-image'.$image_class.'" ' . ($settings['eael_show_image'] == 'yes' ? 'style="background-image: url('.esc_url( $post_timeline_image_url ).');"' : null) . '></div>';
|
| 24 |
if ($settings['eael_show_excerpt']) {
|
| 25 |
echo '<div class="eael-timeline-post-excerpt">';
|
| 26 |
if(empty($settings['eael_excerpt_length'])) {
|
includes/Template/Woo-Product-Carousel/preset-1.php
CHANGED
|
@@ -78,13 +78,13 @@ if ( true === wc_get_loop_product_visibility( $product->get_id() ) || $product->
|
|
| 78 |
<?php
|
| 79 |
if ( $settings['eael_product_carousel_show_title'] ) {
|
| 80 |
echo '<div class="eael-product-title">';
|
| 81 |
-
echo '<' . $settings['eael_product_carousel_title_tag'] . '>';
|
| 82 |
if ( empty( $settings['eael_product_carousel_title_length'] ) ) {
|
| 83 |
-
echo $product->get_title();
|
| 84 |
} else {
|
| 85 |
echo implode( " ", array_slice( explode( " ", $product->get_title() ), 0, $settings['eael_product_carousel_title_length'] ) );
|
| 86 |
}
|
| 87 |
-
echo '</' . $settings['eael_product_carousel_title_tag'] . '>';
|
| 88 |
echo '</div>';
|
| 89 |
}
|
| 90 |
?>
|
| 78 |
<?php
|
| 79 |
if ( $settings['eael_product_carousel_show_title'] ) {
|
| 80 |
echo '<div class="eael-product-title">';
|
| 81 |
+
echo '<' . Helper::eael_validate_html_tag( $settings['eael_product_carousel_title_tag'] ) . '>';
|
| 82 |
if ( empty( $settings['eael_product_carousel_title_length'] ) ) {
|
| 83 |
+
echo esc_html( $product->get_title() );
|
| 84 |
} else {
|
| 85 |
echo implode( " ", array_slice( explode( " ", $product->get_title() ), 0, $settings['eael_product_carousel_title_length'] ) );
|
| 86 |
}
|
| 87 |
+
echo '</' . Helper::eael_validate_html_tag( $settings['eael_product_carousel_title_tag'] ) . '>';
|
| 88 |
echo '</div>';
|
| 89 |
}
|
| 90 |
?>
|
includes/Template/Woo-Product-Carousel/preset-2.php
CHANGED
|
@@ -77,13 +77,13 @@ if ( true === wc_get_loop_product_visibility( $product->get_id() ) || $product->
|
|
| 77 |
<?php
|
| 78 |
if ( $settings['eael_product_carousel_show_title'] ) {
|
| 79 |
echo '<div class="eael-product-title">';
|
| 80 |
-
echo '<' . $settings['eael_product_carousel_title_tag'] . '>';
|
| 81 |
if ( empty( $settings['eael_product_carousel_title_length'] ) ) {
|
| 82 |
-
echo $product->get_title();
|
| 83 |
} else {
|
| 84 |
echo implode( " ", array_slice( explode( " ", $product->get_title() ), 0, $settings['eael_product_carousel_title_length'] ) );
|
| 85 |
}
|
| 86 |
-
echo '</' . $settings['eael_product_carousel_title_tag'] . '>';
|
| 87 |
echo '</div>';
|
| 88 |
}
|
| 89 |
?>
|
| 77 |
<?php
|
| 78 |
if ( $settings['eael_product_carousel_show_title'] ) {
|
| 79 |
echo '<div class="eael-product-title">';
|
| 80 |
+
echo '<' . Helper::eael_validate_html_tag( $settings['eael_product_carousel_title_tag'] ) . '>';
|
| 81 |
if ( empty( $settings['eael_product_carousel_title_length'] ) ) {
|
| 82 |
+
echo esc_html( $product->get_title() );
|
| 83 |
} else {
|
| 84 |
echo implode( " ", array_slice( explode( " ", $product->get_title() ), 0, $settings['eael_product_carousel_title_length'] ) );
|
| 85 |
}
|
| 86 |
+
echo '</' . Helper::eael_validate_html_tag( $settings['eael_product_carousel_title_tag'] ) . '>';
|
| 87 |
echo '</div>';
|
| 88 |
}
|
| 89 |
?>
|
includes/Template/Woo-Product-Carousel/preset-3.php
CHANGED
|
@@ -76,13 +76,13 @@ if ( true === wc_get_loop_product_visibility( $product->get_id() ) || $product->
|
|
| 76 |
<?php
|
| 77 |
if ( $settings['eael_product_carousel_show_title'] ) {
|
| 78 |
echo '<div class="eael-product-title">';
|
| 79 |
-
echo '<' . $settings['eael_product_carousel_title_tag'] . '>';
|
| 80 |
if ( empty( $settings['eael_product_carousel_title_length'] ) ) {
|
| 81 |
-
echo $product->get_title();
|
| 82 |
} else {
|
| 83 |
echo implode( " ", array_slice( explode( " ", $product->get_title() ), 0, $settings['eael_product_carousel_title_length'] ) );
|
| 84 |
}
|
| 85 |
-
echo '</' . $settings['eael_product_carousel_title_tag'] . '>';
|
| 86 |
echo '</div>';
|
| 87 |
}
|
| 88 |
?>
|
| 76 |
<?php
|
| 77 |
if ( $settings['eael_product_carousel_show_title'] ) {
|
| 78 |
echo '<div class="eael-product-title">';
|
| 79 |
+
echo '<' . Helper::eael_validate_html_tag( $settings['eael_product_carousel_title_tag'] ) . '>';
|
| 80 |
if ( empty( $settings['eael_product_carousel_title_length'] ) ) {
|
| 81 |
+
echo esc_html( $product->get_title() ) ;
|
| 82 |
} else {
|
| 83 |
echo implode( " ", array_slice( explode( " ", $product->get_title() ), 0, $settings['eael_product_carousel_title_length'] ) );
|
| 84 |
}
|
| 85 |
+
echo '</' . Helper::eael_validate_html_tag( $settings['eael_product_carousel_title_tag'] ) . '>';
|
| 86 |
echo '</div>';
|
| 87 |
}
|
| 88 |
?>
|
includes/Template/Woo-Product-Carousel/preset-4.php
CHANGED
|
@@ -64,13 +64,13 @@ if ( true === wc_get_loop_product_visibility( $product->get_id() ) || $product->
|
|
| 64 |
<?php
|
| 65 |
if ( $settings['eael_product_carousel_show_title'] ) {
|
| 66 |
echo '<div class="eael-product-title">';
|
| 67 |
-
echo '<' . $settings['eael_product_carousel_title_tag'] . '>';
|
| 68 |
if ( empty( $settings['eael_product_carousel_title_length'] ) ) {
|
| 69 |
-
echo $product->get_title();
|
| 70 |
} else {
|
| 71 |
echo implode( " ", array_slice( explode( " ", $product->get_title() ), 0, $settings['eael_product_carousel_title_length'] ) );
|
| 72 |
}
|
| 73 |
-
echo '</' . $settings['eael_product_carousel_title_tag'] . '>';
|
| 74 |
echo '</div>';
|
| 75 |
}
|
| 76 |
?>
|
| 64 |
<?php
|
| 65 |
if ( $settings['eael_product_carousel_show_title'] ) {
|
| 66 |
echo '<div class="eael-product-title">';
|
| 67 |
+
echo '<' . Helper::eael_validate_html_tag( $settings['eael_product_carousel_title_tag'] ) . '>';
|
| 68 |
if ( empty( $settings['eael_product_carousel_title_length'] ) ) {
|
| 69 |
+
echo esc_html( $product->get_title() );
|
| 70 |
} else {
|
| 71 |
echo implode( " ", array_slice( explode( " ", $product->get_title() ), 0, $settings['eael_product_carousel_title_length'] ) );
|
| 72 |
}
|
| 73 |
+
echo '</' . Helper::eael_validate_html_tag( $settings['eael_product_carousel_title_tag'] ) . '>';
|
| 74 |
echo '</div>';
|
| 75 |
}
|
| 76 |
?>
|
includes/Traits/Admin.php
CHANGED
|
@@ -145,7 +145,7 @@ trait Admin {
|
|
| 145 |
return;
|
| 146 |
}
|
| 147 |
|
| 148 |
-
|
| 149 |
|
| 150 |
if ( !empty( $_POST[ 'is_login_register' ] ) ) {
|
| 151 |
// Saving Login | Register Related Data
|
|
@@ -220,8 +220,9 @@ trait Admin {
|
|
| 220 |
update_option( 'eael_js_print_method', sanitize_text_field( $settings[ 'eael-js-print-method' ] ) );
|
| 221 |
}
|
| 222 |
|
| 223 |
-
|
| 224 |
-
|
|
|
|
| 225 |
|
| 226 |
// update new settings
|
| 227 |
$updated = update_option( 'eael_save_settings', $elements );
|
|
@@ -256,7 +257,7 @@ trait Admin {
|
|
| 256 |
'icon_class' => 'dashicons dashicons-external',
|
| 257 |
),
|
| 258 |
'allready' => array(
|
| 259 |
-
'link' => $url,
|
| 260 |
'label' => __( 'I already did', 'essential-addons-for-elementor-lite' ),
|
| 261 |
'icon_class' => 'dashicons dashicons-smiley',
|
| 262 |
'data_args' => [
|
|
@@ -264,7 +265,7 @@ trait Admin {
|
|
| 264 |
],
|
| 265 |
),
|
| 266 |
'maybe_later' => array(
|
| 267 |
-
'link' => $url,
|
| 268 |
'label' => __( 'Maybe Later', 'essential-addons-for-elementor-lite' ),
|
| 269 |
'icon_class' => 'dashicons dashicons-calendar-alt',
|
| 270 |
'data_args' => [
|
|
@@ -277,7 +278,7 @@ trait Admin {
|
|
| 277 |
'icon_class' => 'dashicons dashicons-sos',
|
| 278 |
),
|
| 279 |
'never_show_again' => array(
|
| 280 |
-
'link' => $url,
|
| 281 |
'label' => __( 'Never show again', 'essential-addons-for-elementor-lite' ),
|
| 282 |
'icon_class' => 'dashicons dashicons-dismiss',
|
| 283 |
'data_args' => [
|
| 145 |
return;
|
| 146 |
}
|
| 147 |
|
| 148 |
+
wp_parse_str( $_POST[ 'fields' ], $settings );
|
| 149 |
|
| 150 |
if ( !empty( $_POST[ 'is_login_register' ] ) ) {
|
| 151 |
// Saving Login | Register Related Data
|
| 220 |
update_option( 'eael_js_print_method', sanitize_text_field( $settings[ 'eael-js-print-method' ] ) );
|
| 221 |
}
|
| 222 |
|
| 223 |
+
$settings = array_map( 'sanitize_text_field', $settings );
|
| 224 |
+
$defaults = array_fill_keys( array_keys( array_merge( $this->registered_elements, $this->registered_extensions ) ), false );
|
| 225 |
+
$elements = array_merge( $defaults, array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true ) );
|
| 226 |
|
| 227 |
// update new settings
|
| 228 |
$updated = update_option( 'eael_save_settings', $elements );
|
| 257 |
'icon_class' => 'dashicons dashicons-external',
|
| 258 |
),
|
| 259 |
'allready' => array(
|
| 260 |
+
'link' => esc_url( $url ),
|
| 261 |
'label' => __( 'I already did', 'essential-addons-for-elementor-lite' ),
|
| 262 |
'icon_class' => 'dashicons dashicons-smiley',
|
| 263 |
'data_args' => [
|
| 265 |
],
|
| 266 |
),
|
| 267 |
'maybe_later' => array(
|
| 268 |
+
'link' => esc_url( $url ),
|
| 269 |
'label' => __( 'Maybe Later', 'essential-addons-for-elementor-lite' ),
|
| 270 |
'icon_class' => 'dashicons dashicons-calendar-alt',
|
| 271 |
'data_args' => [
|
| 278 |
'icon_class' => 'dashicons dashicons-sos',
|
| 279 |
),
|
| 280 |
'never_show_again' => array(
|
| 281 |
+
'link' => esc_url( $url ),
|
| 282 |
'label' => __( 'Never show again', 'essential-addons-for-elementor-lite' ),
|
| 283 |
'icon_class' => 'dashicons dashicons-dismiss',
|
| 284 |
'data_args' => [
|
includes/Traits/Controls.php
CHANGED
|
@@ -988,7 +988,6 @@ trait Controls
|
|
| 988 |
|
| 989 |
if ( 'eael-post-carousel' === $wb->get_name() || 'eael-post-grid' === $wb->get_name() ) {
|
| 990 |
|
| 991 |
-
// $eael_show_post_terms_condition = 'eael-post-grid' === $wb->get_name() ? ['eael_show_image' => 'yes'] : [];
|
| 992 |
$eael_show_post_terms_condition = ['eael_show_image' => 'yes']; //Applicable for both elements: Post Carousel and Post Grid
|
| 993 |
|
| 994 |
$wb->add_control(
|
| 988 |
|
| 989 |
if ( 'eael-post-carousel' === $wb->get_name() || 'eael-post-grid' === $wb->get_name() ) {
|
| 990 |
|
|
|
|
| 991 |
$eael_show_post_terms_condition = ['eael_show_image' => 'yes']; //Applicable for both elements: Post Carousel and Post Grid
|
| 992 |
|
| 993 |
$wb->add_control(
|
includes/Traits/Core.php
CHANGED
|
@@ -111,7 +111,7 @@ trait Core
|
|
| 111 |
$button_text = __('Install Elementor', 'essential-addons-for-elementor-lite');
|
| 112 |
}
|
| 113 |
|
| 114 |
-
$button = '<p><a href="' . $activation_url . '" class="button-primary">' . $button_text . '</a></p>';
|
| 115 |
|
| 116 |
printf('<div class="error"><p>%1$s</p>%2$s</div>', __($message), $button);
|
| 117 |
}
|
| 111 |
$button_text = __('Install Elementor', 'essential-addons-for-elementor-lite');
|
| 112 |
}
|
| 113 |
|
| 114 |
+
$button = '<p><a href="' . esc_url( $activation_url ) . '" class="button-primary">' . esc_html( $button_text ) . '</a></p>';
|
| 115 |
|
| 116 |
printf('<div class="error"><p>%1$s</p>%2$s</div>', __($message), $button);
|
| 117 |
}
|
includes/Traits/Elements.php
CHANGED
|
@@ -457,15 +457,15 @@ trait Elements
|
|
| 457 |
$icon = $icon_check['value'];
|
| 458 |
}
|
| 459 |
|
| 460 |
-
$table_of_content_html = "<div data-eaelTocTag='
|
| 461 |
<div class='eael-toc-header'>
|
| 462 |
<span class='eael-toc-close'>×</span>
|
| 463 |
<h2 class='eael-toc-title'>{$toc_title}</h2>
|
| 464 |
</div>
|
| 465 |
<div class='eael-toc-body'>
|
| 466 |
-
<ul id='eael-toc-list' class='eael-toc-list
|
| 467 |
</div>
|
| 468 |
-
<button class='eael-toc-button'><i class='
|
| 469 |
</div>";
|
| 470 |
|
| 471 |
if ($this->get_extensions_value('eael_ext_table_of_content') != 'yes') {
|
| 457 |
$icon = $icon_check['value'];
|
| 458 |
}
|
| 459 |
|
| 460 |
+
$table_of_content_html = "<div data-eaelTocTag='".esc_attr( $support_tag )."' data-contentSelector='".esc_attr( $content_selector )."' data-excludeSelector='".esc_attr( $exclude_selector )."' data-stickyScroll='".esc_attr( $sticky_scroll['size'] )."' data-titleUrl='".esc_attr( $title_url )."' data-page_offset='".esc_attr( $page_offset )."' id='eael-toc' class='".esc_attr( $el_class )." '>
|
| 461 |
<div class='eael-toc-header'>
|
| 462 |
<span class='eael-toc-close'>×</span>
|
| 463 |
<h2 class='eael-toc-title'>{$toc_title}</h2>
|
| 464 |
</div>
|
| 465 |
<div class='eael-toc-body'>
|
| 466 |
+
<ul id='eael-toc-list' class='eael-toc-list ".esc_attr( $toc_style_class )."'></ul>
|
| 467 |
</div>
|
| 468 |
+
<button class='eael-toc-button'><i class='".esc_attr( $icon )."'></i><span>{$toc_title}</span></button>
|
| 469 |
</div>";
|
| 470 |
|
| 471 |
if ($this->get_extensions_value('eael_ext_table_of_content') != 'yes') {
|
includes/Traits/Enqueue.php
CHANGED
|
@@ -326,7 +326,7 @@ trait Enqueue
|
|
| 326 |
{
|
| 327 |
if ($this->is_edit_mode() || $this->is_preview_mode()) {
|
| 328 |
if ($this->css_strings) {
|
| 329 |
-
|
| 330 |
}
|
| 331 |
}
|
| 332 |
}
|
|
@@ -337,8 +337,8 @@ trait Enqueue
|
|
| 337 |
// view/edit mode mode
|
| 338 |
if ($this->is_edit_mode() || $this->is_preview_mode()) {
|
| 339 |
if ($this->js_strings) {
|
| 340 |
-
|
| 341 |
-
|
| 342 |
}
|
| 343 |
}
|
| 344 |
}
|
| 326 |
{
|
| 327 |
if ($this->is_edit_mode() || $this->is_preview_mode()) {
|
| 328 |
if ($this->css_strings) {
|
| 329 |
+
printf( '<style id="%1$s">%2$s</style>', esc_attr( $this->uid ), $this->css_strings );
|
| 330 |
}
|
| 331 |
}
|
| 332 |
}
|
| 337 |
// view/edit mode mode
|
| 338 |
if ($this->is_edit_mode() || $this->is_preview_mode()) {
|
| 339 |
if ($this->js_strings) {
|
| 340 |
+
printf('<script>%1$s</script>','var localize ='.wp_json_encode($this->localize_objects));
|
| 341 |
+
printf( '<script id="%1$s">%2$s</script>', esc_attr( $this->uid ), $this->js_strings );
|
| 342 |
}
|
| 343 |
}
|
| 344 |
}
|
includes/Traits/Facebook_Feed.php
CHANGED
|
@@ -96,12 +96,12 @@ trait Facebook_Feed
|
|
| 96 |
<div class="eael-facebook-feed-item-inner">
|
| 97 |
<header class="eael-facebook-feed-item-header clearfix">
|
| 98 |
<div class="eael-facebook-feed-item-user clearfix">
|
| 99 |
-
<a href="https://www.facebook.com/' . $page_id . '" target="' . ($settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self') . '"><img src="https://graph.facebook.com/v4.0/' . $page_id . '/picture" alt="' . $item['from']['name'] . '" class="eael-facebook-feed-avatar"></a>
|
| 100 |
-
<a href="https://www.facebook.com/' . $page_id . '" target="' . ($settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self') . '"><p class="eael-facebook-feed-username">' . $item['from']['name'] . '</p></a>
|
| 101 |
</div>';
|
| 102 |
|
| 103 |
if ($settings['eael_facebook_feed_date']) {
|
| 104 |
-
$html .= '<a href="' . $item['permalink_url'] . '" target="' . ($settings['eael_facebook_feed_link_target'] ? '_blank' : '_self') . '" class="eael-facebook-feed-post-time"><i class="far fa-clock" aria-hidden="true"></i> ' . date("d M Y", strtotime($item['created_time'])) . '</a>';
|
| 105 |
}
|
| 106 |
$html .= '</header>';
|
| 107 |
|
|
@@ -117,12 +117,12 @@ trait Facebook_Feed
|
|
| 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 |
}
|
|
@@ -132,7 +132,7 @@ trait Facebook_Feed
|
|
| 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'] ) {
|
|
@@ -144,16 +144,16 @@ trait Facebook_Feed
|
|
| 144 |
} else if ($item['status_type'] == 'added_video') {
|
| 145 |
if( isset($settings['eael_facebook_feed_is_show_preview_thumbnail']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_thumbnail'] ) {
|
| 146 |
|
| 147 |
-
$html .= '<a href="' . $item['permalink_url'] . '" target="' . ( $settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self' ) . '" class="eael-facebook-feed-preview-img">
|
| 148 |
-
<img class="eael-facebook-feed-img" src="' . $photo . '">
|
| 149 |
<div class="eael-facebook-feed-preview-overlay"><i class="far fa-play-circle" aria-hidden="true"></i></div>
|
| 150 |
</a>';
|
| 151 |
}
|
| 152 |
} else {
|
| 153 |
if( isset($settings['eael_facebook_feed_is_show_preview_thumbnail']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_thumbnail'] ) {
|
| 154 |
|
| 155 |
-
$html .= '<a href="' . $item['permalink_url'] . '" target="' . ( $settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self' ) . '" class="eael-facebook-feed-preview-img">
|
| 156 |
-
<img class="eael-facebook-feed-img" src="' . $photo . '">
|
| 157 |
</a>';
|
| 158 |
|
| 159 |
}
|
|
@@ -166,10 +166,10 @@ trait Facebook_Feed
|
|
| 166 |
$html .= '<footer class="eael-facebook-feed-item-footer">
|
| 167 |
<div class="clearfix">';
|
| 168 |
if ($settings['eael_facebook_feed_likes']) {
|
| 169 |
-
$html .= '<span class="eael-facebook-feed-post-likes"><i class="far fa-thumbs-up" aria-hidden="true"></i> ' . $likes . '</span>';
|
| 170 |
}
|
| 171 |
if ($settings['eael_facebook_feed_comments']) {
|
| 172 |
-
$html .= '<span class="eael-facebook-feed-post-comments"><i class="far fa-comments" aria-hidden="true"></i> ' . $comments . '</span>';
|
| 173 |
}
|
| 174 |
$html .= '</div>
|
| 175 |
</footer>';
|
|
@@ -177,19 +177,19 @@ trait Facebook_Feed
|
|
| 177 |
$html .= '</div>
|
| 178 |
</div>';
|
| 179 |
} else {
|
| 180 |
-
$html .= '<a href="' . $item['permalink_url'] . '" target="' . ($settings['eael_facebook_feed_link_target'] ? '_blank' : '_self') . '" class="eael-facebook-feed-item">
|
| 181 |
<div class="eael-facebook-feed-item-inner">
|
| 182 |
-
<img class="eael-facebook-feed-img" src="' . (empty($photo) ? EAEL_PLUGIN_URL . 'assets/front-end/img/flexia-preview.jpg' : $photo) . '">';
|
| 183 |
|
| 184 |
if ($settings['eael_facebook_feed_likes'] || $settings['eael_facebook_feed_comments']) {
|
| 185 |
$html .= '<div class="eael-facebook-feed-item-overlay">
|
| 186 |
<div class="eael-facebook-feed-item-overlay-inner">
|
| 187 |
<div class="eael-facebook-feed-meta">';
|
| 188 |
if ($settings['eael_facebook_feed_likes']) {
|
| 189 |
-
$html .= '<span class="eael-facebook-feed-post-likes"><i class="far fa-thumbs-up" aria-hidden="true"></i> ' . $likes . '</span>';
|
| 190 |
}
|
| 191 |
if ($settings['eael_facebook_feed_comments']) {
|
| 192 |
-
$html .= '<span class="eael-facebook-feed-post-comments"><i class="far fa-comments" aria-hidden="true"></i> ' . $comments . '</span>';
|
| 193 |
}
|
| 194 |
$html .= '</div>
|
| 195 |
</div>
|
|
@@ -236,11 +236,11 @@ trait Facebook_Feed
|
|
| 236 |
$poshttps = stripos(trim($explodeText[$st]), 'https');
|
| 237 |
|
| 238 |
if($pos !== false) {
|
| 239 |
-
$stringText .= '<a href="https://facebook.com/hashtag/' . str_replace('#', '', $explodeText[$st]) . '?source=feed_text" target="_blank"> ' . $explodeText[$st] . ' </a>';
|
| 240 |
} elseif($pos1 !== false) {
|
| 241 |
-
$stringText .= '<a href="https://facebook.com/' . $explodeText[$st] . '/" target="_blank"> ' . $explodeText[$st] . ' </a>';
|
| 242 |
} elseif($poshttp !== false || $poshttps !== false) {
|
| 243 |
-
$stringText .= '<a href="' . $explodeText[$st] . '" target="_blank"> ' . $explodeText[$st] . ' </a>';
|
| 244 |
} else {
|
| 245 |
$stringText .= ' ' . $explodeText[$st];
|
| 246 |
}
|
| 96 |
<div class="eael-facebook-feed-item-inner">
|
| 97 |
<header class="eael-facebook-feed-item-header clearfix">
|
| 98 |
<div class="eael-facebook-feed-item-user clearfix">
|
| 99 |
+
<a href="https://www.facebook.com/' . $page_id . '" target="' . ($settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self') . '"><img src="https://graph.facebook.com/v4.0/' . $page_id . '/picture" alt="' . esc_attr( $item['from']['name'] ) . '" class="eael-facebook-feed-avatar"></a>
|
| 100 |
+
<a href="https://www.facebook.com/' . $page_id . '" target="' . ($settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self') . '"><p class="eael-facebook-feed-username">' . esc_html( $item['from']['name'] ) . '</p></a>
|
| 101 |
</div>';
|
| 102 |
|
| 103 |
if ($settings['eael_facebook_feed_date']) {
|
| 104 |
+
$html .= '<a href="' . esc_url( $item['permalink_url'] ) . '" target="' . ($settings['eael_facebook_feed_link_target'] ? '_blank' : '_self') . '" class="eael-facebook-feed-post-time"><i class="far fa-clock" aria-hidden="true"></i> ' . date("d M Y", strtotime($item['created_time'])) . '</a>';
|
| 105 |
}
|
| 106 |
$html .= '</header>';
|
| 107 |
|
| 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="' . esc_url( $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="' . esc_url( $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="' . esc_url( $photo ) . '">';
|
| 126 |
}
|
| 127 |
$html .= '</a>';
|
| 128 |
}
|
| 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">' . esc_html( $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'] ) {
|
| 144 |
} else if ($item['status_type'] == 'added_video') {
|
| 145 |
if( isset($settings['eael_facebook_feed_is_show_preview_thumbnail']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_thumbnail'] ) {
|
| 146 |
|
| 147 |
+
$html .= '<a href="' . esc_url( $item['permalink_url'] ) . '" target="' . ( $settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self' ) . '" class="eael-facebook-feed-preview-img">
|
| 148 |
+
<img class="eael-facebook-feed-img" src="' . esc_url( $photo ) . '">
|
| 149 |
<div class="eael-facebook-feed-preview-overlay"><i class="far fa-play-circle" aria-hidden="true"></i></div>
|
| 150 |
</a>';
|
| 151 |
}
|
| 152 |
} else {
|
| 153 |
if( isset($settings['eael_facebook_feed_is_show_preview_thumbnail']) && 'yes' == $settings['eael_facebook_feed_is_show_preview_thumbnail'] ) {
|
| 154 |
|
| 155 |
+
$html .= '<a href="' . esc_url( $item['permalink_url'] ) . '" target="' . ( $settings['eael_facebook_feed_link_target'] == 'yes' ? '_blank' : '_self' ) . '" class="eael-facebook-feed-preview-img">
|
| 156 |
+
<img class="eael-facebook-feed-img" src="' . esc_url( $photo ) . '">
|
| 157 |
</a>';
|
| 158 |
|
| 159 |
}
|
| 166 |
$html .= '<footer class="eael-facebook-feed-item-footer">
|
| 167 |
<div class="clearfix">';
|
| 168 |
if ($settings['eael_facebook_feed_likes']) {
|
| 169 |
+
$html .= '<span class="eael-facebook-feed-post-likes"><i class="far fa-thumbs-up" aria-hidden="true"></i> ' . esc_html( $likes ) . '</span>';
|
| 170 |
}
|
| 171 |
if ($settings['eael_facebook_feed_comments']) {
|
| 172 |
+
$html .= '<span class="eael-facebook-feed-post-comments"><i class="far fa-comments" aria-hidden="true"></i> ' . esc_html( $comments ) . '</span>';
|
| 173 |
}
|
| 174 |
$html .= '</div>
|
| 175 |
</footer>';
|
| 177 |
$html .= '</div>
|
| 178 |
</div>';
|
| 179 |
} else {
|
| 180 |
+
$html .= '<a href="' . esc_url( $item['permalink_url'] ) . '" target="' . ($settings['eael_facebook_feed_link_target'] ? '_blank' : '_self') . '" class="eael-facebook-feed-item">
|
| 181 |
<div class="eael-facebook-feed-item-inner">
|
| 182 |
+
<img class="eael-facebook-feed-img" src="' . (empty($photo) ? EAEL_PLUGIN_URL . 'assets/front-end/img/flexia-preview.jpg' : esc_url( $photo )) . '">';
|
| 183 |
|
| 184 |
if ($settings['eael_facebook_feed_likes'] || $settings['eael_facebook_feed_comments']) {
|
| 185 |
$html .= '<div class="eael-facebook-feed-item-overlay">
|
| 186 |
<div class="eael-facebook-feed-item-overlay-inner">
|
| 187 |
<div class="eael-facebook-feed-meta">';
|
| 188 |
if ($settings['eael_facebook_feed_likes']) {
|
| 189 |
+
$html .= '<span class="eael-facebook-feed-post-likes"><i class="far fa-thumbs-up" aria-hidden="true"></i> ' . esc_html( $likes ) . '</span>';
|
| 190 |
}
|
| 191 |
if ($settings['eael_facebook_feed_comments']) {
|
| 192 |
+
$html .= '<span class="eael-facebook-feed-post-comments"><i class="far fa-comments" aria-hidden="true"></i> ' . esc_html( $comments ) . '</span>';
|
| 193 |
}
|
| 194 |
$html .= '</div>
|
| 195 |
</div>
|
| 236 |
$poshttps = stripos(trim($explodeText[$st]), 'https');
|
| 237 |
|
| 238 |
if($pos !== false) {
|
| 239 |
+
$stringText .= '<a href="https://facebook.com/hashtag/' . str_replace('#', '', $explodeText[$st]) . '?source=feed_text" target="_blank"> ' . esc_html( $explodeText[$st] ) . ' </a>';
|
| 240 |
} elseif($pos1 !== false) {
|
| 241 |
+
$stringText .= '<a href="https://facebook.com/' . $explodeText[$st] . '/" target="_blank"> ' . esc_html( $explodeText[$st] ) . ' </a>';
|
| 242 |
} elseif($poshttp !== false || $poshttps !== false) {
|
| 243 |
+
$stringText .= '<a href="' . esc_url( $explodeText[$st] ) . '" target="_blank"> ' . esc_html( $explodeText[$st] ) . ' </a>';
|
| 244 |
} else {
|
| 245 |
$stringText .= ' ' . $explodeText[$st];
|
| 246 |
}
|
includes/Traits/Helper.php
CHANGED
|
@@ -24,7 +24,7 @@ trait Helper
|
|
| 24 |
{
|
| 25 |
$ajax = wp_doing_ajax();
|
| 26 |
|
| 27 |
-
|
| 28 |
if ( empty( $_POST['nonce'] ) ) {
|
| 29 |
$err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
|
| 30 |
if ( $ajax ) {
|
|
@@ -75,12 +75,12 @@ trait Helper
|
|
| 75 |
|
| 76 |
if ( isset( $_REQUEST[ 'taxonomy' ] ) && isset($_REQUEST[ 'taxonomy' ][ 'taxonomy' ]) && $_REQUEST[ 'taxonomy' ][ 'taxonomy' ] != 'all' ) {
|
| 77 |
$args[ 'tax_query' ] = [
|
| 78 |
-
$_REQUEST[ 'taxonomy' ],
|
| 79 |
];
|
| 80 |
}
|
| 81 |
|
| 82 |
if ( $class == '\Essential_Addons_Elementor\Elements\Post_Grid' && $settings[ 'orderby' ] === 'rand' ) {
|
| 83 |
-
$args[ 'post__not_in' ] = array_unique( $_REQUEST[ 'post__not_in' ] );
|
| 84 |
unset( $args['offset'] );
|
| 85 |
}
|
| 86 |
|
|
@@ -103,12 +103,12 @@ trait Helper
|
|
| 103 |
}
|
| 104 |
|
| 105 |
$link_settings = [
|
| 106 |
-
'image_link_nofollow' => $settings['image_link_nofollow'] ? 'rel="nofollow"' : '',
|
| 107 |
-
'image_link_target_blank' => $settings['image_link_target_blank'] ? 'target="_blank"' : '',
|
| 108 |
-
'title_link_nofollow' => $settings['title_link_nofollow'] ? 'rel="nofollow"' : '',
|
| 109 |
-
'title_link_target_blank' => $settings['title_link_target_blank'] ? 'target="_blank"' : '',
|
| 110 |
-
'read_more_link_nofollow' => $settings['read_more_link_nofollow'] ? 'rel="nofollow"' : '',
|
| 111 |
-
'read_more_link_target_blank' => $settings['read_more_link_target_blank'] ? 'target="_blank"' : '',
|
| 112 |
];
|
| 113 |
|
| 114 |
$template_info = $this->eael_sanitize_template_param( $_REQUEST['template_info'] );
|
|
@@ -130,7 +130,7 @@ trait Helper
|
|
| 130 |
$template_info['file_name']
|
| 131 |
) );
|
| 132 |
|
| 133 |
-
if ( ! $file_path || 0 !== strpos( $file_path, $dir_path ) ) {
|
| 134 |
wp_send_json_error( 'Invalid template', 'invalid_template', 400 );
|
| 135 |
}
|
| 136 |
|
|
@@ -371,7 +371,7 @@ trait Helper
|
|
| 371 |
<div class="eael-twitter-feed-item-header clearfix">';
|
| 372 |
if ( $settings[ 'eael_twitter_feed_show_avatar' ] == 'true' ) {
|
| 373 |
$html .= '<a class="eael-twitter-feed-item-avatar avatar-' . $settings[ 'eael_twitter_feed_avatar_style' ] . '" href="//twitter.com/' . $settings[ 'eael_twitter_feed_ac_name' ] . '" target="_blank">
|
| 374 |
-
<img src="' . $item[ 'user' ][ 'profile_image_url_https' ] . '">
|
| 375 |
</a>';
|
| 376 |
}
|
| 377 |
|
|
@@ -396,7 +396,7 @@ trait Helper
|
|
| 396 |
$html .= '<a href="//twitter.com/' . $item[ 'user' ][ 'screen_name' ] . '/status/' . $item[ 'id_str' ] . '" target="_blank" class="read-more-link">'.$settings['eael_twitter_feed_show_read_more_text'].' <i class="fas fa-angle-double-right"></i></a>';
|
| 397 |
}
|
| 398 |
$html .= '</div>
|
| 399 |
-
' . ( isset( $item[ 'extended_entities' ][ 'media' ][ 0 ] ) && $settings[ 'eael_twitter_feed_media' ] == 'true' ? ( $item[ 'extended_entities' ][ 'media' ][ 0 ][ 'type' ] == 'photo' ? '<img src="' . $item[ 'extended_entities' ][ 'media' ][ 0 ][ 'media_url_https' ] . '">' : '' ) : '' ) . '
|
| 400 |
</div>
|
| 401 |
</div>';
|
| 402 |
}
|
|
@@ -600,11 +600,11 @@ trait Helper
|
|
| 600 |
}
|
| 601 |
|
| 602 |
public function eael_woo_pagination_product_ajax() {
|
| 603 |
-
|
| 604 |
-
|
| 605 |
|
| 606 |
-
$paginationNumber = absint($_POST['number']);
|
| 607 |
-
$paginationLimit = absint($_POST['limit']);
|
| 608 |
|
| 609 |
$args['posts_per_page'] = $paginationLimit;
|
| 610 |
|
|
@@ -634,13 +634,15 @@ trait Helper
|
|
| 634 |
}
|
| 635 |
|
| 636 |
public function eael_woo_pagination_ajax() {
|
| 637 |
-
|
| 638 |
-
|
|
|
|
|
|
|
| 639 |
$class = '\Essential_Addons_Elementor\Elements\Product_Grid';
|
| 640 |
|
| 641 |
global $wpdb;
|
| 642 |
-
$paginationNumber = absint($_POST['number']);
|
| 643 |
-
$paginationLimit = absint($_POST['limit']);
|
| 644 |
|
| 645 |
$pagination_args = $args;
|
| 646 |
$pagination_args['posts_per_page'] = -1;
|
|
@@ -655,9 +657,9 @@ trait Helper
|
|
| 655 |
if( $paginationNumber < $last ){ $paginationnext; }
|
| 656 |
|
| 657 |
$adjacents = "2";
|
| 658 |
-
$widget_id = $settings['eael_widget_id'];
|
| 659 |
-
$next_label = $settings['pagination_next_label'];
|
| 660 |
-
$prev_label = $settings['pagination_prev_label'];
|
| 661 |
|
| 662 |
$setPagination = "";
|
| 663 |
if( $pagination_Paginationlist > 0 ){
|
|
@@ -665,7 +667,7 @@ trait Helper
|
|
| 665 |
$setPagination .="<ul class='page-numbers'>";
|
| 666 |
|
| 667 |
if( 1< $paginationNumber ){
|
| 668 |
-
$setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='$widget_id' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$paginationprev' data-plimit='$paginationLimit'>$prev_label</a></li>";
|
| 669 |
}
|
| 670 |
|
| 671 |
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
|
@@ -746,7 +748,7 @@ trait Helper
|
|
| 746 |
if(!empty($cart_items)){
|
| 747 |
foreach ($cart_items as $key => $value) {
|
| 748 |
if (preg_match("/^attribute*/", $value['name'])) {
|
| 749 |
-
$variation[$value['name']] = $value['value'];
|
| 750 |
}
|
| 751 |
}
|
| 752 |
}
|
|
@@ -800,7 +802,7 @@ trait Helper
|
|
| 800 |
</a>
|
| 801 |
<div class="eael-promo-temp--left">
|
| 802 |
<div class="eael-promo-temp__logo">
|
| 803 |
-
<img src="<?php echo EAEL_PLUGIN_URL . 'assets/admin/images/templately/logo.svg'; ?>" alt="">
|
| 804 |
</div>
|
| 805 |
<ul class="eael-promo-temp__feature__list">
|
| 806 |
<li><?php _e('1,700+ Stunning Templates','essential-addons-for-elementor-lite'); ?></li>
|
|
@@ -811,7 +813,7 @@ trait Helper
|
|
| 811 |
<form class="eael-promo-temp__form">
|
| 812 |
<label>
|
| 813 |
<input type="radio" value="install" class="eael-temp-promo-confirmation" name='eael-promo-temp__radio' checked>
|
| 814 |
-
<span><?php echo $button_test; ?></span>
|
| 815 |
</label>
|
| 816 |
<label>
|
| 817 |
<input type="radio" value="dnd" class="eael-temp-promo-confirmation" name='eael-promo-temp__radio'>
|
|
@@ -833,7 +835,7 @@ trait Helper
|
|
| 833 |
<button class="eael-prmo-status-submit" style="display: none"><?php _e('Submit','essential-addons-for-elementor-lite') ?></button>
|
| 834 |
</div>
|
| 835 |
<div class="eael-promo-temp--right">
|
| 836 |
-
<img src="<?php echo EAEL_PLUGIN_URL . 'assets/admin/images/templately/templates-edit.jpg'; ?>" alt="">
|
| 837 |
</div>
|
| 838 |
</div>
|
| 839 |
</div>
|
|
@@ -926,7 +928,7 @@ trait Helper
|
|
| 926 |
|
| 927 |
$ajax = wp_doing_ajax();
|
| 928 |
|
| 929 |
-
|
| 930 |
|
| 931 |
if ( empty( $_POST['nonce'] ) ) {
|
| 932 |
$err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
|
|
@@ -979,7 +981,7 @@ trait Helper
|
|
| 979 |
|
| 980 |
if ( isset( $_REQUEST[ 'taxonomy' ] ) && isset($_REQUEST[ 'taxonomy' ][ 'taxonomy' ]) && $_REQUEST[ 'taxonomy' ][ 'taxonomy' ] != 'all' ) {
|
| 981 |
$args[ 'tax_query' ] = [
|
| 982 |
-
$_REQUEST[ 'taxonomy' ],
|
| 983 |
];
|
| 984 |
}
|
| 985 |
|
|
@@ -1002,7 +1004,7 @@ trait Helper
|
|
| 1002 |
$template_info['file_name']
|
| 1003 |
) );
|
| 1004 |
|
| 1005 |
-
if ( ! $file_path || 0 !== strpos( $file_path, $dir_path ) ) {
|
| 1006 |
wp_send_json_error( 'Invalid template', 'invalid_template', 400 );
|
| 1007 |
}
|
| 1008 |
|
|
@@ -1051,6 +1053,22 @@ trait Helper
|
|
| 1051 |
$template_info = array_map( 'sanitize_text_field', $template_info );
|
| 1052 |
return array_map( 'sanitize_file_name', $template_info );
|
| 1053 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1054 |
|
| 1055 |
}
|
| 1056 |
|
| 24 |
{
|
| 25 |
$ajax = wp_doing_ajax();
|
| 26 |
|
| 27 |
+
wp_parse_str($_POST['args'], $args);
|
| 28 |
if ( empty( $_POST['nonce'] ) ) {
|
| 29 |
$err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
|
| 30 |
if ( $ajax ) {
|
| 75 |
|
| 76 |
if ( isset( $_REQUEST[ 'taxonomy' ] ) && isset($_REQUEST[ 'taxonomy' ][ 'taxonomy' ]) && $_REQUEST[ 'taxonomy' ][ 'taxonomy' ] != 'all' ) {
|
| 77 |
$args[ 'tax_query' ] = [
|
| 78 |
+
$this->sanitize_taxonomy_data( $_REQUEST[ 'taxonomy' ] ),
|
| 79 |
];
|
| 80 |
}
|
| 81 |
|
| 82 |
if ( $class == '\Essential_Addons_Elementor\Elements\Post_Grid' && $settings[ 'orderby' ] === 'rand' ) {
|
| 83 |
+
$args[ 'post__not_in' ] = array_map( 'intval', array_unique( $_REQUEST[ 'post__not_in' ] ) );
|
| 84 |
unset( $args['offset'] );
|
| 85 |
}
|
| 86 |
|
| 103 |
}
|
| 104 |
|
| 105 |
$link_settings = [
|
| 106 |
+
'image_link_nofollow' => isset( $settings['image_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
| 107 |
+
'image_link_target_blank' => isset( $settings['image_link_target_blank'] ) ? 'target="_blank"' : '',
|
| 108 |
+
'title_link_nofollow' => isset( $settings['title_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
| 109 |
+
'title_link_target_blank' => isset( $settings['title_link_target_blank'] ) ? 'target="_blank"' : '',
|
| 110 |
+
'read_more_link_nofollow' => isset( $settings['read_more_link_nofollow'] ) ? 'rel="nofollow"' : '',
|
| 111 |
+
'read_more_link_target_blank' => isset( $settings['read_more_link_target_blank'] ) ? 'target="_blank"' : '',
|
| 112 |
];
|
| 113 |
|
| 114 |
$template_info = $this->eael_sanitize_template_param( $_REQUEST['template_info'] );
|
| 130 |
$template_info['file_name']
|
| 131 |
) );
|
| 132 |
|
| 133 |
+
if ( ! $file_path || 0 !== strpos( $file_path, realpath( $dir_path ) ) ) {
|
| 134 |
wp_send_json_error( 'Invalid template', 'invalid_template', 400 );
|
| 135 |
}
|
| 136 |
|
| 371 |
<div class="eael-twitter-feed-item-header clearfix">';
|
| 372 |
if ( $settings[ 'eael_twitter_feed_show_avatar' ] == 'true' ) {
|
| 373 |
$html .= '<a class="eael-twitter-feed-item-avatar avatar-' . $settings[ 'eael_twitter_feed_avatar_style' ] . '" href="//twitter.com/' . $settings[ 'eael_twitter_feed_ac_name' ] . '" target="_blank">
|
| 374 |
+
<img src="' . esc_url( $item[ 'user' ][ 'profile_image_url_https' ] ) . '">
|
| 375 |
</a>';
|
| 376 |
}
|
| 377 |
|
| 396 |
$html .= '<a href="//twitter.com/' . $item[ 'user' ][ 'screen_name' ] . '/status/' . $item[ 'id_str' ] . '" target="_blank" class="read-more-link">'.$settings['eael_twitter_feed_show_read_more_text'].' <i class="fas fa-angle-double-right"></i></a>';
|
| 397 |
}
|
| 398 |
$html .= '</div>
|
| 399 |
+
' . ( isset( $item[ 'extended_entities' ][ 'media' ][ 0 ] ) && $settings[ 'eael_twitter_feed_media' ] == 'true' ? ( $item[ 'extended_entities' ][ 'media' ][ 0 ][ 'type' ] == 'photo' ? '<img src="' . esc_url( $item[ 'extended_entities' ][ 'media' ][ 0 ][ 'media_url_https' ] ) . '">' : '' ) : '' ) . '
|
| 400 |
</div>
|
| 401 |
</div>';
|
| 402 |
}
|
| 600 |
}
|
| 601 |
|
| 602 |
public function eael_woo_pagination_product_ajax() {
|
| 603 |
+
wp_parse_str( $_REQUEST['args'], $args );
|
| 604 |
+
wp_parse_str( $_REQUEST['settings'], $settings );
|
| 605 |
|
| 606 |
+
$paginationNumber = absint( $_POST['number'] );
|
| 607 |
+
$paginationLimit = absint( $_POST['limit'] );
|
| 608 |
|
| 609 |
$args['posts_per_page'] = $paginationLimit;
|
| 610 |
|
| 634 |
}
|
| 635 |
|
| 636 |
public function eael_woo_pagination_ajax() {
|
| 637 |
+
|
| 638 |
+
wp_parse_str( $_REQUEST['args'], $args );
|
| 639 |
+
wp_parse_str( $_REQUEST['settings'], $settings );
|
| 640 |
+
|
| 641 |
$class = '\Essential_Addons_Elementor\Elements\Product_Grid';
|
| 642 |
|
| 643 |
global $wpdb;
|
| 644 |
+
$paginationNumber = absint( $_POST['number'] );
|
| 645 |
+
$paginationLimit = absint( $_POST['limit'] );
|
| 646 |
|
| 647 |
$pagination_args = $args;
|
| 648 |
$pagination_args['posts_per_page'] = -1;
|
| 657 |
if( $paginationNumber < $last ){ $paginationnext; }
|
| 658 |
|
| 659 |
$adjacents = "2";
|
| 660 |
+
$widget_id = sanitize_text_field( $settings['eael_widget_id'] );
|
| 661 |
+
$next_label = sanitize_text_field( $settings['pagination_next_label'] );
|
| 662 |
+
$prev_label = sanitize_text_field( $settings['pagination_prev_label'] );
|
| 663 |
|
| 664 |
$setPagination = "";
|
| 665 |
if( $pagination_Paginationlist > 0 ){
|
| 667 |
$setPagination .="<ul class='page-numbers'>";
|
| 668 |
|
| 669 |
if( 1< $paginationNumber ){
|
| 670 |
+
$setPagination .="<li class='pagitext'><a href='javascript:void(0);' class='page-numbers' data-template='".json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $settings['eael_widget_name'] ], 1)."' data-widgetid='".esc_attr( $widget_id )."' data-args='".http_build_query($args)."' data-settings='".http_build_query($settings)."' data-pnumber='$paginationprev' data-plimit='$paginationLimit'>$prev_label</a></li>";
|
| 671 |
}
|
| 672 |
|
| 673 |
if ( $pagination_Paginationlist < 7 + ($adjacents * 2) ){
|
| 748 |
if(!empty($cart_items)){
|
| 749 |
foreach ($cart_items as $key => $value) {
|
| 750 |
if (preg_match("/^attribute*/", $value['name'])) {
|
| 751 |
+
$variation[$value['name']] = sanitize_text_field( $value['value'] );
|
| 752 |
}
|
| 753 |
}
|
| 754 |
}
|
| 802 |
</a>
|
| 803 |
<div class="eael-promo-temp--left">
|
| 804 |
<div class="eael-promo-temp__logo">
|
| 805 |
+
<img src="<?php echo esc_url( EAEL_PLUGIN_URL . 'assets/admin/images/templately/logo.svg' ); ?>" alt="">
|
| 806 |
</div>
|
| 807 |
<ul class="eael-promo-temp__feature__list">
|
| 808 |
<li><?php _e('1,700+ Stunning Templates','essential-addons-for-elementor-lite'); ?></li>
|
| 813 |
<form class="eael-promo-temp__form">
|
| 814 |
<label>
|
| 815 |
<input type="radio" value="install" class="eael-temp-promo-confirmation" name='eael-promo-temp__radio' checked>
|
| 816 |
+
<span><?php echo esc_html( $button_test ); ?></span>
|
| 817 |
</label>
|
| 818 |
<label>
|
| 819 |
<input type="radio" value="dnd" class="eael-temp-promo-confirmation" name='eael-promo-temp__radio'>
|
| 835 |
<button class="eael-prmo-status-submit" style="display: none"><?php _e('Submit','essential-addons-for-elementor-lite') ?></button>
|
| 836 |
</div>
|
| 837 |
<div class="eael-promo-temp--right">
|
| 838 |
+
<img src="<?php echo esc_url( EAEL_PLUGIN_URL . 'assets/admin/images/templately/templates-edit.jpg' ); ?>" alt="">
|
| 839 |
</div>
|
| 840 |
</div>
|
| 841 |
</div>
|
| 928 |
|
| 929 |
$ajax = wp_doing_ajax();
|
| 930 |
|
| 931 |
+
wp_parse_str( $_POST['args'], $args );
|
| 932 |
|
| 933 |
if ( empty( $_POST['nonce'] ) ) {
|
| 934 |
$err_msg = __( 'Insecure form submitted without security token', 'essential-addons-for-elementor-lite' );
|
| 981 |
|
| 982 |
if ( isset( $_REQUEST[ 'taxonomy' ] ) && isset($_REQUEST[ 'taxonomy' ][ 'taxonomy' ]) && $_REQUEST[ 'taxonomy' ][ 'taxonomy' ] != 'all' ) {
|
| 983 |
$args[ 'tax_query' ] = [
|
| 984 |
+
$this->sanitize_taxonomy_data( $_REQUEST[ 'taxonomy' ] ),
|
| 985 |
];
|
| 986 |
}
|
| 987 |
|
| 1004 |
$template_info['file_name']
|
| 1005 |
) );
|
| 1006 |
|
| 1007 |
+
if ( ! $file_path || 0 !== strpos( $file_path, realpath( $dir_path ) ) ) {
|
| 1008 |
wp_send_json_error( 'Invalid template', 'invalid_template', 400 );
|
| 1009 |
}
|
| 1010 |
|
| 1053 |
$template_info = array_map( 'sanitize_text_field', $template_info );
|
| 1054 |
return array_map( 'sanitize_file_name', $template_info );
|
| 1055 |
}
|
| 1056 |
+
|
| 1057 |
+
/**
|
| 1058 |
+
* sanitize_taxonomy_data
|
| 1059 |
+
* Sanitize all value for tax query
|
| 1060 |
+
*
|
| 1061 |
+
* @param array $tax_list taxonomy param list
|
| 1062 |
+
*
|
| 1063 |
+
* @access protected
|
| 1064 |
+
* @return array|array[]|string[]
|
| 1065 |
+
* @since 5.0.4
|
| 1066 |
+
*/
|
| 1067 |
+
protected function sanitize_taxonomy_data( $tax_list ){
|
| 1068 |
+
return array_map( function ( $param ) {
|
| 1069 |
+
return is_array( $param ) ? array_map( 'sanitize_text_field', $param ) : sanitize_text_field( $param );
|
| 1070 |
+
}, $tax_list );
|
| 1071 |
+
}
|
| 1072 |
|
| 1073 |
}
|
| 1074 |
|
includes/Traits/Library.php
CHANGED
|
@@ -187,7 +187,7 @@ trait Library
|
|
| 187 |
return true;
|
| 188 |
}
|
| 189 |
|
| 190 |
-
if (!empty($_REQUEST['action']) && !$this->check_background_action($_REQUEST['action'])) {
|
| 191 |
return true;
|
| 192 |
}
|
| 193 |
|
|
@@ -219,7 +219,7 @@ trait Library
|
|
| 219 |
return false;
|
| 220 |
}
|
| 221 |
|
| 222 |
-
if (!empty($_REQUEST['action']) && !$this->check_background_action($_REQUEST['action'])) {
|
| 223 |
return false;
|
| 224 |
}
|
| 225 |
|
| 187 |
return true;
|
| 188 |
}
|
| 189 |
|
| 190 |
+
if (!empty($_REQUEST['action']) && !$this->check_background_action( sanitize_text_field( $_REQUEST['action'] ) )) {
|
| 191 |
return true;
|
| 192 |
}
|
| 193 |
|
| 219 |
return false;
|
| 220 |
}
|
| 221 |
|
| 222 |
+
if (!empty($_REQUEST['action']) && !$this->check_background_action( sanitize_text_field( $_REQUEST['action'] ) )) {
|
| 223 |
return false;
|
| 224 |
}
|
| 225 |
|
includes/Traits/Login_Registration.php
CHANGED
|
@@ -172,13 +172,13 @@ trait Login_Registration {
|
|
| 172 |
'message' => isset( $settings['success_login'] ) ? $settings['success_login'] : __( 'You are logged in successfully', 'essential-addons-for-elementor-lite' ),
|
| 173 |
];
|
| 174 |
if ( ! empty( $_POST['redirect_to'] ) ) {
|
| 175 |
-
$data['redirect_to'] =
|
| 176 |
}
|
| 177 |
wp_send_json_success( $data );
|
| 178 |
}
|
| 179 |
|
| 180 |
if ( ! empty( $_POST['redirect_to'] ) ) {
|
| 181 |
-
wp_safe_redirect(
|
| 182 |
exit();
|
| 183 |
}
|
| 184 |
}
|
|
@@ -297,7 +297,7 @@ trait Login_Registration {
|
|
| 297 |
|
| 298 |
// if user provided user name, validate & sanitize it
|
| 299 |
if ( isset( $_POST['user_name'] ) ) {
|
| 300 |
-
$username = $_POST['user_name'];
|
| 301 |
if ( ! validate_username( $username ) || mb_strlen( $username ) > 60 ) {
|
| 302 |
$errors['user_name'] = isset( $settings['err_username'] ) ? $settings['err_username'] : __( 'Invalid username provided.', 'essential-addons-for-elementor-lite' );
|
| 303 |
}elseif(username_exists( $username )){
|
|
@@ -719,7 +719,7 @@ trait Login_Registration {
|
|
| 719 |
$endpoint = 'https://www.google.com/recaptcha/api/siteverify';
|
| 720 |
$data = [
|
| 721 |
'secret' => get_option( 'eael_recaptcha_secret' ),
|
| 722 |
-
'response' => $_REQUEST['g-recaptcha-response'],
|
| 723 |
'ip' => $_SERVER['REMOTE_ADDR'],
|
| 724 |
];
|
| 725 |
|
| 172 |
'message' => isset( $settings['success_login'] ) ? $settings['success_login'] : __( 'You are logged in successfully', 'essential-addons-for-elementor-lite' ),
|
| 173 |
];
|
| 174 |
if ( ! empty( $_POST['redirect_to'] ) ) {
|
| 175 |
+
$data['redirect_to'] = esc_url_raw( $_POST['redirect_to'] );
|
| 176 |
}
|
| 177 |
wp_send_json_success( $data );
|
| 178 |
}
|
| 179 |
|
| 180 |
if ( ! empty( $_POST['redirect_to'] ) ) {
|
| 181 |
+
wp_safe_redirect( esc_url_raw( $_POST['redirect_to'] ) );
|
| 182 |
exit();
|
| 183 |
}
|
| 184 |
}
|
| 297 |
|
| 298 |
// if user provided user name, validate & sanitize it
|
| 299 |
if ( isset( $_POST['user_name'] ) ) {
|
| 300 |
+
$username = sanitize_user( $_POST['user_name'] );
|
| 301 |
if ( ! validate_username( $username ) || mb_strlen( $username ) > 60 ) {
|
| 302 |
$errors['user_name'] = isset( $settings['err_username'] ) ? $settings['err_username'] : __( 'Invalid username provided.', 'essential-addons-for-elementor-lite' );
|
| 303 |
}elseif(username_exists( $username )){
|
| 719 |
$endpoint = 'https://www.google.com/recaptcha/api/siteverify';
|
| 720 |
$data = [
|
| 721 |
'secret' => get_option( 'eael_recaptcha_secret' ),
|
| 722 |
+
'response' => sanitize_text_field( $_REQUEST['g-recaptcha-response'] ),
|
| 723 |
'ip' => $_SERVER['REMOTE_ADDR'],
|
| 724 |
];
|
| 725 |
|
includes/Traits/Woo_Product_Comparable.php
CHANGED
|
@@ -2150,10 +2150,10 @@ trait Woo_Product_Comparable {
|
|
| 2150 |
$p_exist = ! empty( $product_ids ) && is_array( $product_ids );
|
| 2151 |
if ( ! empty( $_POST['remove_product'] ) && $p_exist ) {
|
| 2152 |
$product_ids = array_filter($product_ids, function ($id) use ($product_id){
|
| 2153 |
-
return $id != $product_id;
|
| 2154 |
});
|
| 2155 |
} else {
|
| 2156 |
-
$product_ids[] = $product_id;
|
| 2157 |
}
|
| 2158 |
}
|
| 2159 |
|
| 2150 |
$p_exist = ! empty( $product_ids ) && is_array( $product_ids );
|
| 2151 |
if ( ! empty( $_POST['remove_product'] ) && $p_exist ) {
|
| 2152 |
$product_ids = array_filter($product_ids, function ($id) use ($product_id){
|
| 2153 |
+
return $id != intval( $product_id );
|
| 2154 |
});
|
| 2155 |
} else {
|
| 2156 |
+
$product_ids[] = intval( $product_id );
|
| 2157 |
}
|
| 2158 |
}
|
| 2159 |
|
includes/templates/admin/elements.php
CHANGED
|
@@ -597,14 +597,14 @@ $elements = apply_filters( 'add_eael_elementor_addons', $elements );
|
|
| 597 |
</div>
|
| 598 |
<?php endif; ?>
|
| 599 |
<div class="element__content">
|
| 600 |
-
<h4><?php echo $item[ 'title' ]; ?></h4>
|
| 601 |
<div class="element__options">
|
| 602 |
<?php
|
| 603 |
if ( !empty( $item[ 'setting' ] ) ):
|
| 604 |
$link = !empty( $item[ 'setting' ][ 'link' ] ) ? $item[ 'setting' ][ 'link' ] : '#';
|
| 605 |
$id = !empty( $item[ 'setting' ][ 'id' ] ) ? $item[ 'setting' ][ 'id' ] : '';
|
| 606 |
?>
|
| 607 |
-
<a target="_blank" href="<?php echo $link; ?>" id="<?php echo $id; ?>" class="element__icon">
|
| 608 |
<i class="ea-admin-icon icon-gear"></i>
|
| 609 |
<span class="tooltip-text"><?php esc_html_e( 'Setting', 'essential-addons-for-elementor-lite' ); ?></span>
|
| 610 |
</a>
|
| 597 |
</div>
|
| 598 |
<?php endif; ?>
|
| 599 |
<div class="element__content">
|
| 600 |
+
<h4><?php echo esc_html( $item[ 'title' ] ); ?></h4>
|
| 601 |
<div class="element__options">
|
| 602 |
<?php
|
| 603 |
if ( !empty( $item[ 'setting' ] ) ):
|
| 604 |
$link = !empty( $item[ 'setting' ][ 'link' ] ) ? $item[ 'setting' ][ 'link' ] : '#';
|
| 605 |
$id = !empty( $item[ 'setting' ][ 'id' ] ) ? $item[ 'setting' ][ 'id' ] : '';
|
| 606 |
?>
|
| 607 |
+
<a target="_blank" href="<?php echo esc_url( $link ); ?>" id="<?php echo esc_attr( $id ); ?>" class="element__icon">
|
| 608 |
<i class="ea-admin-icon icon-gear"></i>
|
| 609 |
<span class="tooltip-text"><?php esc_html_e( 'Setting', 'essential-addons-for-elementor-lite' ); ?></span>
|
| 610 |
</a>
|
includes/templates/admin/extensions.php
CHANGED
|
@@ -108,7 +108,7 @@ $extensions = [
|
|
| 108 |
</div>
|
| 109 |
<?php endif; ?>
|
| 110 |
<div class="element__content">
|
| 111 |
-
<h4><?php echo $item[ 'title' ]; ?></h4>
|
| 112 |
<div class="element__options">
|
| 113 |
|
| 114 |
<?php
|
|
@@ -116,7 +116,7 @@ $extensions = [
|
|
| 116 |
$link = !empty( $item[ 'setting' ][ 'link' ] ) ? $item[ 'setting' ][ 'link' ] : '#';
|
| 117 |
$id = !empty( $item[ 'setting' ][ 'id' ] ) ? $item[ 'setting' ][ 'id' ] : '';
|
| 118 |
?>
|
| 119 |
-
<a href="<?php echo $link; ?>" id="<?php echo $id; ?>" class="element__icon">
|
| 120 |
<i class="ea-admin-icon icon-gear"></i>
|
| 121 |
<span class="tooltip-text"><?php esc_html_e( 'Setting', 'essential-addons-for-elementor-lite' ); ?></span>
|
| 122 |
</a>
|
|
@@ -137,7 +137,7 @@ $extensions = [
|
|
| 137 |
type="checkbox" %2$s>', $item[ 'key' ], $status );
|
| 138 |
?>
|
| 139 |
|
| 140 |
-
<span class="switch__box <?php echo $disabled; ?>"></span>
|
| 141 |
</label>
|
| 142 |
</div>
|
| 143 |
</div>
|
| 108 |
</div>
|
| 109 |
<?php endif; ?>
|
| 110 |
<div class="element__content">
|
| 111 |
+
<h4><?php echo esc_html( $item[ 'title' ] ); ?></h4>
|
| 112 |
<div class="element__options">
|
| 113 |
|
| 114 |
<?php
|
| 116 |
$link = !empty( $item[ 'setting' ][ 'link' ] ) ? $item[ 'setting' ][ 'link' ] : '#';
|
| 117 |
$id = !empty( $item[ 'setting' ][ 'id' ] ) ? $item[ 'setting' ][ 'id' ] : '';
|
| 118 |
?>
|
| 119 |
+
<a href="<?php echo esc_url( $link ); ?>" id="<?php echo esc_attr( $id ); ?>" class="element__icon">
|
| 120 |
<i class="ea-admin-icon icon-gear"></i>
|
| 121 |
<span class="tooltip-text"><?php esc_html_e( 'Setting', 'essential-addons-for-elementor-lite' ); ?></span>
|
| 122 |
</a>
|
| 137 |
type="checkbox" %2$s>', $item[ 'key' ], $status );
|
| 138 |
?>
|
| 139 |
|
| 140 |
+
<span class="switch__box <?php echo esc_attr( $disabled ); ?>"></span>
|
| 141 |
</label>
|
| 142 |
</div>
|
| 143 |
</div>
|
includes/templates/admin/integrations.php
CHANGED
|
@@ -66,14 +66,14 @@ $integrations = [
|
|
| 66 |
<?php if ( $this->installer->get_local_plugin_data( $plugin[ 'basename' ] ) === false ) { ?>
|
| 67 |
<a class="eael-button button__themeColor hover__shadow wpdeveloper-plugin-installer"
|
| 68 |
data-action="install"
|
| 69 |
-
data-slug="<?php echo $plugin[ 'slug' ]; ?>"><?php _e( 'Install', 'essential-addons-for-elementor-lite' ); ?></a>
|
| 70 |
<?php } else { ?>
|
| 71 |
<?php if ( is_plugin_active( $plugin[ 'basename' ] ) ) { ?>
|
| 72 |
<a class="eael-button button__white button__white-not-hover wpdeveloper-plugin-installer"><?php _e( 'Activated', 'essential-addons-for-elementor-lite' ); ?></a>
|
| 73 |
<?php } else { ?>
|
| 74 |
<a class="eael-button button__themeColor hover__shadow wpdeveloper-plugin-installer"
|
| 75 |
data-action="activate"
|
| 76 |
-
data-basename="<?php echo $plugin[ 'basename' ]; ?>"><?php _e( 'Activate', 'essential-addons-for-elementor-lite' ); ?></a>
|
| 77 |
<?php } ?>
|
| 78 |
<?php } ?>
|
| 79 |
</div>
|
| 66 |
<?php if ( $this->installer->get_local_plugin_data( $plugin[ 'basename' ] ) === false ) { ?>
|
| 67 |
<a class="eael-button button__themeColor hover__shadow wpdeveloper-plugin-installer"
|
| 68 |
data-action="install"
|
| 69 |
+
data-slug="<?php echo esc_attr( $plugin[ 'slug' ] ); ?>"><?php _e( 'Install', 'essential-addons-for-elementor-lite' ); ?></a>
|
| 70 |
<?php } else { ?>
|
| 71 |
<?php if ( is_plugin_active( $plugin[ 'basename' ] ) ) { ?>
|
| 72 |
<a class="eael-button button__white button__white-not-hover wpdeveloper-plugin-installer"><?php _e( 'Activated', 'essential-addons-for-elementor-lite' ); ?></a>
|
| 73 |
<?php } else { ?>
|
| 74 |
<a class="eael-button button__themeColor hover__shadow wpdeveloper-plugin-installer"
|
| 75 |
data-action="activate"
|
| 76 |
+
data-basename="<?php echo esc_attr( $plugin[ 'basename' ] ); ?>"><?php _e( 'Activate', 'essential-addons-for-elementor-lite' ); ?></a>
|
| 77 |
<?php } ?>
|
| 78 |
<?php } ?>
|
| 79 |
</div>
|
includes/templates/admin/popup.php
CHANGED
|
@@ -27,7 +27,7 @@
|
|
| 27 |
<h3><?php _e( 'Google Map API Key', 'essential-addons-for-elementor-lite' ); ?></h3>
|
| 28 |
<div class="modal__api__form">
|
| 29 |
<input name="google-map-api" id="google-map-api"
|
| 30 |
-
value="<?php echo get_option( 'eael_save_google_map_api' ); ?>" type="text"
|
| 31 |
class="eael-form__control" placeholder="Set API key">
|
| 32 |
<button type="button" class="eael-button button__themeColor eael-save-trigger eael-admin-popup-close"><i
|
| 33 |
class="ea-admin-icon icon-long-arrow-right"></i></button>
|
|
@@ -44,7 +44,7 @@
|
|
| 44 |
<h3><?php _e( 'Mailchimp API Key', 'essential-addons-for-elementor-lite' ); ?></h3>
|
| 45 |
<div class="modal__api__form">
|
| 46 |
<input name="mailchimp-api" id="mailchimp-api" type="text" class="eael-form__control"
|
| 47 |
-
value="<?php echo get_option( 'eael_save_mailchimp_api' ); ?>"
|
| 48 |
placeholder="Set API key">
|
| 49 |
<button class="eael-button button__themeColor eael-save-trigger eael-admin-popup-close"><i
|
| 50 |
class="ea-admin-icon icon-long-arrow-right"></i></button>
|
|
@@ -166,7 +166,7 @@
|
|
| 166 |
?>
|
| 167 |
</select>
|
| 168 |
</div>
|
| 169 |
-
<button class="eael-button button__themeColor eael-save-trigger eael-admin-popup-close"
|
| 170 |
</div>
|
| 171 |
</div>
|
| 172 |
|
| 27 |
<h3><?php _e( 'Google Map API Key', 'essential-addons-for-elementor-lite' ); ?></h3>
|
| 28 |
<div class="modal__api__form">
|
| 29 |
<input name="google-map-api" id="google-map-api"
|
| 30 |
+
value="<?php echo esc_attr( get_option( 'eael_save_google_map_api' ) ); ?>" type="text"
|
| 31 |
class="eael-form__control" placeholder="Set API key">
|
| 32 |
<button type="button" class="eael-button button__themeColor eael-save-trigger eael-admin-popup-close"><i
|
| 33 |
class="ea-admin-icon icon-long-arrow-right"></i></button>
|
| 44 |
<h3><?php _e( 'Mailchimp API Key', 'essential-addons-for-elementor-lite' ); ?></h3>
|
| 45 |
<div class="modal__api__form">
|
| 46 |
<input name="mailchimp-api" id="mailchimp-api" type="text" class="eael-form__control"
|
| 47 |
+
value="<?php echo esc_attr( get_option( 'eael_save_mailchimp_api' ) ); ?>"
|
| 48 |
placeholder="Set API key">
|
| 49 |
<button class="eael-button button__themeColor eael-save-trigger eael-admin-popup-close"><i
|
| 50 |
class="ea-admin-icon icon-long-arrow-right"></i></button>
|
| 166 |
?>
|
| 167 |
</select>
|
| 168 |
</div>
|
| 169 |
+
<button class="eael-button button__themeColor eael-save-trigger eael-admin-popup-close"><?php _e('Submit','essential-addons-for-elementor-lite') ?></button>
|
| 170 |
</div>
|
| 171 |
</div>
|
| 172 |
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
|
@@ -57,11 +57,11 @@ msgstr ""
|
|
| 57 |
msgid "You don't have set any slug and file name to install the plugins"
|
| 58 |
msgstr ""
|
| 59 |
|
| 60 |
-
#: ../includes/Classes/WPDeveloper_Notice.php:
|
| 61 |
msgid "Install Now!"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:
|
| 65 |
msgid "you are not allowed to do this action"
|
| 66 |
msgstr ""
|
| 67 |
|
|
@@ -69,15 +69,15 @@ msgstr ""
|
|
| 69 |
msgid "Plugin is installed successfully!"
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:
|
| 73 |
msgid "Plugin is updated successfully!"
|
| 74 |
msgstr ""
|
| 75 |
|
| 76 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:
|
| 77 |
msgid "Plugin couldn't be activated."
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
-
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:
|
| 81 |
msgid "Plugin is activated successfully!"
|
| 82 |
msgstr ""
|
| 83 |
|
|
@@ -121,7 +121,7 @@ msgstr ""
|
|
| 121 |
msgid "Next"
|
| 122 |
msgstr ""
|
| 123 |
|
| 124 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1015, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:311, ../includes/Elements/Filterable_Gallery.php:776, ../includes/Elements/Filterable_Gallery.php:1308, ../includes/Elements/Filterable_Gallery.php:1691, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:680, ../includes/Elements/GravityForms.php:1957, ../includes/Elements/GravityForms.php:2207, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:716, ../includes/Elements/Login_Register.php:2595, ../includes/Elements/Login_Register.php:3263, ../includes/Elements/Login_Register.php:3583, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:718, ../includes/Elements/Post_Grid.php:813, ../includes/Elements/Post_Grid.php:896, ../includes/Elements/Post_Timeline.php:365, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Pricing_Table.php:258, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Product_Grid.php:1021, ../includes/Elements/Product_Grid.php:1715, ../includes/Elements/Product_Grid.php:2204, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:341, ../includes/Elements/Simple_Menu.php:748, ../includes/Elements/Simple_Menu.php:774, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:1094, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:217, ../includes/Elements/Tooltip.php:289, ../includes/Elements/Tooltip.php:385, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:277, ../includes/Elements/Woo_Cart.php:498, ../includes/Elements/Woo_Cart.php:594, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:743, ../includes/Elements/Woo_Cart.php:851, ../includes/Elements/Woo_Cart.php:1596, ../includes/Elements/Woo_Cart.php:2202, ../includes/Elements/Woo_Product_Carousel.php:705, ../includes/Elements/Woo_Product_Carousel.php:824, ../includes/Elements/Woo_Product_Carousel.php:877, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:560, ../includes/Elements/Woo_Product_Gallery.php:1523, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:463, ../includes/Traits/Controls.php:602, ../includes/Traits/Controls.php:
|
| 125 |
msgid "Right"
|
| 126 |
msgstr ""
|
| 127 |
|
|
@@ -197,7 +197,7 @@ msgstr ""
|
|
| 197 |
msgid "Upgrade to PRO"
|
| 198 |
msgstr ""
|
| 199 |
|
| 200 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:324, ../includes/Traits/Helper.php:
|
| 201 |
msgid "Install Templately"
|
| 202 |
msgstr ""
|
| 203 |
|
|
@@ -716,11 +716,11 @@ msgstr ""
|
|
| 716 |
msgid "Width"
|
| 717 |
msgstr ""
|
| 718 |
|
| 719 |
-
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:384, ../includes/Elements/Adv_Accordion.php:573, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:694, ../includes/Elements/Adv_Accordion.php:777, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Accordion.php:945, ../includes/Elements/Adv_Accordion.php:991, ../includes/Elements/Adv_Tabs.php:360, ../includes/Elements/Adv_Tabs.php:554, ../includes/Elements/Adv_Tabs.php:621, ../includes/Elements/Adv_Tabs.php:690, ../includes/Elements/Adv_Tabs.php:784, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:810, ../includes/Elements/Event_Calendar.php:877, ../includes/Elements/Event_Calendar.php:931, ../includes/Elements/Event_Calendar.php:1603, ../includes/Elements/Event_Calendar.php:1674, ../includes/Elements/Facebook_Feed.php:451, ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1051, ../includes/Elements/Filterable_Gallery.php:1131, ../includes/Elements/Filterable_Gallery.php:1278, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:1554, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:1890, ../includes/Elements/Filterable_Gallery.php:2411, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:994, ../includes/Elements/Flip_Box.php:1107, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:878, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1883, ../includes/Elements/GravityForms.php:2052, ../includes/Elements/GravityForms.php:2279, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Interactive_Circle.php:357, ../includes/Elements/Interactive_Circle.php:503, ../includes/Elements/Interactive_Circle.php:730, ../includes/Elements/Login_Register.php:2778, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1783, ../includes/Elements/Pricing_Table.php:1949, ../includes/Elements/Product_Grid.php:2275, ../includes/Elements/Simple_Menu.php:621, ../includes/Elements/Simple_Menu.php:694, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:482, ../includes/Elements/Twitter_Feed.php:461, ../includes/Elements/Twitter_Feed.php:551, ../includes/Elements/Twitter_Feed.php:868, ../includes/Elements/Woo_Checkout.php:1519, ../includes/Elements/Woo_Checkout.php:1765, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2675, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:545, ../includes/Traits/Controls.php:
|
| 720 |
msgid "Border"
|
| 721 |
msgstr ""
|
| 722 |
|
| 723 |
-
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Accordion.php:580, ../includes/Elements/Adv_Accordion.php:640, ../includes/Elements/Adv_Accordion.php:701, ../includes/Elements/Adv_Tabs.php:368, ../includes/Elements/Adv_Tabs.php:561, ../includes/Elements/Adv_Tabs.php:628, ../includes/Elements/Adv_Tabs.php:697, ../includes/Elements/Adv_Tabs.php:791, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:206, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:818, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Event_Calendar.php:939, ../includes/Elements/Event_Calendar.php:1175, ../includes/Elements/Event_Calendar.php:1343, ../includes/Elements/Event_Calendar.php:1611, ../includes/Elements/Event_Calendar.php:1682, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:880, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1059, ../includes/Elements/Filterable_Gallery.php:1139, ../includes/Elements/Filterable_Gallery.php:1343, ../includes/Elements/Filterable_Gallery.php:1837, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:2069, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2433, ../includes/Elements/Filterable_Gallery.php:2542, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1017, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/Flip_Box.php:1391, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:889, ../includes/Elements/GravityForms.php:1359, ../includes/Elements/GravityForms.php:1555, ../includes/Elements/GravityForms.php:1687, ../includes/Elements/GravityForms.php:1893, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2289, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1214, ../includes/Elements/Login_Register.php:1579, ../includes/Elements/Login_Register.php:1814, ../includes/Elements/Login_Register.php:1988, ../includes/Elements/Login_Register.php:2144, ../includes/Elements/Login_Register.php:2284, ../includes/Elements/Login_Register.php:2378, ../includes/Elements/Login_Register.php:2469, ../includes/Elements/Login_Register.php:2643, ../includes/Elements/Login_Register.php:2680, ../includes/Elements/Login_Register.php:2794, ../includes/Elements/Login_Register.php:3304, ../includes/Elements/Login_Register.php:3341, ../includes/Elements/Login_Register.php:3625, ../includes/Elements/Login_Register.php:3662, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Pricing_Table.php:1557, ../includes/Elements/Pricing_Table.php:1806, ../includes/Elements/Pricing_Table.php:1957, ../includes/Elements/Product_Grid.php:943, ../includes/Elements/Product_Grid.php:2019, ../includes/Elements/Product_Grid.php:2375, ../includes/Elements/Product_Grid.php:2715, ../includes/Elements/Product_Grid.php:2914, ../includes/Elements/Product_Grid.php:2946, ../includes/Elements/Simple_Menu.php:629, ../includes/Elements/Sticky_Video.php:592, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:499, ../includes/Elements/Twitter_Feed.php:469, ../includes/Elements/Twitter_Feed.php:562, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Cart.php:1317, ../includes/Elements/Woo_Cart.php:1464, ../includes/Elements/Woo_Cart.php:1720, ../includes/Elements/Woo_Cart.php:1859, ../includes/Elements/Woo_Cart.php:1960, ../includes/Elements/Woo_Cart.php:2114, ../includes/Elements/Woo_Cart.php:2319, ../includes/Elements/Woo_Cart.php:2405, ../includes/Elements/Woo_Cart.php:2489, ../includes/Elements/Woo_Checkout.php:659, ../includes/Elements/Woo_Checkout.php:808, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1252, ../includes/Elements/Woo_Checkout.php:1405, ../includes/Elements/Woo_Checkout.php:1528, ../includes/Elements/Woo_Checkout.php:1703, ../includes/Elements/Woo_Checkout.php:1911, ../includes/Elements/Woo_Checkout.php:2113, ../includes/Elements/Woo_Checkout.php:2293, ../includes/Elements/Woo_Checkout.php:2573, ../includes/Elements/Woo_Product_Carousel.php:1008, ../includes/Elements/Woo_Product_Carousel.php:1410, ../includes/Elements/Woo_Product_Carousel.php:1813, ../includes/Elements/Woo_Product_Carousel.php:2009, ../includes/Elements/Woo_Product_Carousel.php:2041, ../includes/Elements/Woo_Product_Carousel.php:2251, ../includes/Elements/Woo_Product_Carousel.php:2374, ../includes/Elements/Woo_Product_Carousel.php:2498, ../includes/Elements/Woo_Product_Carousel.php:2685, ../includes/Elements/Woo_Product_Gallery.php:675, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_Gallery.php:2053, ../includes/Elements/Woo_Product_Gallery.php:2252, ../includes/Elements/Woo_Product_Gallery.php:2284, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Scroll_to_Top.php:443, ../includes/Extensions/Table_of_Content.php:568, ../includes/Extensions/Table_of_Content.php:783, ../includes/Traits/Controls.php:
|
| 724 |
msgid "Border Radius"
|
| 725 |
msgstr ""
|
| 726 |
|
|
@@ -740,19 +740,19 @@ msgstr ""
|
|
| 740 |
msgid "Text Alignment"
|
| 741 |
msgstr ""
|
| 742 |
|
| 743 |
-
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1007, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:303, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:1949, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:712, ../includes/Elements/Login_Register.php:745, ../includes/Elements/Login_Register.php:2587, ../includes/Elements/Login_Register.php:3255, ../includes/Elements/Login_Register.php:3575, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:642, ../includes/Elements/Post_Grid.php:710, ../includes/Elements/Post_Grid.php:805, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:357, ../includes/Elements/Post_Timeline.php:415, ../includes/Elements/Pricing_Table.php:257, ../includes/Elements/Pricing_Table.php:374, ../includes/Elements/Pricing_Table.php:676, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Pricing_Table.php:841, ../includes/Elements/Product_Grid.php:695, ../includes/Elements/Product_Grid.php:1013, ../includes/Elements/Product_Grid.php:1711, ../includes/Elements/Product_Grid.php:2196, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:188, ../includes/Elements/Simple_Menu.php:333, ../includes/Elements/Simple_Menu.php:740, ../includes/Elements/Simple_Menu.php:766, ../includes/Elements/Simple_Menu.php:791, ../includes/Elements/Simple_Menu.php:1086, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:209, ../includes/Elements/Tooltip.php:288, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:269, ../includes/Elements/Woo_Cart.php:494, ../includes/Elements/Woo_Cart.php:586, ../includes/Elements/Woo_Cart.php:657, ../includes/Elements/Woo_Cart.php:735, ../includes/Elements/Woo_Cart.php:843, ../includes/Elements/Woo_Cart.php:1588, ../includes/Elements/Woo_Cart.php:2194, ../includes/Elements/Woo_Product_Carousel.php:704, ../includes/Elements/Woo_Product_Carousel.php:820, ../includes/Elements/Woo_Product_Carousel.php:869, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:552, ../includes/Elements/Woo_Product_Gallery.php:1519, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:462, ../includes/Traits/Controls.php:604, ../includes/Traits/Controls.php:
|
| 744 |
msgid "Left"
|
| 745 |
msgstr ""
|
| 746 |
|
| 747 |
-
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1011, ../includes/Elements/Event_Calendar.php:1143, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:676, ../includes/Elements/GravityForms.php:1953, ../includes/Elements/GravityForms.php:2203, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:3237, ../includes/Elements/Login_Register.php:3259, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3556, ../includes/Elements/Login_Register.php:3579, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:646, ../includes/Elements/Post_Grid.php:714, ../includes/Elements/Post_Grid.php:809, ../includes/Elements/Post_Grid.php:892, ../includes/Elements/Post_Timeline.php:361, ../includes/Elements/Post_Timeline.php:419, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:699, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:2200, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:337, ../includes/Elements/Simple_Menu.php:744, ../includes/Elements/Simple_Menu.php:770, ../includes/Elements/Simple_Menu.php:795, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:213, ../includes/Elements/Tooltip.php:381, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:273, ../includes/Elements/Woo_Cart.php:590, ../includes/Elements/Woo_Cart.php:661, ../includes/Elements/Woo_Cart.php:739, ../includes/Elements/Woo_Cart.php:847, ../includes/Elements/Woo_Cart.php:1592, ../includes/Elements/Woo_Cart.php:2198, ../includes/Elements/Woo_Product_Carousel.php:873, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:556, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:603, ../includes/Traits/Controls.php:
|
| 748 |
msgid "Center"
|
| 749 |
msgstr ""
|
| 750 |
|
| 751 |
-
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:549, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:736, ../includes/Elements/Adv_Tabs.php:527, ../includes/Elements/Adv_Tabs.php:594, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Event_Calendar.php:1286, ../includes/Elements/Filterable_Gallery.php:960, ../includes/Elements/Filterable_Gallery.php:1026, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:628, ../includes/Elements/GravityForms.php:715, ../includes/Elements/GravityForms.php:979, ../includes/Elements/GravityForms.php:1032, ../includes/Elements/GravityForms.php:1219, ../includes/Elements/GravityForms.php:1662, ../includes/Elements/GravityForms.php:1738, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2130, ../includes/Elements/GravityForms.php:2266, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2427, ../includes/Elements/GravityForms.php:2562, ../includes/Elements/Info_Box.php:1236, ../includes/Elements/Info_Box.php:1282, ../includes/Elements/Interactive_Circle.php:476, ../includes/Elements/Interactive_Circle.php:536, ../includes/Elements/Interactive_Circle.php:604, ../includes/Elements/Interactive_Circle.php:689, ../includes/Elements/Login_Register.php:2616, ../includes/Elements/Login_Register.php:2755, ../includes/Elements/Login_Register.php:3099, ../includes/Elements/Login_Register.php:3284, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:3605, ../includes/Elements/Login_Register.php:3642, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1909, ../includes/Elements/Pricing_Table.php:1978, ../includes/Elements/Product_Grid.php:2250, ../includes/Elements/Product_Grid.php:2288, ../includes/Elements/Product_Grid.php:2332, ../includes/Elements/Simple_Menu.php:363, ../includes/Elements/Simple_Menu.php:397, ../includes/Elements/Simple_Menu.php:431, ../includes/Elements/Simple_Menu.php:489, ../includes/Elements/Simple_Menu.php:523, ../includes/Elements/Simple_Menu.php:849, ../includes/Elements/Simple_Menu.php:976, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1285, ../includes/Elements/Tooltip.php:418, ../includes/Elements/Tooltip.php:461, ../includes/Elements/Tooltip.php:634, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/Woo_Cart.php:1248, ../includes/Elements/Woo_Cart.php:1502, ../includes/Elements/Woo_Cart.php:1793, ../includes/Elements/Woo_Cart.php:1831, ../includes/Elements/Woo_Cart.php:1919, ../includes/Elements/Woo_Cart.php:2043, ../includes/Elements/Woo_Cart.php:2084, ../includes/Elements/Woo_Cart.php:2279, ../includes/Elements/Woo_Cart.php:2362, ../includes/Elements/Woo_Cart.php:2449, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:626, ../includes/Extensions/Table_of_Content.php:941, ../includes/Extensions/Table_of_Content.php:964, ../includes/Extensions/Table_of_Content.php:990, ../includes/Traits/Controls.php:
|
| 752 |
msgid "Text Color"
|
| 753 |
msgstr ""
|
| 754 |
|
| 755 |
-
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:885, ../includes/Elements/Adv_Accordion.php:931, ../includes/Elements/Adv_Accordion.php:977, ../includes/Elements/Adv_Tabs.php:508, ../includes/Elements/Adv_Tabs.php:724, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1265, ../includes/Elements/Filterable_Gallery.php:835, ../includes/Elements/Filterable_Gallery.php:972, ../includes/Elements/Filterable_Gallery.php:1038, ../includes/Elements/Filterable_Gallery.php:1184, ../includes/Elements/Filterable_Gallery.php:1374, ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1509, ../includes/Elements/Filterable_Gallery.php:1525, ../includes/Elements/Filterable_Gallery.php:1727, ../includes/Elements/Filterable_Gallery.php:1865, ../includes/Elements/Filterable_Gallery.php:2495, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:703, ../includes/Elements/GravityForms.php:929, ../includes/Elements/GravityForms.php:1648, ../includes/Elements/GravityForms.php:1724, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2025, ../includes/Elements/GravityForms.php:2117, ../includes/Elements/GravityForms.php:2254, ../includes/Elements/GravityForms.php:2341, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1248, ../includes/Elements/Info_Box.php:1294, ../includes/Elements/Interactive_Circle.php:465, ../includes/Elements/Interactive_Circle.php:522, ../includes/Elements/Interactive_Circle.php:590, ../includes/Elements/Interactive_Circle.php:672, ../includes/Elements/Login_Register.php:1594, ../includes/Elements/Login_Register.php:1727, ../includes/Elements/Login_Register.php:1829, ../includes/Elements/Login_Register.php:2003, ../includes/Elements/Login_Register.php:2359, ../includes/Elements/Login_Register.php:2450, ../includes/Elements/Login_Register.php:2630, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:2765, ../includes/Elements/Login_Register.php:3292, ../includes/Elements/Login_Register.php:3329, ../includes/Elements/Login_Register.php:3613, ../includes/Elements/Login_Register.php:3650, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:962, ../includes/Elements/Pricing_Table.php:737, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Pricing_Table.php:1424, ../includes/Elements/Pricing_Table.php:1493, ../includes/Elements/Pricing_Table.php:1659, ../includes/Elements/Pricing_Table.php:1921, ../includes/Elements/Pricing_Table.php:1990, ../includes/Elements/Product_Grid.php:1860, ../includes/Elements/Product_Grid.php:1968, ../includes/Elements/Product_Grid.php:2076, ../includes/Elements/Product_Grid.php:2262, ../includes/Elements/Product_Grid.php:2300, ../includes/Elements/Product_Grid.php:2344, ../includes/Elements/Product_Grid.php:2592, ../includes/Elements/Product_Grid.php:2635, ../includes/Elements/Product_Grid.php:2696, ../includes/Elements/Product_Grid.php:2747, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:267, ../includes/Elements/Simple_Menu.php:376, ../includes/Elements/Simple_Menu.php:410, ../includes/Elements/Simple_Menu.php:444, ../includes/Elements/Simple_Menu.php:502, ../includes/Elements/Simple_Menu.php:536, ../includes/Elements/Simple_Menu.php:608, ../includes/Elements/Simple_Menu.php:680, ../includes/Elements/Simple_Menu.php:863, ../includes/Elements/Simple_Menu.php:943, ../includes/Elements/Simple_Menu.php:991, ../includes/Elements/Simple_Menu.php:1038, ../includes/Elements/Simple_Menu.php:1172, ../includes/Elements/Simple_Menu.php:1252, ../includes/Elements/Simple_Menu.php:1299, ../includes/Elements/Simple_Menu.php:1346, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/Twitter_Feed.php:414, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Cart.php:1143, ../includes/Elements/Woo_Cart.php:1782, ../includes/Elements/Woo_Cart.php:1820, ../includes/Elements/Woo_Cart.php:2031, ../includes/Elements/Woo_Cart.php:2072, ../includes/Elements/Woo_Checkout.php:629, ../includes/Elements/Woo_Checkout.php:744, ../includes/Elements/Woo_Checkout.php:866, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:2252, ../includes/Elements/Woo_Checkout.php:2382, ../includes/Elements/Woo_Checkout.php:2492, ../includes/Elements/Woo_Checkout.php:2532, ../includes/Elements/Woo_Product_Carousel.php:895, ../includes/Elements/Woo_Product_Carousel.php:1388, ../includes/Elements/Woo_Product_Carousel.php:1470, ../includes/Elements/Woo_Product_Carousel.php:1689, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Carousel.php:1794, ../includes/Elements/Woo_Product_Carousel.php:1846, ../includes/Elements/Woo_Product_Carousel.php:2650, ../includes/Elements/Woo_Product_Carousel.php:2706, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_Gallery.php:1731, ../includes/Elements/Woo_Product_Gallery.php:1930, ../includes/Elements/Woo_Product_Gallery.php:1973, ../includes/Elements/Woo_Product_Gallery.php:2034, ../includes/Elements/Woo_Product_Gallery.php:2085, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:428, ../includes/Extensions/Table_of_Content.php:613, ../includes/Extensions/Table_of_Content.php:759, ../includes/Extensions/Table_of_Content.php:823, ../includes/Traits/Controls.php:
|
| 756 |
msgid "Background Color"
|
| 757 |
msgstr ""
|
| 758 |
|
|
@@ -760,7 +760,7 @@ msgstr ""
|
|
| 760 |
msgid "Cell Border"
|
| 761 |
msgstr ""
|
| 762 |
|
| 763 |
-
#: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:514, ../includes/Elements/Adv_Accordion.php:754, ../includes/Elements/Adv_Tabs.php:337, ../includes/Elements/Adv_Tabs.php:482, ../includes/Elements/Adv_Tabs.php:761, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:440, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:605, ../includes/Elements/Facebook_Feed.php:631, ../includes/Elements/Facebook_Feed.php:703, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:597, ../includes/Elements/Filterable_Gallery.php:847, ../includes/Elements/Filterable_Gallery.php:924, ../includes/Elements/Filterable_Gallery.php:1106, ../includes/Elements/Filterable_Gallery.php:1196, ../includes/Elements/Filterable_Gallery.php:1540, ../includes/Elements/Filterable_Gallery.php:1751, ../includes/Elements/Filterable_Gallery.php:2614, ../includes/Elements/Flip_Box.php:1005, ../includes/Elements/Flip_Box.php:1118, ../includes/Elements/Flip_Box.php:1354, ../includes/Elements/FluentForm.php:790, ../includes/Elements/FluentForm.php:1158, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1336, ../includes/Elements/FluentForm.php:1421, ../includes/Elements/FluentForm.php:1602, ../includes/Elements/FluentForm.php:2025, ../includes/Elements/FluentForm.php:2191, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:765, ../includes/Elements/GravityForms.php:1386, ../includes/Elements/GravityForms.php:1582, ../includes/Elements/GravityForms.php:1701, ../includes/Elements/GravityForms.php:1905, ../includes/Elements/GravityForms.php:2075, ../includes/Elements/GravityForms.php:2301, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:556, ../includes/Elements/Interactive_Circle.php:334, ../includes/Elements/Interactive_Circle.php:707, ../includes/Elements/Login_Register.php:1557, ../includes/Elements/Login_Register.php:2122, ../includes/Elements/Login_Register.php:2261, ../includes/Elements/Login_Register.php:2334, ../includes/Elements/Login_Register.php:2425, ../includes/Elements/Login_Register.php:2527, ../includes/Elements/Login_Register.php:2563, ../includes/Elements/Login_Register.php:2725, ../includes/Elements/Login_Register.php:3197, ../includes/Elements/Login_Register.php:3496, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:749, ../includes/Elements/Pricing_Table.php:1535, ../includes/Elements/Pricing_Table.php:1840, ../includes/Elements/Product_Grid.php:806, ../includes/Elements/Product_Grid.php:1057, ../includes/Elements/Product_Grid.php:1469, ../includes/Elements/Simple_Menu.php:308, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:641, ../includes/Elements/Simple_Menu.php:1105, ../includes/Elements/Team_Member.php:487, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:349, ../includes/Elements/Tooltip.php:601, ../includes/Elements/Twitter_Feed.php:444, ../includes/Elements/Twitter_Feed.php:503, ../includes/Elements/Twitter_Feed.php:536, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Cart.php:1202, ../includes/Elements/Woo_Cart.php:1732, ../includes/Elements/Woo_Cart.php:1879, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2127, ../includes/Elements/Woo_Cart.php:2229, ../includes/Elements/Woo_Checkout.php:640, ../includes/Elements/Woo_Checkout.php:1232, ../includes/Elements/Woo_Checkout.php:1425, ../includes/Elements/Woo_Checkout.php:1555, ../includes/Elements/Woo_Checkout.php:1723, ../includes/Elements/Woo_Checkout.php:1938, ../includes/Elements/Woo_Checkout.php:2274, ../includes/Elements/Woo_Checkout.php:2605, ../includes/Elements/Woo_Product_Carousel.php:1030, ../includes/Elements/Woo_Product_Carousel.php:2263, ../includes/Elements/Woo_Product_Gallery.php:590, ../includes/Elements/Woo_Product_Gallery.php:694, ../includes/Elements/Woo_Product_Gallery.php:973, ../includes/Elements/Woo_Product_Gallery.php:1218, ../includes/Elements/Woo_Product_Gallery.php:1280, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:648, ../includes/Extensions/Table_of_Content.php:836, ../includes/Traits/Controls.php:
|
| 764 |
msgid "Padding"
|
| 765 |
msgstr ""
|
| 766 |
|
|
@@ -816,19 +816,19 @@ msgstr ""
|
|
| 816 |
msgid "Margin Bottom"
|
| 817 |
msgstr ""
|
| 818 |
|
| 819 |
-
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:668, ../includes/Elements/GravityForms.php:1945, ../includes/Elements/GravityForms.php:2195, ../includes/Elements/Login_Register.php:3251, ../includes/Elements/Login_Register.php:3571, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:801, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Product_Grid.php:691, ../includes/Elements/Product_Grid.php:1009, ../includes/Elements/Product_Grid.php:1707, ../includes/Elements/Product_Grid.php:2192, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Simple_Menu.php:329, ../includes/Elements/Simple_Menu.php:736, ../includes/Elements/Simple_Menu.php:762, ../includes/Elements/Simple_Menu.php:787, ../includes/Elements/Simple_Menu.php:1082, ../includes/Elements/Tooltip.php:204, ../includes/Elements/Woo_Cart.php:265, ../includes/Elements/Woo_Cart.php:490, ../includes/Elements/Woo_Cart.php:582, ../includes/Elements/Woo_Cart.php:653, ../includes/Elements/Woo_Cart.php:731, ../includes/Elements/Woo_Cart.php:839, ../includes/Elements/Woo_Cart.php:1584, ../includes/Elements/Woo_Cart.php:2190, ../includes/Elements/Woo_Product_Carousel.php:816, ../includes/Elements/Woo_Product_Carousel.php:865, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:548, ../includes/Elements/Woo_Product_Gallery.php:1515, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:
|
| 820 |
msgid "Alignment"
|
| 821 |
msgstr ""
|
| 822 |
|
| 823 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:525, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Tabs.php:348, ../includes/Elements/Adv_Tabs.php:493, ../includes/Elements/Adv_Tabs.php:772, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:859, ../includes/Elements/Filterable_Gallery.php:936, ../includes/Elements/Filterable_Gallery.php:1118, ../includes/Elements/Filterable_Gallery.php:1763, ../includes/Elements/Filterable_Gallery.php:2212, ../includes/Elements/Filterable_Gallery.php:2655, ../includes/Elements/Flip_Box.php:1342, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:394, ../includes/Elements/FluentForm.php:1170, ../includes/Elements/FluentForm.php:1225, ../includes/Elements/FluentForm.php:2203, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1115, ../includes/Elements/GravityForms.php:1374, ../includes/Elements/GravityForms.php:1570, ../includes/Elements/GravityForms.php:1919, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:983, ../includes/Elements/Info_Box.php:1375, ../includes/Elements/Interactive_Circle.php:345, ../includes/Elements/Interactive_Circle.php:718, ../includes/Elements/Login_Register.php:1542, ../includes/Elements/Login_Register.php:2107, ../includes/Elements/Login_Register.php:2246, ../includes/Elements/Login_Register.php:2319, ../includes/Elements/Login_Register.php:2410, ../includes/Elements/Login_Register.php:2512, ../includes/Elements/Login_Register.php:2548, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:3182, ../includes/Elements/Login_Register.php:3417, ../includes/Elements/Login_Register.php:3481, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:534, ../includes/Elements/Post_Grid.php:549, ../includes/Elements/Post_Grid.php:673, ../includes/Elements/Post_Grid.php:761, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Pricing_Table.php:761, ../includes/Elements/Pricing_Table.php:1087, ../includes/Elements/Pricing_Table.php:1157, ../includes/Elements/Pricing_Table.php:1852, ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:360, ../includes/Elements/Tooltip.php:612, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Cart.php:1214, ../includes/Elements/Woo_Cart.php:1744, ../includes/Elements/Woo_Cart.php:1891, ../includes/Elements/Woo_Cart.php:1986, ../includes/Elements/Woo_Cart.php:2141, ../includes/Elements/Woo_Cart.php:2243, ../includes/Elements/Woo_Product_Carousel.php:924, ../includes/Elements/Woo_Product_Gallery.php:1206, ../includes/Elements/Woo_Product_Gallery.php:1268, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:
|
| 824 |
msgid "Margin"
|
| 825 |
msgstr ""
|
| 826 |
|
| 827 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:536, ../includes/Elements/Adv_Accordion.php:864, ../includes/Elements/Adv_Tabs.php:504, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:398, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:780, ../includes/Elements/Filterable_Gallery.php:955, ../includes/Elements/Filterable_Gallery.php:1720, ../includes/Elements/Filterable_Gallery.php:2484, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:696, ../includes/Elements/GravityForms.php:1286, ../includes/Elements/GravityForms.php:1482, ../includes/Elements/GravityForms.php:1641, ../includes/Elements/GravityForms.php:2018, ../includes/Elements/GravityForms.php:2247, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Info_Box.php:1341, ../includes/Elements/Interactive_Circle.php:461, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3281, ../includes/Elements/Login_Register.php:3444, ../includes/Elements/Login_Register.php:3602, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Product_Grid.php:861, ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Product_Grid.php:1950, ../includes/Elements/Product_Grid.php:2245, ../includes/Elements/Product_Grid.php:2679, ../includes/Elements/Team_Member.php:714, ../includes/Elements/Tooltip.php:403, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Cart.php:1775, ../includes/Elements/Woo_Cart.php:2024, ../includes/Elements/Woo_Checkout.php:912, ../includes/Elements/Woo_Checkout.php:955, ../includes/Elements/Woo_Checkout.php:1098, ../includes/Elements/Woo_Checkout.php:1317, ../includes/Elements/Woo_Checkout.php:1615, ../includes/Elements/Woo_Checkout.php:2075, ../includes/Elements/Woo_Checkout.php:2331, ../includes/Elements/Woo_Checkout.php:2485, ../includes/Elements/Woo_Product_Carousel.php:936, ../includes/Elements/Woo_Product_Carousel.php:1372, ../includes/Elements/Woo_Product_Carousel.php:1777, ../includes/Elements/Woo_Product_Carousel.php:2221, ../includes/Elements/Woo_Product_Carousel.php:2643, ../includes/Elements/Woo_Product_Gallery.php:604, ../includes/Elements/Woo_Product_Gallery.php:1008, ../includes/Elements/Woo_Product_Gallery.php:1303, ../includes/Elements/Woo_Product_Gallery.php:1664, ../includes/Elements/Woo_Product_Gallery.php:2017, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:934, ../includes/Traits/Controls.php:
|
| 828 |
msgid "Normal"
|
| 829 |
msgstr ""
|
| 830 |
|
| 831 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:594, ../includes/Elements/Adv_Accordion.php:911, ../includes/Elements/Adv_Tabs.php:571, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:847, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:2110, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1276, ../includes/Elements/Info_Box.php:1451, ../includes/Elements/Interactive_Circle.php:272, ../includes/Elements/Interactive_Circle.php:518, ../includes/Elements/Login_Register.php:3318, ../includes/Elements/Login_Register.php:3639, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:403, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:911, ../includes/Elements/Product_Grid.php:1584, ../includes/Elements/Product_Grid.php:2059, ../includes/Elements/Product_Grid.php:2283, ../includes/Elements/Product_Grid.php:2730, ../includes/Elements/Simple_Menu.php:390, ../includes/Elements/Simple_Menu.php:516, ../includes/Elements/Simple_Menu.php:969, ../includes/Elements/Simple_Menu.php:1278, ../includes/Elements/Team_Member.php:791, ../includes/Elements/Tooltip.php:446, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Cart.php:1813, ../includes/Elements/Woo_Cart.php:2065, ../includes/Elements/Woo_Checkout.php:928, ../includes/Elements/Woo_Checkout.php:972, ../includes/Elements/Woo_Checkout.php:1114, ../includes/Elements/Woo_Checkout.php:1357, ../includes/Elements/Woo_Checkout.php:1655, ../includes/Elements/Woo_Checkout.php:2091, ../includes/Elements/Woo_Checkout.php:2525, ../includes/Elements/Woo_Product_Carousel.php:976, ../includes/Elements/Woo_Product_Carousel.php:1454, ../includes/Elements/Woo_Product_Carousel.php:1829, ../includes/Elements/Woo_Product_Carousel.php:2284, ../includes/Elements/Woo_Product_Carousel.php:2699, ../includes/Elements/Woo_Product_Gallery.php:643, ../includes/Elements/Woo_Product_Gallery.php:1076, ../includes/Elements/Woo_Product_Gallery.php:1337, ../includes/Elements/Woo_Product_Gallery.php:1714, ../includes/Elements/Woo_Product_Gallery.php:2068, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:957, ../includes/Traits/Controls.php:
|
| 832 |
msgid "Hover"
|
| 833 |
msgstr ""
|
| 834 |
|
|
@@ -1128,11 +1128,11 @@ msgstr ""
|
|
| 1128 |
msgid "Show Icon"
|
| 1129 |
msgstr ""
|
| 1130 |
|
| 1131 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:155, ../includes/Elements/Cta_Box.php:302, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:360, ../includes/Elements/Login_Register.php:660, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:119, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Pricing_Table.php:1647, ../includes/Elements/Product_Grid.php:557, ../includes/Elements/Product_Grid.php:659, ../includes/Elements/Product_Grid.php:1500, ../includes/Elements/Product_Grid.php:2143, ../includes/Elements/Twitter_Feed.php:392, ../includes/Elements/Woo_Cart.php:428, ../includes/Elements/Woo_Cart.php:476, ../includes/Elements/Woo_Cart.php:546, ../includes/Elements/Woo_Cart.php:558, ../includes/Elements/Woo_Cart.php:629, ../includes/Elements/Woo_Cart.php:707, ../includes/Elements/Woo_Cart.php:778, ../includes/Elements/Woo_Cart.php:898, ../includes/Elements/Woo_Cart.php:922, ../includes/Elements/Woo_Cart.php:959, ../includes/Elements/Woo_Cart.php:1003, ../includes/Elements/Woo_Cart.php:1016, ../includes/Elements/Woo_Cart.php:1031, ../includes/Elements/Woo_Cart.php:1046, ../includes/Elements/Woo_Cart.php:1061, ../includes/Elements/Woo_Cart.php:1076, ../includes/Elements/Woo_Cart.php:1091, ../includes/Elements/Woo_Product_Carousel.php:221, ../includes/Elements/Woo_Product_Carousel.php:627, ../includes/Elements/Woo_Product_Carousel.php:686, ../includes/Elements/Woo_Product_Gallery.php:517, ../includes/Elements/Woo_Product_Gallery.php:1000, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:569, ../includes/Traits/Controls.php:631, ../includes/Traits/Controls.php:661, ../includes/Traits/Controls.php:817, ../includes/Traits/Controls.php:865, ../includes/Traits/Controls.php:933, ../includes/Traits/Controls.php:968, ../includes/Traits/Controls.php:
|
| 1132 |
msgid "Show"
|
| 1133 |
msgstr ""
|
| 1134 |
|
| 1135 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:156, ../includes/Elements/Cta_Box.php:303, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../includes/Elements/Filterable_Gallery.php:277, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:292, ../includes/Elements/Login_Register.php:359, ../includes/Elements/Login_Register.php:568, ../includes/Elements/Login_Register.php:659, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:512, ../includes/Elements/Pricing_Table.php:1648, ../includes/Elements/Product_Grid.php:558, ../includes/Elements/Product_Grid.php:660, ../includes/Elements/Product_Grid.php:1501, ../includes/Elements/Product_Grid.php:2144, ../includes/Elements/Twitter_Feed.php:393, ../includes/Elements/Woo_Cart.php:429, ../includes/Elements/Woo_Cart.php:477, ../includes/Elements/Woo_Cart.php:547, ../includes/Elements/Woo_Cart.php:559, ../includes/Elements/Woo_Cart.php:630, ../includes/Elements/Woo_Cart.php:708, ../includes/Elements/Woo_Cart.php:779, ../includes/Elements/Woo_Cart.php:899, ../includes/Elements/Woo_Cart.php:923, ../includes/Elements/Woo_Cart.php:960, ../includes/Elements/Woo_Cart.php:1004, ../includes/Elements/Woo_Cart.php:1017, ../includes/Elements/Woo_Cart.php:1032, ../includes/Elements/Woo_Cart.php:1047, ../includes/Elements/Woo_Cart.php:1062, ../includes/Elements/Woo_Cart.php:1077, ../includes/Elements/Woo_Cart.php:1092, ../includes/Elements/Woo_Checkout.php:316, ../includes/Elements/Woo_Product_Carousel.php:222, ../includes/Elements/Woo_Product_Carousel.php:628, ../includes/Elements/Woo_Product_Carousel.php:687, ../includes/Elements/Woo_Product_Gallery.php:518, ../includes/Elements/Woo_Product_Gallery.php:1001, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:570, ../includes/Traits/Controls.php:632, ../includes/Traits/Controls.php:662, ../includes/Traits/Controls.php:818, ../includes/Traits/Controls.php:866, ../includes/Traits/Controls.php:934, ../includes/Traits/Controls.php:969, ../includes/Traits/Controls.php:
|
| 1136 |
msgid "Hide"
|
| 1137 |
msgstr ""
|
| 1138 |
|
|
@@ -1296,7 +1296,7 @@ msgstr ""
|
|
| 1296 |
msgid "Area Spacing"
|
| 1297 |
msgstr ""
|
| 1298 |
|
| 1299 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:440, ../includes/Elements/Pricing_Table.php:836, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:
|
| 1300 |
msgid "Button Alignment"
|
| 1301 |
msgstr ""
|
| 1302 |
|
|
@@ -1332,7 +1332,7 @@ msgstr ""
|
|
| 1332 |
msgid "Close Icon"
|
| 1333 |
msgstr ""
|
| 1334 |
|
| 1335 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:678, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2722, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1100, ../includes/Elements/GravityForms.php:1333, ../includes/Elements/GravityForms.php:1529, ../includes/Elements/GravityForms.php:1752, ../includes/Elements/GravityForms.php:2143, ../includes/Elements/GravityForms.php:2365, ../includes/Elements/Interactive_Circle.php:366, ../includes/Elements/Interactive_Circle.php:564, ../includes/Elements/Interactive_Circle.php:634, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2017, ../includes/Elements/Product_Grid.php:776, ../includes/Elements/Product_Grid.php:916, ../includes/Elements/Product_Grid.php:1636, ../includes/Elements/Product_Grid.php:1921, ../includes/Elements/Product_Grid.php:2103, ../includes/Elements/Product_Grid.php:2312, ../includes/Elements/Product_Grid.php:2356, ../includes/Elements/Product_Grid.php:2551, ../includes/Elements/Product_Grid.php:2647, ../includes/Elements/Product_Grid.php:2759, ../includes/Elements/Simple_Menu.php:955, ../includes/Elements/Simple_Menu.php:1051, ../includes/Elements/Simple_Menu.php:1264, ../includes/Elements/Simple_Menu.php:1359, ../includes/Elements/Sticky_Video.php:580, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Cart.php:1226, ../includes/Elements/Woo_Cart.php:1479, ../includes/Elements/Woo_Cart.php:1842, ../includes/Elements/Woo_Cart.php:2096, ../includes/Elements/Woo_Checkout.php:786, ../includes/Elements/Woo_Checkout.php:993, ../includes/Elements/Woo_Checkout.php:1388, ../includes/Elements/Woo_Checkout.php:1584, ../includes/Elements/Woo_Checkout.php:1686, ../includes/Elements/Woo_Checkout.php:1803, ../includes/Elements/Woo_Checkout.php:1847, ../includes/Elements/Woo_Checkout.php:1891, ../includes/Elements/Woo_Checkout.php:2080, ../includes/Elements/Woo_Checkout.php:2096, ../includes/Elements/Woo_Checkout.php:2444, ../includes/Elements/Woo_Checkout.php:2556, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Carousel.php:1357, ../includes/Elements/Woo_Product_Carousel.php:1481, ../includes/Elements/Woo_Product_Carousel.php:1649, ../includes/Elements/Woo_Product_Carousel.php:1744, ../includes/Elements/Woo_Product_Carousel.php:1858, ../includes/Elements/Woo_Product_Carousel.php:2303, ../includes/Elements/Woo_Product_Carousel.php:2730, ../includes/Elements/Woo_Product_Gallery.php:648, ../includes/Elements/Woo_Product_Gallery.php:1122, ../includes/Elements/Woo_Product_Gallery.php:1364, ../includes/Elements/Woo_Product_Gallery.php:1402, ../includes/Elements/Woo_Product_Gallery.php:1889, ../includes/Elements/Woo_Product_Gallery.php:1985, ../includes/Elements/Woo_Product_Gallery.php:2097, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:
|
| 1336 |
msgid "Border Color"
|
| 1337 |
msgstr ""
|
| 1338 |
|
|
@@ -1408,7 +1408,7 @@ msgstr ""
|
|
| 1408 |
msgid "Form Alignment"
|
| 1409 |
msgstr ""
|
| 1410 |
|
| 1411 |
-
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:878, ../includes/Elements/FluentForm.php:458, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:460, ../includes/Elements/Login_Register.php:566, ../includes/Elements/Login_Register.php:1129, ../includes/Elements/Login_Register.php:1492, ../includes/Elements/Login_Register.php:1618, ../includes/Elements/Login_Register.php:1875, ../includes/Elements/Login_Register.php:2019, ../includes/Elements/Login_Register.php:2169, ../includes/Elements/Login_Register.php:2312, ../includes/Elements/Login_Register.php:2403, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/Login_Register.php:2703, ../includes/Elements/Login_Register.php:2748, ../includes/Elements/Login_Register.php:2780, ../includes/Elements/Login_Register.php:3014, ../includes/Elements/Login_Register.php:3176, ../includes/Elements/Login_Register.php:3475, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:463, ../includes/Elements/Product_Grid.php:250, ../includes/Elements/Simple_Menu.php:356, ../includes/Elements/Simple_Menu.php:482, ../includes/Elements/Simple_Menu.php:842, ../includes/Elements/Simple_Menu.php:1153, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:122, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:558, ../includes/Traits/Controls.php:
|
| 1412 |
msgid "Default"
|
| 1413 |
msgstr ""
|
| 1414 |
|
|
@@ -1548,7 +1548,7 @@ msgstr ""
|
|
| 1548 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
| 1549 |
msgstr ""
|
| 1550 |
|
| 1551 |
-
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../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:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Event_Calendar.php:1221, ../includes/Elements/Event_Calendar.php:1587, ../includes/Elements/Event_Calendar.php:1696, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2060, ../includes/Elements/Filterable_Gallery.php:2281, ../includes/Elements/Flip_Box.php:1379, ../includes/Elements/Flip_Box.php:1439, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1936, ../includes/Elements/Pricing_Table.php:2005, ../includes/Elements/Product_Grid.php:1529, ../includes/Elements/Product_Grid.php:1544, ../includes/Elements/Product_Grid.php:1604, ../includes/Elements/Product_Grid.php:1618, ../includes/Elements/Product_Grid.php:2903, ../includes/Elements/Product_Grid.php:2960, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:402, ../includes/Elements/Twitter_Feed.php:654, ../includes/Elements/Woo_Cart.php:1281, ../includes/Elements/Woo_Cart.php:1438, ../includes/Elements/Woo_Cart.php:1670, ../includes/Elements/Woo_Cart.php:2268, ../includes/Elements/Woo_Cart.php:2350, ../includes/Elements/Woo_Cart.php:2438, ../includes/Elements/Woo_Checkout.php:1781, ../includes/Elements/Woo_Checkout.php:1825, ../includes/Elements/Woo_Checkout.php:1869, ../includes/Elements/Woo_Product_Carousel.php:1998, ../includes/Elements/Woo_Product_Carousel.php:2055, ../includes/Elements/Woo_Product_Gallery.php:1027, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1094, ../includes/Elements/Woo_Product_Gallery.php:1106, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1319, ../includes/Elements/Woo_Product_Gallery.php:1353, ../includes/Elements/Woo_Product_Gallery.php:1391, ../includes/Elements/Woo_Product_Gallery.php:2241, ../includes/Elements/Woo_Product_Gallery.php:2298, ../includes/Traits/Controls.php:
|
| 1552 |
msgid "Background"
|
| 1553 |
msgstr ""
|
| 1554 |
|
|
@@ -2748,15 +2748,15 @@ msgstr ""
|
|
| 2748 |
msgid "Columns"
|
| 2749 |
msgstr ""
|
| 2750 |
|
| 2751 |
-
#: ../includes/Elements/Facebook_Feed.php:196, ../includes/Elements/Product_Grid.php:290, ../includes/Elements/Product_Grid.php:312, ../includes/Elements/Testimonial.php:195, ../includes/Elements/Woo_Product_Carousel.php:356, ../includes/Elements/Woo_Product_Carousel.php:453, ../includes/Elements/Woo_Product_Gallery.php:342, ../includes/Traits/Controls.php:523, ../includes/Traits/Controls.php:
|
| 2752 |
msgid "1"
|
| 2753 |
msgstr ""
|
| 2754 |
|
| 2755 |
-
#: ../includes/Elements/Facebook_Feed.php:197, ../includes/Elements/Product_Grid.php:291, ../includes/Elements/Product_Grid.php:313, ../includes/Elements/Testimonial.php:196, ../includes/Elements/Woo_Product_Carousel.php:357, ../includes/Elements/Woo_Product_Carousel.php:454, ../includes/Elements/Woo_Product_Gallery.php:343, ../includes/Traits/Controls.php:524, ../includes/Traits/Controls.php:
|
| 2756 |
msgid "2"
|
| 2757 |
msgstr ""
|
| 2758 |
|
| 2759 |
-
#: ../includes/Elements/Facebook_Feed.php:198, ../includes/Elements/Product_Grid.php:292, ../includes/Elements/Testimonial.php:197, ../includes/Elements/Woo_Product_Carousel.php:358, ../includes/Elements/Woo_Product_Carousel.php:455, ../includes/Elements/Woo_Product_Gallery.php:344, ../includes/Traits/Controls.php:525, ../includes/Traits/Controls.php:
|
| 2760 |
msgid "3"
|
| 2761 |
msgstr ""
|
| 2762 |
|
|
@@ -3104,7 +3104,7 @@ msgstr ""
|
|
| 3104 |
msgid "Framed"
|
| 3105 |
msgstr ""
|
| 3106 |
|
| 3107 |
-
#: ../includes/Elements/Feature_List.php:307, ../includes/Elements/Flip_Box.php:338, ../includes/Elements/Flip_Box.php:569, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:749, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Tooltip.php:290, ../includes/Elements/Twitter_Feed.php:365, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:
|
| 3108 |
msgid "Top"
|
| 3109 |
msgstr ""
|
| 3110 |
|
|
@@ -3348,7 +3348,7 @@ msgstr ""
|
|
| 3348 |
msgid "Gallery Link Button?"
|
| 3349 |
msgstr ""
|
| 3350 |
|
| 3351 |
-
#: ../includes/Elements/Filterable_Gallery.php:660, ../includes/Elements/Filterable_Gallery.php:667, ../includes/Elements/Filterable_Gallery.php:2451, ../includes/Traits/Controls.php:
|
| 3352 |
msgid "Load More Button"
|
| 3353 |
msgstr ""
|
| 3354 |
|
|
@@ -3560,7 +3560,7 @@ msgstr ""
|
|
| 3560 |
msgid "Middle"
|
| 3561 |
msgstr ""
|
| 3562 |
|
| 3563 |
-
#: ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:577, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Twitter_Feed.php:373, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:
|
| 3564 |
msgid "Bottom"
|
| 3565 |
msgstr ""
|
| 3566 |
|
|
@@ -5159,7 +5159,7 @@ msgstr ""
|
|
| 5159 |
msgid "Meta Style"
|
| 5160 |
msgstr ""
|
| 5161 |
|
| 5162 |
-
#: ../includes/Elements/Post_Grid.php:568, ../includes/Elements/Post_Grid.php:580, ../includes/Traits/Controls.php:
|
| 5163 |
msgid "Meta Position"
|
| 5164 |
msgstr ""
|
| 5165 |
|
|
@@ -5695,7 +5695,7 @@ msgstr ""
|
|
| 5695 |
msgid "Products Count"
|
| 5696 |
msgstr ""
|
| 5697 |
|
| 5698 |
-
#: ../includes/Elements/Product_Grid.php:407, ../includes/Elements/Woo_Product_Carousel.php:757, ../includes/Elements/Woo_Product_Gallery.php:426, ../includes/Traits/Controls.php:165, ../includes/Traits/Controls.php:295, ../includes/Traits/Controls.php:
|
| 5699 |
msgid "Offset"
|
| 5700 |
msgstr ""
|
| 5701 |
|
|
@@ -6127,7 +6127,7 @@ msgstr ""
|
|
| 6127 |
msgid "Sticky"
|
| 6128 |
msgstr ""
|
| 6129 |
|
| 6130 |
-
#: ../includes/Elements/Sticky_Video.php:116, ../includes/Elements/Woo_Product_Carousel.php:2109, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:457, ../includes/Traits/Controls.php:
|
| 6131 |
msgid "Position"
|
| 6132 |
msgstr ""
|
| 6133 |
|
|
@@ -6659,11 +6659,11 @@ msgstr ""
|
|
| 6659 |
msgid "Card Settings"
|
| 6660 |
msgstr ""
|
| 6661 |
|
| 6662 |
-
#: ../includes/Elements/Twitter_Feed.php:244, ../includes/Traits/Controls.php:
|
| 6663 |
msgid "Show Avatar"
|
| 6664 |
msgstr ""
|
| 6665 |
|
| 6666 |
-
#: ../includes/Elements/Twitter_Feed.php:256, ../includes/Traits/Controls.php:
|
| 6667 |
msgid "Show Date"
|
| 6668 |
msgstr ""
|
| 6669 |
|
|
@@ -7207,23 +7207,23 @@ msgstr ""
|
|
| 7207 |
msgid "Image Stretch"
|
| 7208 |
msgstr ""
|
| 7209 |
|
| 7210 |
-
#: ../includes/Elements/Woo_Product_Carousel.php:337, ../includes/Traits/Controls.php:
|
| 7211 |
msgid "Show Terms From"
|
| 7212 |
msgstr ""
|
| 7213 |
|
| 7214 |
-
#: ../includes/Elements/Woo_Product_Carousel.php:340, ../includes/Traits/Controls.php:
|
| 7215 |
msgid "Category"
|
| 7216 |
msgstr ""
|
| 7217 |
|
| 7218 |
-
#: ../includes/Elements/Woo_Product_Carousel.php:341, ../includes/Traits/Controls.php:
|
| 7219 |
msgid "Tags"
|
| 7220 |
msgstr ""
|
| 7221 |
|
| 7222 |
-
#: ../includes/Elements/Woo_Product_Carousel.php:353, ../includes/Traits/Controls.php:
|
| 7223 |
msgid "Max Terms to Show"
|
| 7224 |
msgstr ""
|
| 7225 |
|
| 7226 |
-
#: ../includes/Elements/Woo_Product_Carousel.php:370, ../includes/Traits/Controls.php:
|
| 7227 |
msgid "Not Found Message"
|
| 7228 |
msgstr ""
|
| 7229 |
|
|
@@ -7739,31 +7739,31 @@ msgstr ""
|
|
| 7739 |
msgid "Login | Register Settings updated"
|
| 7740 |
msgstr ""
|
| 7741 |
|
| 7742 |
-
#: ../includes/Traits/Admin.php:
|
| 7743 |
msgid "Ok, you deserve it!"
|
| 7744 |
msgstr ""
|
| 7745 |
|
| 7746 |
-
#: ../includes/Traits/Admin.php:
|
| 7747 |
msgid "I already did"
|
| 7748 |
msgstr ""
|
| 7749 |
|
| 7750 |
-
#: ../includes/Traits/Admin.php:
|
| 7751 |
msgid "Maybe Later"
|
| 7752 |
msgstr ""
|
| 7753 |
|
| 7754 |
-
#: ../includes/Traits/Admin.php:
|
| 7755 |
msgid "I need help"
|
| 7756 |
msgstr ""
|
| 7757 |
|
| 7758 |
-
#: ../includes/Traits/Admin.php:
|
| 7759 |
msgid "Never show again"
|
| 7760 |
msgstr ""
|
| 7761 |
|
| 7762 |
-
#: ../includes/Traits/Admin.php:
|
| 7763 |
msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
| 7764 |
msgstr ""
|
| 7765 |
|
| 7766 |
-
#: ../includes/Traits/Admin.php:
|
| 7767 |
msgid "You are using an incompatible version of Essential Addons PRO. Please update to v4.0.0+. If you do not see automatic update, <a href=\"https://essential-addons.com/elementor/docs/manually-update-essential-addons-pro/\" target=\"_blank\">Follow manual update guide.</a>"
|
| 7768 |
msgstr ""
|
| 7769 |
|
|
@@ -7919,59 +7919,59 @@ msgstr ""
|
|
| 7919 |
msgid "Show Read More Button"
|
| 7920 |
msgstr ""
|
| 7921 |
|
| 7922 |
-
#: ../includes/Traits/Controls.php:
|
| 7923 |
msgid "Show Post Terms"
|
| 7924 |
msgstr ""
|
| 7925 |
|
| 7926 |
-
#: ../includes/Traits/Controls.php:
|
| 7927 |
msgid "Show Meta"
|
| 7928 |
msgstr ""
|
| 7929 |
|
| 7930 |
-
#: ../includes/Traits/Controls.php:
|
| 7931 |
msgid "Entry Header"
|
| 7932 |
msgstr ""
|
| 7933 |
|
| 7934 |
-
#: ../includes/Traits/Controls.php:
|
| 7935 |
msgid "Entry Footer"
|
| 7936 |
msgstr ""
|
| 7937 |
|
| 7938 |
-
#: ../includes/Traits/Controls.php:
|
| 7939 |
msgid "Show Author Name"
|
| 7940 |
msgstr ""
|
| 7941 |
|
| 7942 |
-
#: ../includes/Traits/Controls.php:
|
| 7943 |
msgid "Read More Button Style"
|
| 7944 |
msgstr ""
|
| 7945 |
|
| 7946 |
-
#: ../includes/Traits/Controls.php:
|
| 7947 |
msgid "Absolute"
|
| 7948 |
msgstr ""
|
| 7949 |
|
| 7950 |
-
#: ../includes/Traits/Controls.php:
|
| 7951 |
msgid "Horizontal Orientation"
|
| 7952 |
msgstr ""
|
| 7953 |
|
| 7954 |
-
#: ../includes/Traits/Controls.php:
|
| 7955 |
msgid "Vertical Orientation"
|
| 7956 |
msgstr ""
|
| 7957 |
|
| 7958 |
-
#: ../includes/Traits/Controls.php:
|
| 7959 |
msgid "<strong>Ninja Tables</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=Ninja+Tables&tab=search&type=term\" target=\"_blank\">Ninja Tables</a> first."
|
| 7960 |
msgstr ""
|
| 7961 |
|
| 7962 |
-
#: ../includes/Traits/Controls.php:
|
| 7963 |
msgid "Table ID"
|
| 7964 |
msgstr ""
|
| 7965 |
|
| 7966 |
-
#: ../includes/Traits/Controls.php:
|
| 7967 |
msgid "EventON (Pro) "
|
| 7968 |
msgstr ""
|
| 7969 |
|
| 7970 |
-
#: ../includes/Traits/Controls.php:
|
| 7971 |
msgid "EventON"
|
| 7972 |
msgstr ""
|
| 7973 |
|
| 7974 |
-
#: ../includes/Traits/Controls.php:
|
| 7975 |
msgid "Style the message when no posts are found."
|
| 7976 |
msgstr ""
|
| 7977 |
|
|
@@ -8135,23 +8135,23 @@ msgstr ""
|
|
| 8135 |
msgid "Post ID is missing"
|
| 8136 |
msgstr ""
|
| 8137 |
|
| 8138 |
-
#: ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Helper.php:57, ../includes/Traits/Helper.php:
|
| 8139 |
msgid "Widget ID is missing"
|
| 8140 |
msgstr ""
|
| 8141 |
|
| 8142 |
-
#: ../includes/Traits/Helper.php:29, ../includes/Traits/Helper.php:
|
| 8143 |
msgid "Insecure form submitted without security token"
|
| 8144 |
msgstr ""
|
| 8145 |
|
| 8146 |
-
#: ../includes/Traits/Helper.php:37, ../includes/Traits/Helper.php:
|
| 8147 |
msgid "Security token did not match"
|
| 8148 |
msgstr ""
|
| 8149 |
|
| 8150 |
-
#: ../includes/Traits/Helper.php:47, ../includes/Traits/Helper.php:
|
| 8151 |
msgid "Page ID is missing"
|
| 8152 |
msgstr ""
|
| 8153 |
|
| 8154 |
-
#: ../includes/Traits/Helper.php:67, ../includes/Traits/Helper.php:
|
| 8155 |
msgid "Widget settings are not found. Did you save the widget before using load more??"
|
| 8156 |
msgstr ""
|
| 8157 |
|
|
@@ -8163,35 +8163,35 @@ msgstr ""
|
|
| 8163 |
msgid "%s ago"
|
| 8164 |
msgstr ""
|
| 8165 |
|
| 8166 |
-
#: ../includes/Traits/Helper.php:
|
| 8167 |
msgid "1,700+ Stunning Templates"
|
| 8168 |
msgstr ""
|
| 8169 |
|
| 8170 |
-
#: ../includes/Traits/Helper.php:
|
| 8171 |
msgid "Supports Elementor & Gutenberg"
|
| 8172 |
msgstr ""
|
| 8173 |
|
| 8174 |
-
#: ../includes/Traits/Helper.php:
|
| 8175 |
msgid "Powering up 100,000+ Websites"
|
| 8176 |
msgstr ""
|
| 8177 |
|
| 8178 |
-
#: ../includes/Traits/Helper.php:
|
| 8179 |
msgid "Cloud Collaboration with Team"
|
| 8180 |
msgstr ""
|
| 8181 |
|
| 8182 |
-
#: ../includes/Traits/Helper.php:
|
| 8183 |
msgid "Don’t Show This Again"
|
| 8184 |
msgstr ""
|
| 8185 |
|
| 8186 |
-
#: ../includes/Traits/Helper.php:
|
| 8187 |
msgid "Activate Templately"
|
| 8188 |
msgstr ""
|
| 8189 |
|
| 8190 |
-
#: ../includes/Traits/Helper.php:
|
| 8191 |
msgid "Activated Templately"
|
| 8192 |
msgstr ""
|
| 8193 |
|
| 8194 |
-
#: ../includes/Traits/Helper.php:
|
| 8195 |
msgid "Submit"
|
| 8196 |
msgstr ""
|
| 8197 |
|
| 57 |
msgid "You don't have set any slug and file name to install the plugins"
|
| 58 |
msgstr ""
|
| 59 |
|
| 60 |
+
#: ../includes/Classes/WPDeveloper_Notice.php:440
|
| 61 |
msgid "Install Now!"
|
| 62 |
msgstr ""
|
| 63 |
|
| 64 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:151, ../includes/Classes/WPDeveloper_Plugin_Installer.php:169, ../includes/Classes/WPDeveloper_Plugin_Installer.php:188, ../includes/Classes/WPDeveloper_Setup_Wizard.php:517, ../includes/Classes/WPDeveloper_Setup_Wizard.php:543, ../includes/Traits/Admin.php:141, ../includes/Traits/Helper.php:850, ../includes/Traits/Library.php:158
|
| 65 |
msgid "you are not allowed to do this action"
|
| 66 |
msgstr ""
|
| 67 |
|
| 69 |
msgid "Plugin is installed successfully!"
|
| 70 |
msgstr ""
|
| 71 |
|
| 72 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:179
|
| 73 |
msgid "Plugin is updated successfully!"
|
| 74 |
msgstr ""
|
| 75 |
|
| 76 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:199
|
| 77 |
msgid "Plugin couldn't be activated."
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
+
#: ../includes/Classes/WPDeveloper_Plugin_Installer.php:201
|
| 81 |
msgid "Plugin is activated successfully!"
|
| 82 |
msgstr ""
|
| 83 |
|
| 121 |
msgid "Next"
|
| 122 |
msgstr ""
|
| 123 |
|
| 124 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1015, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:311, ../includes/Elements/Filterable_Gallery.php:776, ../includes/Elements/Filterable_Gallery.php:1308, ../includes/Elements/Filterable_Gallery.php:1691, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:680, ../includes/Elements/GravityForms.php:1957, ../includes/Elements/GravityForms.php:2207, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:716, ../includes/Elements/Login_Register.php:2595, ../includes/Elements/Login_Register.php:3263, ../includes/Elements/Login_Register.php:3583, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:650, ../includes/Elements/Post_Grid.php:718, ../includes/Elements/Post_Grid.php:813, ../includes/Elements/Post_Grid.php:896, ../includes/Elements/Post_Timeline.php:365, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Pricing_Table.php:258, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Product_Grid.php:1021, ../includes/Elements/Product_Grid.php:1715, ../includes/Elements/Product_Grid.php:2204, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:341, ../includes/Elements/Simple_Menu.php:748, ../includes/Elements/Simple_Menu.php:774, ../includes/Elements/Simple_Menu.php:799, ../includes/Elements/Simple_Menu.php:1094, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:217, ../includes/Elements/Tooltip.php:289, ../includes/Elements/Tooltip.php:385, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:277, ../includes/Elements/Woo_Cart.php:498, ../includes/Elements/Woo_Cart.php:594, ../includes/Elements/Woo_Cart.php:665, ../includes/Elements/Woo_Cart.php:743, ../includes/Elements/Woo_Cart.php:851, ../includes/Elements/Woo_Cart.php:1596, ../includes/Elements/Woo_Cart.php:2202, ../includes/Elements/Woo_Product_Carousel.php:705, ../includes/Elements/Woo_Product_Carousel.php:824, ../includes/Elements/Woo_Product_Carousel.php:877, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:560, ../includes/Elements/Woo_Product_Gallery.php:1523, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:463, ../includes/Traits/Controls.php:602, ../includes/Traits/Controls.php:1267, ../includes/Traits/Controls.php:1605, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1979
|
| 125 |
msgid "Right"
|
| 126 |
msgstr ""
|
| 127 |
|
| 197 |
msgid "Upgrade to PRO"
|
| 198 |
msgstr ""
|
| 199 |
|
| 200 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:324, ../includes/Traits/Helper.php:826, ../includes/templates/admin/general.php:31
|
| 201 |
msgid "Install Templately"
|
| 202 |
msgstr ""
|
| 203 |
|
| 716 |
msgid "Width"
|
| 717 |
msgstr ""
|
| 718 |
|
| 719 |
+
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:384, ../includes/Elements/Adv_Accordion.php:573, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:694, ../includes/Elements/Adv_Accordion.php:777, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Accordion.php:945, ../includes/Elements/Adv_Accordion.php:991, ../includes/Elements/Adv_Tabs.php:360, ../includes/Elements/Adv_Tabs.php:554, ../includes/Elements/Adv_Tabs.php:621, ../includes/Elements/Adv_Tabs.php:690, ../includes/Elements/Adv_Tabs.php:784, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:810, ../includes/Elements/Event_Calendar.php:877, ../includes/Elements/Event_Calendar.php:931, ../includes/Elements/Event_Calendar.php:1603, ../includes/Elements/Event_Calendar.php:1674, ../includes/Elements/Facebook_Feed.php:451, ../includes/Elements/Filterable_Gallery.php:872, ../includes/Elements/Filterable_Gallery.php:985, ../includes/Elements/Filterable_Gallery.php:1051, ../includes/Elements/Filterable_Gallery.php:1131, ../includes/Elements/Filterable_Gallery.php:1278, ../includes/Elements/Filterable_Gallery.php:1335, ../includes/Elements/Filterable_Gallery.php:1554, ../includes/Elements/Filterable_Gallery.php:1829, ../includes/Elements/Filterable_Gallery.php:1890, ../includes/Elements/Filterable_Gallery.php:2411, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:994, ../includes/Elements/Flip_Box.php:1107, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:878, ../includes/Elements/GravityForms.php:942, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1883, ../includes/Elements/GravityForms.php:2052, ../includes/Elements/GravityForms.php:2279, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Interactive_Circle.php:357, ../includes/Elements/Interactive_Circle.php:503, ../includes/Elements/Interactive_Circle.php:730, ../includes/Elements/Login_Register.php:2778, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1783, ../includes/Elements/Pricing_Table.php:1949, ../includes/Elements/Product_Grid.php:2275, ../includes/Elements/Simple_Menu.php:621, ../includes/Elements/Simple_Menu.php:694, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:482, ../includes/Elements/Twitter_Feed.php:461, ../includes/Elements/Twitter_Feed.php:551, ../includes/Elements/Twitter_Feed.php:868, ../includes/Elements/Woo_Checkout.php:1519, ../includes/Elements/Woo_Checkout.php:1765, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2675, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:545, ../includes/Traits/Controls.php:1324, ../includes/Traits/Controls.php:1378, ../includes/Traits/Controls.php:1508
|
| 720 |
msgid "Border"
|
| 721 |
msgstr ""
|
| 722 |
|
| 723 |
+
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:391, ../includes/Elements/Adv_Accordion.php:580, ../includes/Elements/Adv_Accordion.php:640, ../includes/Elements/Adv_Accordion.php:701, ../includes/Elements/Adv_Tabs.php:368, ../includes/Elements/Adv_Tabs.php:561, ../includes/Elements/Adv_Tabs.php:628, ../includes/Elements/Adv_Tabs.php:697, ../includes/Elements/Adv_Tabs.php:791, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:206, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:818, ../includes/Elements/Event_Calendar.php:885, ../includes/Elements/Event_Calendar.php:939, ../includes/Elements/Event_Calendar.php:1175, ../includes/Elements/Event_Calendar.php:1343, ../includes/Elements/Event_Calendar.php:1611, ../includes/Elements/Event_Calendar.php:1682, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:880, ../includes/Elements/Filterable_Gallery.php:993, ../includes/Elements/Filterable_Gallery.php:1059, ../includes/Elements/Filterable_Gallery.php:1139, ../includes/Elements/Filterable_Gallery.php:1343, ../includes/Elements/Filterable_Gallery.php:1837, ../includes/Elements/Filterable_Gallery.php:1898, ../includes/Elements/Filterable_Gallery.php:2069, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2335, ../includes/Elements/Filterable_Gallery.php:2433, ../includes/Elements/Filterable_Gallery.php:2542, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1017, ../includes/Elements/Flip_Box.php:1130, ../includes/Elements/Flip_Box.php:1391, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:889, ../includes/Elements/GravityForms.php:1359, ../includes/Elements/GravityForms.php:1555, ../includes/Elements/GravityForms.php:1687, ../includes/Elements/GravityForms.php:1893, ../includes/Elements/GravityForms.php:2062, ../includes/Elements/GravityForms.php:2289, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1214, ../includes/Elements/Login_Register.php:1579, ../includes/Elements/Login_Register.php:1814, ../includes/Elements/Login_Register.php:1988, ../includes/Elements/Login_Register.php:2144, ../includes/Elements/Login_Register.php:2284, ../includes/Elements/Login_Register.php:2378, ../includes/Elements/Login_Register.php:2469, ../includes/Elements/Login_Register.php:2643, ../includes/Elements/Login_Register.php:2680, ../includes/Elements/Login_Register.php:2794, ../includes/Elements/Login_Register.php:3304, ../includes/Elements/Login_Register.php:3341, ../includes/Elements/Login_Register.php:3625, ../includes/Elements/Login_Register.php:3662, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:311, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Pricing_Table.php:1557, ../includes/Elements/Pricing_Table.php:1806, ../includes/Elements/Pricing_Table.php:1957, ../includes/Elements/Product_Grid.php:943, ../includes/Elements/Product_Grid.php:2019, ../includes/Elements/Product_Grid.php:2375, ../includes/Elements/Product_Grid.php:2715, ../includes/Elements/Product_Grid.php:2914, ../includes/Elements/Product_Grid.php:2946, ../includes/Elements/Simple_Menu.php:629, ../includes/Elements/Sticky_Video.php:592, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:499, ../includes/Elements/Twitter_Feed.php:469, ../includes/Elements/Twitter_Feed.php:562, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Cart.php:1317, ../includes/Elements/Woo_Cart.php:1464, ../includes/Elements/Woo_Cart.php:1720, ../includes/Elements/Woo_Cart.php:1859, ../includes/Elements/Woo_Cart.php:1960, ../includes/Elements/Woo_Cart.php:2114, ../includes/Elements/Woo_Cart.php:2319, ../includes/Elements/Woo_Cart.php:2405, ../includes/Elements/Woo_Cart.php:2489, ../includes/Elements/Woo_Checkout.php:659, ../includes/Elements/Woo_Checkout.php:808, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1252, ../includes/Elements/Woo_Checkout.php:1405, ../includes/Elements/Woo_Checkout.php:1528, ../includes/Elements/Woo_Checkout.php:1703, ../includes/Elements/Woo_Checkout.php:1911, ../includes/Elements/Woo_Checkout.php:2113, ../includes/Elements/Woo_Checkout.php:2293, ../includes/Elements/Woo_Checkout.php:2573, ../includes/Elements/Woo_Product_Carousel.php:1008, ../includes/Elements/Woo_Product_Carousel.php:1410, ../includes/Elements/Woo_Product_Carousel.php:1813, ../includes/Elements/Woo_Product_Carousel.php:2009, ../includes/Elements/Woo_Product_Carousel.php:2041, ../includes/Elements/Woo_Product_Carousel.php:2251, ../includes/Elements/Woo_Product_Carousel.php:2374, ../includes/Elements/Woo_Product_Carousel.php:2498, ../includes/Elements/Woo_Product_Carousel.php:2685, ../includes/Elements/Woo_Product_Gallery.php:675, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_Gallery.php:2053, ../includes/Elements/Woo_Product_Gallery.php:2252, ../includes/Elements/Woo_Product_Gallery.php:2284, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Scroll_to_Top.php:443, ../includes/Extensions/Table_of_Content.php:568, ../includes/Extensions/Table_of_Content.php:783, ../includes/Traits/Controls.php:1332, ../includes/Traits/Controls.php:1386, ../includes/Traits/Controls.php:1516, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394
|
| 724 |
msgid "Border Radius"
|
| 725 |
msgstr ""
|
| 726 |
|
| 740 |
msgid "Text Alignment"
|
| 741 |
msgstr ""
|
| 742 |
|
| 743 |
+
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1007, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:303, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:1949, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:712, ../includes/Elements/Login_Register.php:745, ../includes/Elements/Login_Register.php:2587, ../includes/Elements/Login_Register.php:3255, ../includes/Elements/Login_Register.php:3575, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:487, ../includes/Elements/Post_Grid.php:642, ../includes/Elements/Post_Grid.php:710, ../includes/Elements/Post_Grid.php:805, ../includes/Elements/Post_Grid.php:888, ../includes/Elements/Post_Timeline.php:357, ../includes/Elements/Post_Timeline.php:415, ../includes/Elements/Pricing_Table.php:257, ../includes/Elements/Pricing_Table.php:374, ../includes/Elements/Pricing_Table.php:676, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Pricing_Table.php:841, ../includes/Elements/Product_Grid.php:695, ../includes/Elements/Product_Grid.php:1013, ../includes/Elements/Product_Grid.php:1711, ../includes/Elements/Product_Grid.php:2196, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:188, ../includes/Elements/Simple_Menu.php:333, ../includes/Elements/Simple_Menu.php:740, ../includes/Elements/Simple_Menu.php:766, ../includes/Elements/Simple_Menu.php:791, ../includes/Elements/Simple_Menu.php:1086, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:209, ../includes/Elements/Tooltip.php:288, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:269, ../includes/Elements/Woo_Cart.php:494, ../includes/Elements/Woo_Cart.php:586, ../includes/Elements/Woo_Cart.php:657, ../includes/Elements/Woo_Cart.php:735, ../includes/Elements/Woo_Cart.php:843, ../includes/Elements/Woo_Cart.php:1588, ../includes/Elements/Woo_Cart.php:2194, ../includes/Elements/Woo_Product_Carousel.php:704, ../includes/Elements/Woo_Product_Carousel.php:820, ../includes/Elements/Woo_Product_Carousel.php:869, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:552, ../includes/Elements/Woo_Product_Gallery.php:1519, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:462, ../includes/Traits/Controls.php:604, ../includes/Traits/Controls.php:1259, ../includes/Traits/Controls.php:1597, ../includes/Traits/Controls.php:1648, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1971
|
| 744 |
msgid "Left"
|
| 745 |
msgstr ""
|
| 746 |
|
| 747 |
+
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1011, ../includes/Elements/Event_Calendar.php:1143, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:676, ../includes/Elements/GravityForms.php:1953, ../includes/Elements/GravityForms.php:2203, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:3237, ../includes/Elements/Login_Register.php:3259, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3556, ../includes/Elements/Login_Register.php:3579, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:491, ../includes/Elements/Post_Grid.php:646, ../includes/Elements/Post_Grid.php:714, ../includes/Elements/Post_Grid.php:809, ../includes/Elements/Post_Grid.php:892, ../includes/Elements/Post_Timeline.php:361, ../includes/Elements/Post_Timeline.php:419, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:699, ../includes/Elements/Product_Grid.php:1017, ../includes/Elements/Product_Grid.php:2200, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:337, ../includes/Elements/Simple_Menu.php:744, ../includes/Elements/Simple_Menu.php:770, ../includes/Elements/Simple_Menu.php:795, ../includes/Elements/Simple_Menu.php:1090, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:213, ../includes/Elements/Tooltip.php:381, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:273, ../includes/Elements/Woo_Cart.php:590, ../includes/Elements/Woo_Cart.php:661, ../includes/Elements/Woo_Cart.php:739, ../includes/Elements/Woo_Cart.php:847, ../includes/Elements/Woo_Cart.php:1592, ../includes/Elements/Woo_Cart.php:2198, ../includes/Elements/Woo_Product_Carousel.php:873, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:556, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:603, ../includes/Traits/Controls.php:1263, ../includes/Traits/Controls.php:1601, ../includes/Traits/Controls.php:1975
|
| 748 |
msgid "Center"
|
| 749 |
msgstr ""
|
| 750 |
|
| 751 |
+
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:549, ../includes/Elements/Adv_Accordion.php:609, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Accordion.php:736, ../includes/Elements/Adv_Tabs.php:527, ../includes/Elements/Adv_Tabs.php:594, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Event_Calendar.php:1286, ../includes/Elements/Filterable_Gallery.php:960, ../includes/Elements/Filterable_Gallery.php:1026, ../includes/Elements/Filterable_Gallery.php:2511, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:628, ../includes/Elements/GravityForms.php:715, ../includes/Elements/GravityForms.php:979, ../includes/Elements/GravityForms.php:1032, ../includes/Elements/GravityForms.php:1219, ../includes/Elements/GravityForms.php:1662, ../includes/Elements/GravityForms.php:1738, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2130, ../includes/Elements/GravityForms.php:2266, ../includes/Elements/GravityForms.php:2353, ../includes/Elements/GravityForms.php:2427, ../includes/Elements/GravityForms.php:2562, ../includes/Elements/Info_Box.php:1236, ../includes/Elements/Info_Box.php:1282, ../includes/Elements/Interactive_Circle.php:476, ../includes/Elements/Interactive_Circle.php:536, ../includes/Elements/Interactive_Circle.php:604, ../includes/Elements/Interactive_Circle.php:689, ../includes/Elements/Login_Register.php:2616, ../includes/Elements/Login_Register.php:2755, ../includes/Elements/Login_Register.php:3099, ../includes/Elements/Login_Register.php:3284, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:3605, ../includes/Elements/Login_Register.php:3642, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1909, ../includes/Elements/Pricing_Table.php:1978, ../includes/Elements/Product_Grid.php:2250, ../includes/Elements/Product_Grid.php:2288, ../includes/Elements/Product_Grid.php:2332, ../includes/Elements/Simple_Menu.php:363, ../includes/Elements/Simple_Menu.php:397, ../includes/Elements/Simple_Menu.php:431, ../includes/Elements/Simple_Menu.php:489, ../includes/Elements/Simple_Menu.php:523, ../includes/Elements/Simple_Menu.php:849, ../includes/Elements/Simple_Menu.php:976, ../includes/Elements/Simple_Menu.php:1160, ../includes/Elements/Simple_Menu.php:1285, ../includes/Elements/Tooltip.php:418, ../includes/Elements/Tooltip.php:461, ../includes/Elements/Tooltip.php:634, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/Woo_Cart.php:1248, ../includes/Elements/Woo_Cart.php:1502, ../includes/Elements/Woo_Cart.php:1793, ../includes/Elements/Woo_Cart.php:1831, ../includes/Elements/Woo_Cart.php:1919, ../includes/Elements/Woo_Cart.php:2043, ../includes/Elements/Woo_Cart.php:2084, ../includes/Elements/Woo_Cart.php:2279, ../includes/Elements/Woo_Cart.php:2362, ../includes/Elements/Woo_Cart.php:2449, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:626, ../includes/Extensions/Table_of_Content.php:941, ../includes/Extensions/Table_of_Content.php:964, ../includes/Extensions/Table_of_Content.php:990, ../includes/Traits/Controls.php:1298, ../includes/Traits/Controls.php:1353, ../includes/Traits/Controls.php:1483, ../includes/Traits/Controls.php:1545, ../includes/Traits/Controls.php:1928
|
| 752 |
msgid "Text Color"
|
| 753 |
msgstr ""
|
| 754 |
|
| 755 |
+
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:885, ../includes/Elements/Adv_Accordion.php:931, ../includes/Elements/Adv_Accordion.php:977, ../includes/Elements/Adv_Tabs.php:508, ../includes/Elements/Adv_Tabs.php:724, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1265, ../includes/Elements/Filterable_Gallery.php:835, ../includes/Elements/Filterable_Gallery.php:972, ../includes/Elements/Filterable_Gallery.php:1038, ../includes/Elements/Filterable_Gallery.php:1184, ../includes/Elements/Filterable_Gallery.php:1374, ../includes/Elements/Filterable_Gallery.php:1404, ../includes/Elements/Filterable_Gallery.php:1509, ../includes/Elements/Filterable_Gallery.php:1525, ../includes/Elements/Filterable_Gallery.php:1727, ../includes/Elements/Filterable_Gallery.php:1865, ../includes/Elements/Filterable_Gallery.php:2495, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:703, ../includes/Elements/GravityForms.php:929, ../includes/Elements/GravityForms.php:1648, ../includes/Elements/GravityForms.php:1724, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2025, ../includes/Elements/GravityForms.php:2117, ../includes/Elements/GravityForms.php:2254, ../includes/Elements/GravityForms.php:2341, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1248, ../includes/Elements/Info_Box.php:1294, ../includes/Elements/Interactive_Circle.php:465, ../includes/Elements/Interactive_Circle.php:522, ../includes/Elements/Interactive_Circle.php:590, ../includes/Elements/Interactive_Circle.php:672, ../includes/Elements/Login_Register.php:1594, ../includes/Elements/Login_Register.php:1727, ../includes/Elements/Login_Register.php:1829, ../includes/Elements/Login_Register.php:2003, ../includes/Elements/Login_Register.php:2359, ../includes/Elements/Login_Register.php:2450, ../includes/Elements/Login_Register.php:2630, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:2765, ../includes/Elements/Login_Register.php:3292, ../includes/Elements/Login_Register.php:3329, ../includes/Elements/Login_Register.php:3613, ../includes/Elements/Login_Register.php:3650, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:962, ../includes/Elements/Pricing_Table.php:737, ../includes/Elements/Pricing_Table.php:897, ../includes/Elements/Pricing_Table.php:1424, ../includes/Elements/Pricing_Table.php:1493, ../includes/Elements/Pricing_Table.php:1659, ../includes/Elements/Pricing_Table.php:1921, ../includes/Elements/Pricing_Table.php:1990, ../includes/Elements/Product_Grid.php:1860, ../includes/Elements/Product_Grid.php:1968, ../includes/Elements/Product_Grid.php:2076, ../includes/Elements/Product_Grid.php:2262, ../includes/Elements/Product_Grid.php:2300, ../includes/Elements/Product_Grid.php:2344, ../includes/Elements/Product_Grid.php:2592, ../includes/Elements/Product_Grid.php:2635, ../includes/Elements/Product_Grid.php:2696, ../includes/Elements/Product_Grid.php:2747, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:267, ../includes/Elements/Simple_Menu.php:376, ../includes/Elements/Simple_Menu.php:410, ../includes/Elements/Simple_Menu.php:444, ../includes/Elements/Simple_Menu.php:502, ../includes/Elements/Simple_Menu.php:536, ../includes/Elements/Simple_Menu.php:608, ../includes/Elements/Simple_Menu.php:680, ../includes/Elements/Simple_Menu.php:863, ../includes/Elements/Simple_Menu.php:943, ../includes/Elements/Simple_Menu.php:991, ../includes/Elements/Simple_Menu.php:1038, ../includes/Elements/Simple_Menu.php:1172, ../includes/Elements/Simple_Menu.php:1252, ../includes/Elements/Simple_Menu.php:1299, ../includes/Elements/Simple_Menu.php:1346, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/Twitter_Feed.php:414, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Cart.php:1143, ../includes/Elements/Woo_Cart.php:1782, ../includes/Elements/Woo_Cart.php:1820, ../includes/Elements/Woo_Cart.php:2031, ../includes/Elements/Woo_Cart.php:2072, ../includes/Elements/Woo_Checkout.php:629, ../includes/Elements/Woo_Checkout.php:744, ../includes/Elements/Woo_Checkout.php:866, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:2252, ../includes/Elements/Woo_Checkout.php:2382, ../includes/Elements/Woo_Checkout.php:2492, ../includes/Elements/Woo_Checkout.php:2532, ../includes/Elements/Woo_Product_Carousel.php:895, ../includes/Elements/Woo_Product_Carousel.php:1388, ../includes/Elements/Woo_Product_Carousel.php:1470, ../includes/Elements/Woo_Product_Carousel.php:1689, ../includes/Elements/Woo_Product_Carousel.php:1732, ../includes/Elements/Woo_Product_Carousel.php:1794, ../includes/Elements/Woo_Product_Carousel.php:1846, ../includes/Elements/Woo_Product_Carousel.php:2650, ../includes/Elements/Woo_Product_Carousel.php:2706, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_Gallery.php:1731, ../includes/Elements/Woo_Product_Gallery.php:1930, ../includes/Elements/Woo_Product_Gallery.php:1973, ../includes/Elements/Woo_Product_Gallery.php:2034, ../includes/Elements/Woo_Product_Gallery.php:2085, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:428, ../includes/Extensions/Table_of_Content.php:613, ../includes/Extensions/Table_of_Content.php:759, ../includes/Extensions/Table_of_Content.php:823, ../includes/Traits/Controls.php:1495, ../includes/Traits/Controls.php:1557, ../includes/Traits/Controls.php:1938, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486
|
| 756 |
msgid "Background Color"
|
| 757 |
msgstr ""
|
| 758 |
|
| 760 |
msgid "Cell Border"
|
| 761 |
msgstr ""
|
| 762 |
|
| 763 |
+
#: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:514, ../includes/Elements/Adv_Accordion.php:754, ../includes/Elements/Adv_Tabs.php:337, ../includes/Elements/Adv_Tabs.php:482, ../includes/Elements/Adv_Tabs.php:761, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:440, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:605, ../includes/Elements/Facebook_Feed.php:631, ../includes/Elements/Facebook_Feed.php:703, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:597, ../includes/Elements/Filterable_Gallery.php:847, ../includes/Elements/Filterable_Gallery.php:924, ../includes/Elements/Filterable_Gallery.php:1106, ../includes/Elements/Filterable_Gallery.php:1196, ../includes/Elements/Filterable_Gallery.php:1540, ../includes/Elements/Filterable_Gallery.php:1751, ../includes/Elements/Filterable_Gallery.php:2614, ../includes/Elements/Flip_Box.php:1005, ../includes/Elements/Flip_Box.php:1118, ../includes/Elements/Flip_Box.php:1354, ../includes/Elements/FluentForm.php:790, ../includes/Elements/FluentForm.php:1158, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1336, ../includes/Elements/FluentForm.php:1421, ../includes/Elements/FluentForm.php:1602, ../includes/Elements/FluentForm.php:2025, ../includes/Elements/FluentForm.php:2191, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:765, ../includes/Elements/GravityForms.php:1386, ../includes/Elements/GravityForms.php:1582, ../includes/Elements/GravityForms.php:1701, ../includes/Elements/GravityForms.php:1905, ../includes/Elements/GravityForms.php:2075, ../includes/Elements/GravityForms.php:2301, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:556, ../includes/Elements/Interactive_Circle.php:334, ../includes/Elements/Interactive_Circle.php:707, ../includes/Elements/Login_Register.php:1557, ../includes/Elements/Login_Register.php:2122, ../includes/Elements/Login_Register.php:2261, ../includes/Elements/Login_Register.php:2334, ../includes/Elements/Login_Register.php:2425, ../includes/Elements/Login_Register.php:2527, ../includes/Elements/Login_Register.php:2563, ../includes/Elements/Login_Register.php:2725, ../includes/Elements/Login_Register.php:3197, ../includes/Elements/Login_Register.php:3496, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:749, ../includes/Elements/Pricing_Table.php:1535, ../includes/Elements/Pricing_Table.php:1840, ../includes/Elements/Product_Grid.php:806, ../includes/Elements/Product_Grid.php:1057, ../includes/Elements/Product_Grid.php:1469, ../includes/Elements/Simple_Menu.php:308, ../includes/Elements/Simple_Menu.php:468, ../includes/Elements/Simple_Menu.php:641, ../includes/Elements/Simple_Menu.php:1105, ../includes/Elements/Team_Member.php:487, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:349, ../includes/Elements/Tooltip.php:601, ../includes/Elements/Twitter_Feed.php:444, ../includes/Elements/Twitter_Feed.php:503, ../includes/Elements/Twitter_Feed.php:536, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Cart.php:1202, ../includes/Elements/Woo_Cart.php:1732, ../includes/Elements/Woo_Cart.php:1879, ../includes/Elements/Woo_Cart.php:1973, ../includes/Elements/Woo_Cart.php:2127, ../includes/Elements/Woo_Cart.php:2229, ../includes/Elements/Woo_Checkout.php:640, ../includes/Elements/Woo_Checkout.php:1232, ../includes/Elements/Woo_Checkout.php:1425, ../includes/Elements/Woo_Checkout.php:1555, ../includes/Elements/Woo_Checkout.php:1723, ../includes/Elements/Woo_Checkout.php:1938, ../includes/Elements/Woo_Checkout.php:2274, ../includes/Elements/Woo_Checkout.php:2605, ../includes/Elements/Woo_Product_Carousel.php:1030, ../includes/Elements/Woo_Product_Carousel.php:2263, ../includes/Elements/Woo_Product_Gallery.php:590, ../includes/Elements/Woo_Product_Gallery.php:694, ../includes/Elements/Woo_Product_Gallery.php:973, ../includes/Elements/Woo_Product_Gallery.php:1218, ../includes/Elements/Woo_Product_Gallery.php:1280, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:648, ../includes/Extensions/Table_of_Content.php:836, ../includes/Traits/Controls.php:1402, ../includes/Traits/Controls.php:1447, ../includes/Traits/Controls.php:1948, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1614
|
| 764 |
msgid "Padding"
|
| 765 |
msgstr ""
|
| 766 |
|
| 816 |
msgid "Margin Bottom"
|
| 817 |
msgstr ""
|
| 818 |
|
| 819 |
+
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:668, ../includes/Elements/GravityForms.php:1945, ../includes/Elements/GravityForms.php:2195, ../includes/Elements/Login_Register.php:3251, ../includes/Elements/Login_Register.php:3571, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:801, ../includes/Elements/Post_Grid.php:884, ../includes/Elements/Product_Grid.php:691, ../includes/Elements/Product_Grid.php:1009, ../includes/Elements/Product_Grid.php:1707, ../includes/Elements/Product_Grid.php:2192, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Simple_Menu.php:329, ../includes/Elements/Simple_Menu.php:736, ../includes/Elements/Simple_Menu.php:762, ../includes/Elements/Simple_Menu.php:787, ../includes/Elements/Simple_Menu.php:1082, ../includes/Elements/Tooltip.php:204, ../includes/Elements/Woo_Cart.php:265, ../includes/Elements/Woo_Cart.php:490, ../includes/Elements/Woo_Cart.php:582, ../includes/Elements/Woo_Cart.php:653, ../includes/Elements/Woo_Cart.php:731, ../includes/Elements/Woo_Cart.php:839, ../includes/Elements/Woo_Cart.php:1584, ../includes/Elements/Woo_Cart.php:2190, ../includes/Elements/Woo_Product_Carousel.php:816, ../includes/Elements/Woo_Product_Carousel.php:865, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:548, ../includes/Elements/Woo_Product_Gallery.php:1515, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1255, ../includes/Traits/Controls.php:1967
|
| 820 |
msgid "Alignment"
|
| 821 |
msgstr ""
|
| 822 |
|
| 823 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:525, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Tabs.php:348, ../includes/Elements/Adv_Tabs.php:493, ../includes/Elements/Adv_Tabs.php:772, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:859, ../includes/Elements/Filterable_Gallery.php:936, ../includes/Elements/Filterable_Gallery.php:1118, ../includes/Elements/Filterable_Gallery.php:1763, ../includes/Elements/Filterable_Gallery.php:2212, ../includes/Elements/Filterable_Gallery.php:2655, ../includes/Elements/Flip_Box.php:1342, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:394, ../includes/Elements/FluentForm.php:1170, ../includes/Elements/FluentForm.php:1225, ../includes/Elements/FluentForm.php:2203, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1115, ../includes/Elements/GravityForms.php:1374, ../includes/Elements/GravityForms.php:1570, ../includes/Elements/GravityForms.php:1919, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:983, ../includes/Elements/Info_Box.php:1375, ../includes/Elements/Interactive_Circle.php:345, ../includes/Elements/Interactive_Circle.php:718, ../includes/Elements/Login_Register.php:1542, ../includes/Elements/Login_Register.php:2107, ../includes/Elements/Login_Register.php:2246, ../includes/Elements/Login_Register.php:2319, ../includes/Elements/Login_Register.php:2410, ../includes/Elements/Login_Register.php:2512, ../includes/Elements/Login_Register.php:2548, ../includes/Elements/Login_Register.php:2710, ../includes/Elements/Login_Register.php:3182, ../includes/Elements/Login_Register.php:3417, ../includes/Elements/Login_Register.php:3481, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:534, ../includes/Elements/Post_Grid.php:549, ../includes/Elements/Post_Grid.php:673, ../includes/Elements/Post_Grid.php:761, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Pricing_Table.php:761, ../includes/Elements/Pricing_Table.php:1087, ../includes/Elements/Pricing_Table.php:1157, ../includes/Elements/Pricing_Table.php:1852, ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:360, ../includes/Elements/Tooltip.php:612, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Cart.php:1214, ../includes/Elements/Woo_Cart.php:1744, ../includes/Elements/Woo_Cart.php:1891, ../includes/Elements/Woo_Cart.php:1986, ../includes/Elements/Woo_Cart.php:2141, ../includes/Elements/Woo_Cart.php:2243, ../includes/Elements/Woo_Product_Carousel.php:924, ../includes/Elements/Woo_Product_Gallery.php:1206, ../includes/Elements/Woo_Product_Gallery.php:1268, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1414, ../includes/Traits/Controls.php:1459, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462
|
| 824 |
msgid "Margin"
|
| 825 |
msgstr ""
|
| 826 |
|
| 827 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:536, ../includes/Elements/Adv_Accordion.php:864, ../includes/Elements/Adv_Tabs.php:504, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:398, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:780, ../includes/Elements/Filterable_Gallery.php:955, ../includes/Elements/Filterable_Gallery.php:1720, ../includes/Elements/Filterable_Gallery.php:2484, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:696, ../includes/Elements/GravityForms.php:1286, ../includes/Elements/GravityForms.php:1482, ../includes/Elements/GravityForms.php:1641, ../includes/Elements/GravityForms.php:2018, ../includes/Elements/GravityForms.php:2247, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1230, ../includes/Elements/Info_Box.php:1341, ../includes/Elements/Interactive_Circle.php:461, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3281, ../includes/Elements/Login_Register.php:3444, ../includes/Elements/Login_Register.php:3602, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Product_Grid.php:861, ../includes/Elements/Product_Grid.php:1508, ../includes/Elements/Product_Grid.php:1950, ../includes/Elements/Product_Grid.php:2245, ../includes/Elements/Product_Grid.php:2679, ../includes/Elements/Team_Member.php:714, ../includes/Elements/Tooltip.php:403, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Cart.php:1775, ../includes/Elements/Woo_Cart.php:2024, ../includes/Elements/Woo_Checkout.php:912, ../includes/Elements/Woo_Checkout.php:955, ../includes/Elements/Woo_Checkout.php:1098, ../includes/Elements/Woo_Checkout.php:1317, ../includes/Elements/Woo_Checkout.php:1615, ../includes/Elements/Woo_Checkout.php:2075, ../includes/Elements/Woo_Checkout.php:2331, ../includes/Elements/Woo_Checkout.php:2485, ../includes/Elements/Woo_Product_Carousel.php:936, ../includes/Elements/Woo_Product_Carousel.php:1372, ../includes/Elements/Woo_Product_Carousel.php:1777, ../includes/Elements/Woo_Product_Carousel.php:2221, ../includes/Elements/Woo_Product_Carousel.php:2643, ../includes/Elements/Woo_Product_Gallery.php:604, ../includes/Elements/Woo_Product_Gallery.php:1008, ../includes/Elements/Woo_Product_Gallery.php:1303, ../includes/Elements/Woo_Product_Gallery.php:1664, ../includes/Elements/Woo_Product_Gallery.php:2017, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:934, ../includes/Traits/Controls.php:1291, ../includes/Traits/Controls.php:1478, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1642
|
| 828 |
msgid "Normal"
|
| 829 |
msgstr ""
|
| 830 |
|
| 831 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:594, ../includes/Elements/Adv_Accordion.php:911, ../includes/Elements/Adv_Tabs.php:571, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:847, ../includes/Elements/Filterable_Gallery.php:1858, ../includes/Elements/Filterable_Gallery.php:2679, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:2110, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1276, ../includes/Elements/Info_Box.php:1451, ../includes/Elements/Interactive_Circle.php:272, ../includes/Elements/Interactive_Circle.php:518, ../includes/Elements/Login_Register.php:3318, ../includes/Elements/Login_Register.php:3639, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:403, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:911, ../includes/Elements/Product_Grid.php:1584, ../includes/Elements/Product_Grid.php:2059, ../includes/Elements/Product_Grid.php:2283, ../includes/Elements/Product_Grid.php:2730, ../includes/Elements/Simple_Menu.php:390, ../includes/Elements/Simple_Menu.php:516, ../includes/Elements/Simple_Menu.php:969, ../includes/Elements/Simple_Menu.php:1278, ../includes/Elements/Team_Member.php:791, ../includes/Elements/Tooltip.php:446, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Cart.php:1813, ../includes/Elements/Woo_Cart.php:2065, ../includes/Elements/Woo_Checkout.php:928, ../includes/Elements/Woo_Checkout.php:972, ../includes/Elements/Woo_Checkout.php:1114, ../includes/Elements/Woo_Checkout.php:1357, ../includes/Elements/Woo_Checkout.php:1655, ../includes/Elements/Woo_Checkout.php:2091, ../includes/Elements/Woo_Checkout.php:2525, ../includes/Elements/Woo_Product_Carousel.php:976, ../includes/Elements/Woo_Product_Carousel.php:1454, ../includes/Elements/Woo_Product_Carousel.php:1829, ../includes/Elements/Woo_Product_Carousel.php:2284, ../includes/Elements/Woo_Product_Carousel.php:2699, ../includes/Elements/Woo_Product_Gallery.php:643, ../includes/Elements/Woo_Product_Gallery.php:1076, ../includes/Elements/Woo_Product_Gallery.php:1337, ../includes/Elements/Woo_Product_Gallery.php:1714, ../includes/Elements/Woo_Product_Gallery.php:2068, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:957, ../includes/Traits/Controls.php:1346, ../includes/Traits/Controls.php:1540, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1692
|
| 832 |
msgid "Hover"
|
| 833 |
msgstr ""
|
| 834 |
|
| 1128 |
msgid "Show Icon"
|
| 1129 |
msgstr ""
|
| 1130 |
|
| 1131 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:155, ../includes/Elements/Cta_Box.php:302, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:194, ../includes/Elements/FluentForm.php:206, ../includes/Elements/FluentForm.php:232, ../includes/Elements/FluentForm.php:1758, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:360, ../includes/Elements/Login_Register.php:660, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:119, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Pricing_Table.php:1647, ../includes/Elements/Product_Grid.php:557, ../includes/Elements/Product_Grid.php:659, ../includes/Elements/Product_Grid.php:1500, ../includes/Elements/Product_Grid.php:2143, ../includes/Elements/Twitter_Feed.php:392, ../includes/Elements/Woo_Cart.php:428, ../includes/Elements/Woo_Cart.php:476, ../includes/Elements/Woo_Cart.php:546, ../includes/Elements/Woo_Cart.php:558, ../includes/Elements/Woo_Cart.php:629, ../includes/Elements/Woo_Cart.php:707, ../includes/Elements/Woo_Cart.php:778, ../includes/Elements/Woo_Cart.php:898, ../includes/Elements/Woo_Cart.php:922, ../includes/Elements/Woo_Cart.php:959, ../includes/Elements/Woo_Cart.php:1003, ../includes/Elements/Woo_Cart.php:1016, ../includes/Elements/Woo_Cart.php:1031, ../includes/Elements/Woo_Cart.php:1046, ../includes/Elements/Woo_Cart.php:1061, ../includes/Elements/Woo_Cart.php:1076, ../includes/Elements/Woo_Cart.php:1091, ../includes/Elements/Woo_Product_Carousel.php:221, ../includes/Elements/Woo_Product_Carousel.php:627, ../includes/Elements/Woo_Product_Carousel.php:686, ../includes/Elements/Woo_Product_Gallery.php:517, ../includes/Elements/Woo_Product_Gallery.php:1000, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:569, ../includes/Traits/Controls.php:631, ../includes/Traits/Controls.php:661, ../includes/Traits/Controls.php:817, ../includes/Traits/Controls.php:865, ../includes/Traits/Controls.php:933, ../includes/Traits/Controls.php:968, ../includes/Traits/Controls.php:998, ../includes/Traits/Controls.php:1083, ../includes/Traits/Controls.php:1111, ../includes/Traits/Controls.php:1127, ../includes/Traits/Controls.php:1142
|
| 1132 |
msgid "Show"
|
| 1133 |
msgstr ""
|
| 1134 |
|
| 1135 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:156, ../includes/Elements/Cta_Box.php:303, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../includes/Elements/Filterable_Gallery.php:277, ../includes/Elements/FluentForm.php:195, ../includes/Elements/FluentForm.php:207, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:1759, ../includes/Elements/FluentForm.php:1827, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:292, ../includes/Elements/Login_Register.php:359, ../includes/Elements/Login_Register.php:568, ../includes/Elements/Login_Register.php:659, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:512, ../includes/Elements/Pricing_Table.php:1648, ../includes/Elements/Product_Grid.php:558, ../includes/Elements/Product_Grid.php:660, ../includes/Elements/Product_Grid.php:1501, ../includes/Elements/Product_Grid.php:2144, ../includes/Elements/Twitter_Feed.php:393, ../includes/Elements/Woo_Cart.php:429, ../includes/Elements/Woo_Cart.php:477, ../includes/Elements/Woo_Cart.php:547, ../includes/Elements/Woo_Cart.php:559, ../includes/Elements/Woo_Cart.php:630, ../includes/Elements/Woo_Cart.php:708, ../includes/Elements/Woo_Cart.php:779, ../includes/Elements/Woo_Cart.php:899, ../includes/Elements/Woo_Cart.php:923, ../includes/Elements/Woo_Cart.php:960, ../includes/Elements/Woo_Cart.php:1004, ../includes/Elements/Woo_Cart.php:1017, ../includes/Elements/Woo_Cart.php:1032, ../includes/Elements/Woo_Cart.php:1047, ../includes/Elements/Woo_Cart.php:1062, ../includes/Elements/Woo_Cart.php:1077, ../includes/Elements/Woo_Cart.php:1092, ../includes/Elements/Woo_Checkout.php:316, ../includes/Elements/Woo_Product_Carousel.php:222, ../includes/Elements/Woo_Product_Carousel.php:628, ../includes/Elements/Woo_Product_Carousel.php:687, ../includes/Elements/Woo_Product_Gallery.php:518, ../includes/Elements/Woo_Product_Gallery.php:1001, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:570, ../includes/Traits/Controls.php:632, ../includes/Traits/Controls.php:662, ../includes/Traits/Controls.php:818, ../includes/Traits/Controls.php:866, ../includes/Traits/Controls.php:934, ../includes/Traits/Controls.php:969, ../includes/Traits/Controls.php:999, ../includes/Traits/Controls.php:1084, ../includes/Traits/Controls.php:1112, ../includes/Traits/Controls.php:1128, ../includes/Traits/Controls.php:1143
|
| 1136 |
msgid "Hide"
|
| 1137 |
msgstr ""
|
| 1138 |
|
| 1296 |
msgid "Area Spacing"
|
| 1297 |
msgstr ""
|
| 1298 |
|
| 1299 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:440, ../includes/Elements/Pricing_Table.php:836, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1593
|
| 1300 |
msgid "Button Alignment"
|
| 1301 |
msgstr ""
|
| 1302 |
|
| 1332 |
msgid "Close Icon"
|
| 1333 |
msgstr ""
|
| 1334 |
|
| 1335 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:678, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2722, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1100, ../includes/Elements/GravityForms.php:1333, ../includes/Elements/GravityForms.php:1529, ../includes/Elements/GravityForms.php:1752, ../includes/Elements/GravityForms.php:2143, ../includes/Elements/GravityForms.php:2365, ../includes/Elements/Interactive_Circle.php:366, ../includes/Elements/Interactive_Circle.php:564, ../includes/Elements/Interactive_Circle.php:634, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2017, ../includes/Elements/Product_Grid.php:776, ../includes/Elements/Product_Grid.php:916, ../includes/Elements/Product_Grid.php:1636, ../includes/Elements/Product_Grid.php:1921, ../includes/Elements/Product_Grid.php:2103, ../includes/Elements/Product_Grid.php:2312, ../includes/Elements/Product_Grid.php:2356, ../includes/Elements/Product_Grid.php:2551, ../includes/Elements/Product_Grid.php:2647, ../includes/Elements/Product_Grid.php:2759, ../includes/Elements/Simple_Menu.php:955, ../includes/Elements/Simple_Menu.php:1051, ../includes/Elements/Simple_Menu.php:1264, ../includes/Elements/Simple_Menu.php:1359, ../includes/Elements/Sticky_Video.php:580, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Cart.php:1226, ../includes/Elements/Woo_Cart.php:1479, ../includes/Elements/Woo_Cart.php:1842, ../includes/Elements/Woo_Cart.php:2096, ../includes/Elements/Woo_Checkout.php:786, ../includes/Elements/Woo_Checkout.php:993, ../includes/Elements/Woo_Checkout.php:1388, ../includes/Elements/Woo_Checkout.php:1584, ../includes/Elements/Woo_Checkout.php:1686, ../includes/Elements/Woo_Checkout.php:1803, ../includes/Elements/Woo_Checkout.php:1847, ../includes/Elements/Woo_Checkout.php:1891, ../includes/Elements/Woo_Checkout.php:2080, ../includes/Elements/Woo_Checkout.php:2096, ../includes/Elements/Woo_Checkout.php:2444, ../includes/Elements/Woo_Checkout.php:2556, ../includes/Elements/Woo_Product_Carousel.php:981, ../includes/Elements/Woo_Product_Carousel.php:1357, ../includes/Elements/Woo_Product_Carousel.php:1481, ../includes/Elements/Woo_Product_Carousel.php:1649, ../includes/Elements/Woo_Product_Carousel.php:1744, ../includes/Elements/Woo_Product_Carousel.php:1858, ../includes/Elements/Woo_Product_Carousel.php:2303, ../includes/Elements/Woo_Product_Carousel.php:2730, ../includes/Elements/Woo_Product_Gallery.php:648, ../includes/Elements/Woo_Product_Gallery.php:1122, ../includes/Elements/Woo_Product_Gallery.php:1364, ../includes/Elements/Woo_Product_Gallery.php:1402, ../includes/Elements/Woo_Product_Gallery.php:1889, ../includes/Elements/Woo_Product_Gallery.php:1985, ../includes/Elements/Woo_Product_Gallery.php:2097, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1569, ../includes/Traits/Woo_Product_Comparable.php:1723
|
| 1336 |
msgid "Border Color"
|
| 1337 |
msgstr ""
|
| 1338 |
|
| 1408 |
msgid "Form Alignment"
|
| 1409 |
msgstr ""
|
| 1410 |
|
| 1411 |
+
#: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:878, ../includes/Elements/FluentForm.php:458, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:460, ../includes/Elements/Login_Register.php:566, ../includes/Elements/Login_Register.php:1129, ../includes/Elements/Login_Register.php:1492, ../includes/Elements/Login_Register.php:1618, ../includes/Elements/Login_Register.php:1875, ../includes/Elements/Login_Register.php:2019, ../includes/Elements/Login_Register.php:2169, ../includes/Elements/Login_Register.php:2312, ../includes/Elements/Login_Register.php:2403, ../includes/Elements/Login_Register.php:2501, ../includes/Elements/Login_Register.php:2703, ../includes/Elements/Login_Register.php:2748, ../includes/Elements/Login_Register.php:2780, ../includes/Elements/Login_Register.php:3014, ../includes/Elements/Login_Register.php:3176, ../includes/Elements/Login_Register.php:3475, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:87, ../includes/Elements/Pricing_Table.php:463, ../includes/Elements/Product_Grid.php:250, ../includes/Elements/Simple_Menu.php:356, ../includes/Elements/Simple_Menu.php:482, ../includes/Elements/Simple_Menu.php:842, ../includes/Elements/Simple_Menu.php:1153, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:122, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:558, ../includes/Traits/Controls.php:1639, ../includes/Traits/Login_Registration.php:581, ../includes/Traits/Woo_Product_Comparable.php:419, ../includes/Traits/Woo_Product_Comparable.php:533, ../includes/Traits/Woo_Product_Comparable.php:624, ../includes/Traits/Woo_Product_Comparable.php:693, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:5, ../includes/Template/Post-Timeline/default.php:3, ../includes/Template/Woo-Product-Gallery/default.php:3
|
| 1412 |
msgid "Default"
|
| 1413 |
msgstr ""
|
| 1414 |
|
| 1548 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
| 1549 |
msgstr ""
|
| 1550 |
|
| 1551 |
+
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../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:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1031, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Event_Calendar.php:1221, ../includes/Elements/Event_Calendar.php:1587, ../includes/Elements/Event_Calendar.php:1696, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2060, ../includes/Elements/Filterable_Gallery.php:2281, ../includes/Elements/Flip_Box.php:1379, ../includes/Elements/Flip_Box.php:1439, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1936, ../includes/Elements/Pricing_Table.php:2005, ../includes/Elements/Product_Grid.php:1529, ../includes/Elements/Product_Grid.php:1544, ../includes/Elements/Product_Grid.php:1604, ../includes/Elements/Product_Grid.php:1618, ../includes/Elements/Product_Grid.php:2903, ../includes/Elements/Product_Grid.php:2960, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:402, ../includes/Elements/Twitter_Feed.php:654, ../includes/Elements/Woo_Cart.php:1281, ../includes/Elements/Woo_Cart.php:1438, ../includes/Elements/Woo_Cart.php:1670, ../includes/Elements/Woo_Cart.php:2268, ../includes/Elements/Woo_Cart.php:2350, ../includes/Elements/Woo_Cart.php:2438, ../includes/Elements/Woo_Checkout.php:1781, ../includes/Elements/Woo_Checkout.php:1825, ../includes/Elements/Woo_Checkout.php:1869, ../includes/Elements/Woo_Product_Carousel.php:1998, ../includes/Elements/Woo_Product_Carousel.php:2055, ../includes/Elements/Woo_Product_Gallery.php:1027, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1094, ../includes/Elements/Woo_Product_Gallery.php:1106, ../includes/Elements/Woo_Product_Gallery.php:1152, ../includes/Elements/Woo_Product_Gallery.php:1319, ../includes/Elements/Woo_Product_Gallery.php:1353, ../includes/Elements/Woo_Product_Gallery.php:1391, ../includes/Elements/Woo_Product_Gallery.php:2241, ../includes/Elements/Woo_Product_Gallery.php:2298, ../includes/Traits/Controls.php:1311, ../includes/Traits/Controls.php:1365, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1662, ../includes/Traits/Woo_Product_Comparable.php:1711
|
| 1552 |
msgid "Background"
|
| 1553 |
msgstr ""
|
| 1554 |
|
| 2748 |
msgid "Columns"
|
| 2749 |
msgstr ""
|
| 2750 |
|
| 2751 |
+
#: ../includes/Elements/Facebook_Feed.php:196, ../includes/Elements/Product_Grid.php:290, ../includes/Elements/Product_Grid.php:312, ../includes/Elements/Testimonial.php:195, ../includes/Elements/Woo_Product_Carousel.php:356, ../includes/Elements/Woo_Product_Carousel.php:453, ../includes/Elements/Woo_Product_Gallery.php:342, ../includes/Traits/Controls.php:523, ../includes/Traits/Controls.php:1065
|
| 2752 |
msgid "1"
|
| 2753 |
msgstr ""
|
| 2754 |
|
| 2755 |
+
#: ../includes/Elements/Facebook_Feed.php:197, ../includes/Elements/Product_Grid.php:291, ../includes/Elements/Product_Grid.php:313, ../includes/Elements/Testimonial.php:196, ../includes/Elements/Woo_Product_Carousel.php:357, ../includes/Elements/Woo_Product_Carousel.php:454, ../includes/Elements/Woo_Product_Gallery.php:343, ../includes/Traits/Controls.php:524, ../includes/Traits/Controls.php:1066
|
| 2756 |
msgid "2"
|
| 2757 |
msgstr ""
|
| 2758 |
|
| 2759 |
+
#: ../includes/Elements/Facebook_Feed.php:198, ../includes/Elements/Product_Grid.php:292, ../includes/Elements/Testimonial.php:197, ../includes/Elements/Woo_Product_Carousel.php:358, ../includes/Elements/Woo_Product_Carousel.php:455, ../includes/Elements/Woo_Product_Gallery.php:344, ../includes/Traits/Controls.php:525, ../includes/Traits/Controls.php:1067
|
| 2760 |
msgid "3"
|
| 2761 |
msgstr ""
|
| 2762 |
|
| 3104 |
msgid "Framed"
|
| 3105 |
msgstr ""
|
| 3106 |
|
| 3107 |
+
#: ../includes/Elements/Feature_List.php:307, ../includes/Elements/Flip_Box.php:338, ../includes/Elements/Flip_Box.php:569, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:749, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Tooltip.php:290, ../includes/Elements/Twitter_Feed.php:365, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1763
|
| 3108 |
msgid "Top"
|
| 3109 |
msgstr ""
|
| 3110 |
|
| 3348 |
msgid "Gallery Link Button?"
|
| 3349 |
msgstr ""
|
| 3350 |
|
| 3351 |
+
#: ../includes/Elements/Filterable_Gallery.php:660, ../includes/Elements/Filterable_Gallery.php:667, ../includes/Elements/Filterable_Gallery.php:2451, ../includes/Traits/Controls.php:1436
|
| 3352 |
msgid "Load More Button"
|
| 3353 |
msgstr ""
|
| 3354 |
|
| 3560 |
msgid "Middle"
|
| 3561 |
msgstr ""
|
| 3562 |
|
| 3563 |
+
#: ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:577, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Twitter_Feed.php:373, ../includes/Extensions/Reading_Progress.php:116, ../includes/Extensions/Scroll_to_Top.php:129, ../includes/Traits/Controls.php:1767
|
| 3564 |
msgid "Bottom"
|
| 3565 |
msgstr ""
|
| 3566 |
|
| 5159 |
msgid "Meta Style"
|
| 5160 |
msgstr ""
|
| 5161 |
|
| 5162 |
+
#: ../includes/Elements/Post_Grid.php:568, ../includes/Elements/Post_Grid.php:580, ../includes/Traits/Controls.php:1093
|
| 5163 |
msgid "Meta Position"
|
| 5164 |
msgstr ""
|
| 5165 |
|
| 5695 |
msgid "Products Count"
|
| 5696 |
msgstr ""
|
| 5697 |
|
| 5698 |
+
#: ../includes/Elements/Product_Grid.php:407, ../includes/Elements/Woo_Product_Carousel.php:757, ../includes/Elements/Woo_Product_Gallery.php:426, ../includes/Traits/Controls.php:165, ../includes/Traits/Controls.php:295, ../includes/Traits/Controls.php:1679, ../includes/Traits/Controls.php:1718, ../includes/Traits/Controls.php:1781, ../includes/Traits/Controls.php:1819
|
| 5699 |
msgid "Offset"
|
| 5700 |
msgstr ""
|
| 5701 |
|
| 6127 |
msgid "Sticky"
|
| 6128 |
msgstr ""
|
| 6129 |
|
| 6130 |
+
#: ../includes/Elements/Sticky_Video.php:116, ../includes/Elements/Woo_Product_Carousel.php:2109, ../includes/Elements/Woo_Product_Gallery.php:176, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Scroll_to_Top.php:111, ../includes/Extensions/Table_of_Content.php:457, ../includes/Traits/Controls.php:1635, ../includes/Traits/Woo_Product_Comparable.php:1473
|
| 6131 |
msgid "Position"
|
| 6132 |
msgstr ""
|
| 6133 |
|
| 6659 |
msgid "Card Settings"
|
| 6660 |
msgstr ""
|
| 6661 |
|
| 6662 |
+
#: ../includes/Elements/Twitter_Feed.php:244, ../includes/Traits/Controls.php:1109
|
| 6663 |
msgid "Show Avatar"
|
| 6664 |
msgstr ""
|
| 6665 |
|
| 6666 |
+
#: ../includes/Elements/Twitter_Feed.php:256, ../includes/Traits/Controls.php:1140
|
| 6667 |
msgid "Show Date"
|
| 6668 |
msgstr ""
|
| 6669 |
|
| 7207 |
msgid "Image Stretch"
|
| 7208 |
msgstr ""
|
| 7209 |
|
| 7210 |
+
#: ../includes/Elements/Woo_Product_Carousel.php:337, ../includes/Traits/Controls.php:1028, ../includes/Traits/Controls.php:1044
|
| 7211 |
msgid "Show Terms From"
|
| 7212 |
msgstr ""
|
| 7213 |
|
| 7214 |
+
#: ../includes/Elements/Woo_Product_Carousel.php:340, ../includes/Traits/Controls.php:1047
|
| 7215 |
msgid "Category"
|
| 7216 |
msgstr ""
|
| 7217 |
|
| 7218 |
+
#: ../includes/Elements/Woo_Product_Carousel.php:341, ../includes/Traits/Controls.php:1048
|
| 7219 |
msgid "Tags"
|
| 7220 |
msgstr ""
|
| 7221 |
|
| 7222 |
+
#: ../includes/Elements/Woo_Product_Carousel.php:353, ../includes/Traits/Controls.php:1062
|
| 7223 |
msgid "Max Terms to Show"
|
| 7224 |
msgstr ""
|
| 7225 |
|
| 7226 |
+
#: ../includes/Elements/Woo_Product_Carousel.php:370, ../includes/Traits/Controls.php:1907
|
| 7227 |
msgid "Not Found Message"
|
| 7228 |
msgstr ""
|
| 7229 |
|
| 7739 |
msgid "Login | Register Settings updated"
|
| 7740 |
msgstr ""
|
| 7741 |
|
| 7742 |
+
#: ../includes/Traits/Admin.php:256
|
| 7743 |
msgid "Ok, you deserve it!"
|
| 7744 |
msgstr ""
|
| 7745 |
|
| 7746 |
+
#: ../includes/Traits/Admin.php:261
|
| 7747 |
msgid "I already did"
|
| 7748 |
msgstr ""
|
| 7749 |
|
| 7750 |
+
#: ../includes/Traits/Admin.php:269
|
| 7751 |
msgid "Maybe Later"
|
| 7752 |
msgstr ""
|
| 7753 |
|
| 7754 |
+
#: ../includes/Traits/Admin.php:277
|
| 7755 |
msgid "I need help"
|
| 7756 |
msgstr ""
|
| 7757 |
|
| 7758 |
+
#: ../includes/Traits/Admin.php:282
|
| 7759 |
msgid "Never show again"
|
| 7760 |
msgstr ""
|
| 7761 |
|
| 7762 |
+
#: ../includes/Traits/Admin.php:294
|
| 7763 |
msgid "We hope you're enjoying Essential Addons for Elementor! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
| 7764 |
msgstr ""
|
| 7765 |
|
| 7766 |
+
#: ../includes/Traits/Admin.php:305
|
| 7767 |
msgid "You are using an incompatible version of Essential Addons PRO. Please update to v4.0.0+. If you do not see automatic update, <a href=\"https://essential-addons.com/elementor/docs/manually-update-essential-addons-pro/\" target=\"_blank\">Follow manual update guide.</a>"
|
| 7768 |
msgstr ""
|
| 7769 |
|
| 7919 |
msgid "Show Read More Button"
|
| 7920 |
msgstr ""
|
| 7921 |
|
| 7922 |
+
#: ../includes/Traits/Controls.php:996
|
| 7923 |
msgid "Show Post Terms"
|
| 7924 |
msgstr ""
|
| 7925 |
|
| 7926 |
+
#: ../includes/Traits/Controls.php:1081
|
| 7927 |
msgid "Show Meta"
|
| 7928 |
msgstr ""
|
| 7929 |
|
| 7930 |
+
#: ../includes/Traits/Controls.php:1097
|
| 7931 |
msgid "Entry Header"
|
| 7932 |
msgstr ""
|
| 7933 |
|
| 7934 |
+
#: ../includes/Traits/Controls.php:1098
|
| 7935 |
msgid "Entry Footer"
|
| 7936 |
msgstr ""
|
| 7937 |
|
| 7938 |
+
#: ../includes/Traits/Controls.php:1125
|
| 7939 |
msgid "Show Author Name"
|
| 7940 |
msgstr ""
|
| 7941 |
|
| 7942 |
+
#: ../includes/Traits/Controls.php:1243
|
| 7943 |
msgid "Read More Button Style"
|
| 7944 |
msgstr ""
|
| 7945 |
|
| 7946 |
+
#: ../includes/Traits/Controls.php:1640
|
| 7947 |
msgid "Absolute"
|
| 7948 |
msgstr ""
|
| 7949 |
|
| 7950 |
+
#: ../includes/Traits/Controls.php:1654
|
| 7951 |
msgid "Horizontal Orientation"
|
| 7952 |
msgstr ""
|
| 7953 |
|
| 7954 |
+
#: ../includes/Traits/Controls.php:1757
|
| 7955 |
msgid "Vertical Orientation"
|
| 7956 |
msgstr ""
|
| 7957 |
|
| 7958 |
+
#: ../includes/Traits/Controls.php:1876
|
| 7959 |
msgid "<strong>Ninja Tables</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=Ninja+Tables&tab=search&type=term\" target=\"_blank\">Ninja Tables</a> first."
|
| 7960 |
msgstr ""
|
| 7961 |
|
| 7962 |
+
#: ../includes/Traits/Controls.php:1863
|
| 7963 |
msgid "Table ID"
|
| 7964 |
msgstr ""
|
| 7965 |
|
| 7966 |
+
#: ../includes/Traits/Controls.php:1897
|
| 7967 |
msgid "EventON (Pro) "
|
| 7968 |
msgstr ""
|
| 7969 |
|
| 7970 |
+
#: ../includes/Traits/Controls.php:1895
|
| 7971 |
msgid "EventON"
|
| 7972 |
msgstr ""
|
| 7973 |
|
| 7974 |
+
#: ../includes/Traits/Controls.php:1914
|
| 7975 |
msgid "Style the message when no posts are found."
|
| 7976 |
msgstr ""
|
| 7977 |
|
| 8135 |
msgid "Post ID is missing"
|
| 8136 |
msgstr ""
|
| 8137 |
|
| 8138 |
+
#: ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Helper.php:57, ../includes/Traits/Helper.php:962, ../includes/Traits/Login_Registration.php:62, ../includes/Traits/Login_Registration.php:227, ../includes/Traits/Woo_Product_Comparable.php:2133
|
| 8139 |
msgid "Widget ID is missing"
|
| 8140 |
msgstr ""
|
| 8141 |
|
| 8142 |
+
#: ../includes/Traits/Helper.php:29, ../includes/Traits/Helper.php:934, ../includes/Traits/Login_Registration.php:79, ../includes/Traits/Login_Registration.php:200
|
| 8143 |
msgid "Insecure form submitted without security token"
|
| 8144 |
msgstr ""
|
| 8145 |
|
| 8146 |
+
#: ../includes/Traits/Helper.php:37, ../includes/Traits/Helper.php:942, ../includes/Traits/Login_Registration.php:92, ../includes/Traits/Login_Registration.php:210, ../includes/Traits/Woo_Product_Comparable.php:2170
|
| 8147 |
msgid "Security token did not match"
|
| 8148 |
msgstr ""
|
| 8149 |
|
| 8150 |
+
#: ../includes/Traits/Helper.php:47, ../includes/Traits/Helper.php:952, ../includes/Traits/Login_Registration.php:55, ../includes/Traits/Login_Registration.php:222, ../includes/Traits/Woo_Product_Comparable.php:2128
|
| 8151 |
msgid "Page ID is missing"
|
| 8152 |
msgstr ""
|
| 8153 |
|
| 8154 |
+
#: ../includes/Traits/Helper.php:67, ../includes/Traits/Helper.php:971
|
| 8155 |
msgid "Widget settings are not found. Did you save the widget before using load more??"
|
| 8156 |
msgstr ""
|
| 8157 |
|
| 8163 |
msgid "%s ago"
|
| 8164 |
msgstr ""
|
| 8165 |
|
| 8166 |
+
#: ../includes/Traits/Helper.php:808
|
| 8167 |
msgid "1,700+ Stunning Templates"
|
| 8168 |
msgstr ""
|
| 8169 |
|
| 8170 |
+
#: ../includes/Traits/Helper.php:809
|
| 8171 |
msgid "Supports Elementor & Gutenberg"
|
| 8172 |
msgstr ""
|
| 8173 |
|
| 8174 |
+
#: ../includes/Traits/Helper.php:810
|
| 8175 |
msgid "Powering up 100,000+ Websites"
|
| 8176 |
msgstr ""
|
| 8177 |
|
| 8178 |
+
#: ../includes/Traits/Helper.php:811
|
| 8179 |
msgid "Cloud Collaboration with Team"
|
| 8180 |
msgstr ""
|
| 8181 |
|
| 8182 |
+
#: ../includes/Traits/Helper.php:820
|
| 8183 |
msgid "Don’t Show This Again"
|
| 8184 |
msgstr ""
|
| 8185 |
|
| 8186 |
+
#: ../includes/Traits/Helper.php:832
|
| 8187 |
msgid "Activate Templately"
|
| 8188 |
msgstr ""
|
| 8189 |
|
| 8190 |
+
#: ../includes/Traits/Helper.php:829
|
| 8191 |
msgid "Activated Templately"
|
| 8192 |
msgstr ""
|
| 8193 |
|
| 8194 |
+
#: ../includes/Traits/Helper.php:835, ../includes/templates/admin/popup.php:169
|
| 8195 |
msgid "Submit"
|
| 8196 |
msgstr ""
|
| 8197 |
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
|
|
| 4 |
Requires at least: 5.0
|
| 5 |
Tested up to: 5.9
|
| 6 |
Requires PHP: 5.6
|
| 7 |
-
Stable tag: 5.0.
|
| 8 |
License: GPLv3
|
| 9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
| 10 |
|
|
@@ -241,6 +241,14 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
| 241 |
|
| 242 |
== Changelog ==
|
| 243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 244 |
= 5.0.5 - 28/01/2022 =
|
| 245 |
|
| 246 |
- Improved: Enhanced Security to prevent inclusion of unwanted file form remote server through ajax request
|
| 4 |
Requires at least: 5.0
|
| 5 |
Tested up to: 5.9
|
| 6 |
Requires PHP: 5.6
|
| 7 |
+
Stable tag: 5.0.6
|
| 8 |
License: GPLv3
|
| 9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
| 10 |
|
| 241 |
|
| 242 |
== Changelog ==
|
| 243 |
|
| 244 |
+
= 5.0.6 - 02/02/2022 =
|
| 245 |
+
|
| 246 |
+
- Improved: Data sanitization, validation & escaping for Security Enhancement
|
| 247 |
+
- Fixed: JS error when Anchor tags are used without the href attribute
|
| 248 |
+
- Fixed: EA Product Grid | Product Grid thumbnails not using the image size selected
|
| 249 |
+
- Fixed: EA Woo Product Carousel | not fetching the variable products when Sale Items option is selected
|
| 250 |
+
- Few minor bug fixes & improvements
|
| 251 |
+
|
| 252 |
= 5.0.5 - 28/01/2022 =
|
| 253 |
|
| 254 |
- Improved: Enhanced Security to prevent inclusion of unwanted file form remote server through ajax request
|
