Version Description
- August 4, 2021 =
- Added: Posts Link target option for title and thumbnail
- Added: Posts Center Mode option for Carousel layout
- Added: Posts Integration for The Events Calendar plugin
- Fixed: Posts - Non-Ajax Pagination was not working
- Fixed: JS file was not loading through wrapper link extension
Download this release
Release Info
Developer | ideaboxcreations |
Plugin | PowerPack Addons for Elementor (Instagram Feed, Pricing Table, Forms Stylers, Display Conditions, Free Elementor Widgets and Elementor Templates) |
Version | 2.5.3 |
Comparing to | |
See all releases |
Code changes from version 2.5.2 to 2.5.3
- base/powerpack-widget.php +1 -1
- changelog.txt +8 -0
- classes/class-pp-helper.php +4 -0
- extensions/wrapper-link.php +11 -3
- languages/powerpack.pot +536 -531
- modules/business-hours/widgets/business-hours.php +0 -14
- modules/buttons/widgets/buttons.php +0 -14
- modules/content-ticker/widgets/content-ticker.php +0 -10
- modules/counter/widgets/counter.php +0 -14
- modules/divider/widgets/divider.php +0 -14
- modules/flipbox/widgets/flipbox.php +0 -13
- modules/headings/widgets/dual-heading.php +0 -14
- modules/headings/widgets/fancy-heading.php +0 -14
- modules/hotspots/widgets/hotspots.php +0 -14
- modules/icon-list/widgets/icon-list.php +0 -14
- modules/image-comparison/widgets/image-comparison.php +0 -14
- modules/info-box/widgets/info-box-carousel.php +0 -14
- modules/info-box/widgets/info-box.php +0 -14
- modules/info-list/widgets/info-list.php +0 -14
- modules/info-table/widgets/info-table.php +0 -14
- modules/link-effects/widgets/link-effects.php +0 -14
- modules/logos/widgets/logo-carousel.php +0 -14
- modules/logos/widgets/logo-grid.php +0 -14
- modules/posts/skins/skin-base.php +262 -172
- modules/posts/widgets/posts-base.php +169 -19
- modules/pricing/widgets/price-menu.php +0 -14
- modules/pricing/widgets/pricing-table.php +0 -14
- modules/promo-box/widgets/promo-box.php +0 -14
- modules/random-image/widgets/random-image.php +0 -3
- modules/scroll-image/widgets/scroll-image.php +1 -1
- modules/team-member/widgets/team-member-carousel.php +0 -13
- modules/team-member/widgets/team-member.php +0 -13
- modules/twitter/widgets/twitter-buttons.php +1 -1
- modules/twitter/widgets/twitter-grid.php +1 -1
- modules/twitter/widgets/twitter-timeline.php +1 -1
- package.json +1 -1
- powerpack-lite-elementor.php +2 -2
- readme.txt +18 -2
base/powerpack-widget.php
CHANGED
@@ -233,7 +233,7 @@ abstract class Powerpack_Widget extends Widget_Base {
|
|
233 |
|
234 |
|
235 |
/**
|
236 |
-
* Get swiper slider settings for
|
237 |
*
|
238 |
* @access public
|
239 |
* @since 2.3.2
|
233 |
|
234 |
|
235 |
/**
|
236 |
+
* Get swiper slider settings for content_template function
|
237 |
*
|
238 |
* @access public
|
239 |
* @since 2.3.2
|
changelog.txt
CHANGED
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
== 2.5.2 ==
|
2 |
Release date: July 22, 2021
|
3 |
* Fixed: Price Menu - PHP error
|
1 |
+
== 2.5.3 ==
|
2 |
+
Release date: August 4, 2021
|
3 |
+
* Added: Posts – Link target option for title and thumbnail
|
4 |
+
* Added: Posts – Center Mode option for Carousel layout
|
5 |
+
* Added: Posts – Integration for The Events Calendar plugin
|
6 |
+
* Fixed: Posts - Non-Ajax Pagination was not working
|
7 |
+
* Fixed: JS file was not loading through wrapper link extension
|
8 |
+
|
9 |
== 2.5.2 ==
|
10 |
Release date: July 22, 2021
|
11 |
* Fixed: Price Menu - PHP error
|
classes/class-pp-helper.php
CHANGED
@@ -458,4 +458,8 @@ class PP_Helper {
|
|
458 |
return in_array( strtolower( $tag ), self::ALLOWED_HTML_WRAPPER_TAGS, true ) ? $tag : 'div';
|
459 |
}
|
460 |
}
|
|
|
|
|
|
|
|
|
461 |
}
|
458 |
return in_array( strtolower( $tag ), self::ALLOWED_HTML_WRAPPER_TAGS, true ) ? $tag : 'div';
|
459 |
}
|
460 |
}
|
461 |
+
|
462 |
+
public static function is_tribe_events_post( $post_id ) {
|
463 |
+
return ( class_exists( 'Tribe__Events__Main' ) && 'tribe_events' === get_post_type( $post_id ) );
|
464 |
+
}
|
465 |
}
|
extensions/wrapper-link.php
CHANGED
@@ -38,9 +38,13 @@ class Extension_Wrapper_Link extends Extension_Base {
|
|
38 |
* @since 2.4.0
|
39 |
**/
|
40 |
public function get_script_depends() {
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
|
46 |
/**
|
@@ -190,6 +194,10 @@ class Extension_Wrapper_Link extends Extension_Base {
|
|
190 |
$link = $settings['pp_wrapper_link'];
|
191 |
|
192 |
if ( 'yes' === $settings['pp_wrapper_link_enable'] && $link['url'] ) {
|
|
|
|
|
|
|
|
|
193 |
$link_attributes = array(
|
194 |
'url' => esc_url( $link['url'] ),
|
195 |
'is_external' => esc_attr( $link['is_external'] ),
|
38 |
* @since 2.4.0
|
39 |
**/
|
40 |
public function get_script_depends() {
|
41 |
+
if ( \Elementor\Plugin::$instance->editor->is_edit_mode() || \Elementor\Plugin::$instance->preview->is_preview_mode() ) {
|
42 |
+
return array(
|
43 |
+
'powerpack-frontend',
|
44 |
+
);
|
45 |
+
}
|
46 |
+
|
47 |
+
return [];
|
48 |
}
|
49 |
|
50 |
/**
|
194 |
$link = $settings['pp_wrapper_link'];
|
195 |
|
196 |
if ( 'yes' === $settings['pp_wrapper_link_enable'] && $link['url'] ) {
|
197 |
+
if ( ! \Elementor\Plugin::$instance->editor->is_edit_mode() || ! \Elementor\Plugin::$instance->preview->is_preview_mode() ) {
|
198 |
+
wp_enqueue_script( 'powerpack-frontend' );
|
199 |
+
}
|
200 |
+
|
201 |
$link_attributes = array(
|
202 |
'url' => esc_url( $link['url'] ),
|
203 |
'is_external' => esc_attr( $link['is_external'] ),
|
languages/powerpack.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the GNU General Public License v2.0.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: PowerPack Lite for Elementor 2.5.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/powerpack-lite-for-elementor\n"
|
8 |
-
"POT-Creation-Date: 2021-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
"X-Textdomain-Support: yes\n"
|
26 |
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
27 |
|
28 |
-
#: modules/buttons/widgets/buttons.php:
|
29 |
#: modules/hotspots/widgets/hotspots.php:436
|
30 |
#: modules/info-list/widgets/info-list.php:235
|
31 |
#: modules/instafeed/widgets/instafeed.php:383
|
@@ -74,29 +74,29 @@ msgid "Cheatin’ huh?"
|
|
74 |
msgstr ""
|
75 |
|
76 |
#: base/powerpack-widget.php:44 extensions/upgrade-pro.php:79
|
77 |
-
#: modules/buttons/widgets/buttons.php:
|
78 |
#: modules/caldera-forms/widgets/caldera-forms.php:279
|
79 |
#: modules/contact-form-seven/widgets/contact-form-7.php:252
|
80 |
#: modules/content-reveal/widgets/content-reveal.php:443
|
81 |
#: modules/formidable-forms/widgets/formidable-forms.php:291
|
82 |
#: modules/gravity-forms/widgets/gravity-forms.php:364
|
83 |
#: modules/ninja-forms/widgets/ninja-forms.php:264
|
84 |
-
#: modules/posts/skins/skin-base.php:
|
85 |
#: modules/scroll-image/widgets/scroll-image.php:315
|
86 |
msgid "Get PowerPack Pro"
|
87 |
msgstr ""
|
88 |
|
89 |
#: base/powerpack-widget.php:50 extensions/upgrade-pro.php:89
|
90 |
-
#: modules/buttons/widgets/buttons.php:
|
91 |
#: modules/caldera-forms/widgets/caldera-forms.php:289
|
92 |
#: modules/contact-form-seven/widgets/contact-form-7.php:262
|
93 |
#: modules/content-reveal/widgets/content-reveal.php:453
|
94 |
#: modules/formidable-forms/widgets/formidable-forms.php:301
|
95 |
#: modules/gravity-forms/widgets/gravity-forms.php:374
|
96 |
#: modules/ninja-forms/widgets/ninja-forms.php:274
|
97 |
-
#: modules/posts/skins/skin-base.php:
|
98 |
-
#: modules/posts/skins/skin-base.php:
|
99 |
-
#: modules/posts/skins/skin-base.php:
|
100 |
#: modules/scroll-image/widgets/scroll-image.php:325
|
101 |
msgid ""
|
102 |
"Upgrade to %1$s Pro Version %2$s for 70+ widgets, exciting extensions and "
|
@@ -151,8 +151,8 @@ msgid "Business Hours"
|
|
151 |
msgstr ""
|
152 |
|
153 |
#: classes/class-pp-config.php:60 includes/helper-functions.php:403
|
154 |
-
#: modules/buttons/widgets/buttons.php:
|
155 |
-
#: modules/buttons/widgets/buttons.php:
|
156 |
#: modules/twitter/widgets/twitter-buttons.php:74
|
157 |
msgid "Buttons"
|
158 |
msgstr ""
|
@@ -290,7 +290,7 @@ msgid "Posts"
|
|
290 |
msgstr ""
|
291 |
|
292 |
#: classes/class-pp-config.php:249 includes/helper-functions.php:388
|
293 |
-
#: modules/pricing/widgets/price-menu.php:
|
294 |
msgid "Price Menu"
|
295 |
msgstr ""
|
296 |
|
@@ -1251,22 +1251,22 @@ msgstr ""
|
|
1251 |
msgid "Adds upgrade PowerPack notice to all widgets of PowerPack."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: extensions/wrapper-link.php:
|
1255 |
msgid "Adds link around sections, columns and widgets."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: extensions/wrapper-link.php:
|
1259 |
msgid "Wrapper Link"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: extensions/wrapper-link.php:
|
1263 |
#: modules/business-hours/widgets/business-hours.php:208
|
1264 |
#: modules/business-hours/widgets/business-hours.php:265
|
1265 |
#: modules/business-hours/widgets/business-hours.php:361
|
1266 |
#: modules/business-hours/widgets/business-hours.php:404
|
1267 |
#: modules/business-hours/widgets/business-hours.php:488
|
1268 |
#: modules/business-hours/widgets/business-hours.php:618
|
1269 |
-
#: modules/buttons/widgets/buttons.php:
|
1270 |
#: modules/caldera-forms/widgets/caldera-forms.php:140
|
1271 |
#: modules/caldera-forms/widgets/caldera-forms.php:910
|
1272 |
#: modules/contact-form-seven/widgets/contact-form-7.php:699
|
@@ -1328,25 +1328,26 @@ msgstr ""
|
|
1328 |
#: modules/logos/widgets/logo-grid.php:627
|
1329 |
#: modules/ninja-forms/widgets/ninja-forms.php:119
|
1330 |
#: modules/ninja-forms/widgets/ninja-forms.php:878
|
1331 |
-
#: modules/posts/skins/skin-base.php:
|
1332 |
-
#: modules/posts/skins/skin-base.php:
|
1333 |
-
#: modules/posts/skins/skin-base.php:
|
1334 |
-
#: modules/posts/skins/skin-base.php:
|
1335 |
-
#: modules/posts/skins/skin-base.php:
|
1336 |
-
#: modules/posts/skins/skin-base.php:
|
1337 |
-
#: modules/posts/skins/skin-base.php:
|
1338 |
-
#: modules/posts/skins/skin-base.php:
|
1339 |
-
#: modules/posts/skins/skin-base.php:
|
1340 |
-
#: modules/posts/skins/skin-base.php:
|
1341 |
-
#: modules/posts/skins/skin-base.php:
|
1342 |
-
#: modules/posts/skins/skin-base.php:
|
1343 |
-
#: modules/posts/skins/skin-base.php:
|
|
|
1344 |
#: modules/posts/widgets/posts-base.php:484
|
1345 |
#: modules/posts/widgets/posts-base.php:500
|
1346 |
#: modules/posts/widgets/posts-base.php:530
|
1347 |
#: modules/posts/widgets/posts-base.php:577
|
1348 |
-
#: modules/pricing/widgets/price-menu.php:
|
1349 |
-
#: modules/pricing/widgets/price-menu.php:
|
1350 |
#: modules/pricing/widgets/pricing-table.php:442
|
1351 |
#: modules/pricing/widgets/pricing-table.php:562
|
1352 |
#: modules/pricing/widgets/pricing-table.php:629
|
@@ -1372,14 +1373,14 @@ msgstr ""
|
|
1372 |
msgid "Yes"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: extensions/wrapper-link.php:
|
1376 |
#: modules/business-hours/widgets/business-hours.php:207
|
1377 |
#: modules/business-hours/widgets/business-hours.php:266
|
1378 |
#: modules/business-hours/widgets/business-hours.php:360
|
1379 |
#: modules/business-hours/widgets/business-hours.php:405
|
1380 |
#: modules/business-hours/widgets/business-hours.php:489
|
1381 |
#: modules/business-hours/widgets/business-hours.php:619
|
1382 |
-
#: modules/buttons/widgets/buttons.php:
|
1383 |
#: modules/caldera-forms/widgets/caldera-forms.php:141
|
1384 |
#: modules/caldera-forms/widgets/caldera-forms.php:911
|
1385 |
#: modules/contact-form-seven/widgets/contact-form-7.php:700
|
@@ -1441,25 +1442,26 @@ msgstr ""
|
|
1441 |
#: modules/logos/widgets/logo-grid.php:628
|
1442 |
#: modules/ninja-forms/widgets/ninja-forms.php:120
|
1443 |
#: modules/ninja-forms/widgets/ninja-forms.php:879
|
1444 |
-
#: modules/posts/skins/skin-base.php:
|
1445 |
-
#: modules/posts/skins/skin-base.php:
|
1446 |
-
#: modules/posts/skins/skin-base.php:
|
1447 |
-
#: modules/posts/skins/skin-base.php:
|
1448 |
-
#: modules/posts/skins/skin-base.php:
|
1449 |
-
#: modules/posts/skins/skin-base.php:
|
1450 |
-
#: modules/posts/skins/skin-base.php:
|
1451 |
-
#: modules/posts/skins/skin-base.php:
|
1452 |
-
#: modules/posts/skins/skin-base.php:
|
1453 |
-
#: modules/posts/skins/skin-base.php:
|
1454 |
-
#: modules/posts/skins/skin-base.php:
|
1455 |
-
#: modules/posts/skins/skin-base.php:
|
1456 |
-
#: modules/posts/skins/skin-base.php:
|
|
|
1457 |
#: modules/posts/widgets/posts-base.php:485
|
1458 |
#: modules/posts/widgets/posts-base.php:501
|
1459 |
#: modules/posts/widgets/posts-base.php:531
|
1460 |
#: modules/posts/widgets/posts-base.php:578
|
1461 |
-
#: modules/pricing/widgets/price-menu.php:
|
1462 |
-
#: modules/pricing/widgets/price-menu.php:
|
1463 |
#: modules/pricing/widgets/pricing-table.php:443
|
1464 |
#: modules/pricing/widgets/pricing-table.php:563
|
1465 |
#: modules/pricing/widgets/pricing-table.php:630
|
@@ -1485,7 +1487,7 @@ msgstr ""
|
|
1485 |
msgid "No"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: extensions/wrapper-link.php:
|
1489 |
#: modules/content-ticker/widgets/content-ticker.php:516
|
1490 |
#: modules/flipbox/widgets/flipbox.php:421
|
1491 |
#: modules/headings/widgets/dual-heading.php:149
|
@@ -1504,7 +1506,7 @@ msgstr ""
|
|
1504 |
#: modules/link-effects/widgets/link-effects.php:140
|
1505 |
#: modules/logos/widgets/logo-carousel.php:195
|
1506 |
#: modules/logos/widgets/logo-grid.php:148
|
1507 |
-
#: modules/pricing/widgets/price-menu.php:
|
1508 |
#: modules/pricing/widgets/pricing-table.php:1027
|
1509 |
#: modules/promo-box/widgets/promo-box.php:386
|
1510 |
#: modules/random-image/widgets/random-image.php:298
|
@@ -1709,13 +1711,13 @@ msgstr ""
|
|
1709 |
#: modules/ninja-forms/widgets/ninja-forms.php:128
|
1710 |
#: modules/ninja-forms/widgets/ninja-forms.php:144
|
1711 |
#: modules/ninja-forms/widgets/ninja-forms.php:329
|
1712 |
-
#: modules/posts/skins/skin-base.php:
|
1713 |
-
#: modules/posts/skins/skin-base.php:
|
1714 |
#: modules/posts/widgets/posts-base.php:465
|
1715 |
-
#: modules/pricing/widgets/price-menu.php:
|
1716 |
-
#: modules/pricing/widgets/price-menu.php:109
|
1717 |
#: modules/pricing/widgets/price-menu.php:110
|
1718 |
-
#: modules/pricing/widgets/price-menu.php:
|
|
|
1719 |
#: modules/pricing/widgets/pricing-table.php:221
|
1720 |
#: modules/pricing/widgets/pricing-table.php:226
|
1721 |
#: modules/pricing/widgets/pricing-table.php:867
|
@@ -1736,9 +1738,9 @@ msgstr ""
|
|
1736 |
|
1737 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:166
|
1738 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:948
|
1739 |
-
#: modules/buttons/widgets/buttons.php:
|
1740 |
-
#: modules/buttons/widgets/buttons.php:
|
1741 |
-
#: modules/buttons/widgets/buttons.php:
|
1742 |
#: modules/content-reveal/widgets/content-reveal.php:357
|
1743 |
#: modules/content-reveal/widgets/content-reveal.php:389
|
1744 |
#: modules/content-reveal/widgets/content-reveal.php:885
|
@@ -1798,14 +1800,14 @@ msgstr ""
|
|
1798 |
|
1799 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:176
|
1800 |
#: modules/content-reveal/widgets/content-reveal.php:119
|
1801 |
-
#: modules/posts/skins/skin-base.php:
|
1802 |
msgid "Content Type"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:180
|
1806 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:193
|
1807 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1012
|
1808 |
-
#: modules/buttons/widgets/buttons.php:
|
1809 |
#: modules/content-reveal/widgets/content-reveal.php:112
|
1810 |
#: modules/content-reveal/widgets/content-reveal.php:123
|
1811 |
#: modules/content-reveal/widgets/content-reveal.php:464
|
@@ -1819,8 +1821,8 @@ msgstr ""
|
|
1819 |
#: modules/info-table/widgets/info-table.php:202
|
1820 |
#: modules/instafeed/widgets/instafeed.php:1086
|
1821 |
#: modules/logos/widgets/logo-grid.php:118
|
1822 |
-
#: modules/posts/skins/skin-base.php:
|
1823 |
-
#: modules/pricing/widgets/price-menu.php:
|
1824 |
#: modules/promo-box/widgets/promo-box.php:127
|
1825 |
#: modules/promo-box/widgets/promo-box.php:572
|
1826 |
#: modules/team-member/widgets/team-member-carousel.php:136
|
@@ -1831,8 +1833,8 @@ msgstr ""
|
|
1831 |
|
1832 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:181
|
1833 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:206
|
1834 |
-
#: modules/buttons/widgets/buttons.php:
|
1835 |
-
#: modules/buttons/widgets/buttons.php:
|
1836 |
#: modules/content-ticker/widgets/content-ticker.php:167
|
1837 |
#: modules/content-ticker/widgets/content-ticker.php:534
|
1838 |
#: modules/content-ticker/widgets/content-ticker.php:1658
|
@@ -1860,9 +1862,9 @@ msgstr ""
|
|
1860 |
#: modules/info-list/widgets/info-list.php:217
|
1861 |
#: modules/info-table/widgets/info-table.php:127
|
1862 |
#: modules/info-table/widgets/info-table.php:158
|
1863 |
-
#: modules/posts/skins/skin-base.php:
|
1864 |
-
#: modules/pricing/widgets/price-menu.php:
|
1865 |
-
#: modules/pricing/widgets/price-menu.php:
|
1866 |
#: modules/pricing/widgets/pricing-table.php:168
|
1867 |
#: modules/pricing/widgets/pricing-table.php:195
|
1868 |
#: modules/promo-box/widgets/promo-box.php:273
|
@@ -1910,7 +1912,7 @@ msgid ""
|
|
1910 |
msgstr ""
|
1911 |
|
1912 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:230
|
1913 |
-
#: modules/buttons/widgets/buttons.php:
|
1914 |
#: modules/content-ticker/widgets/content-ticker.php:205
|
1915 |
#: modules/hotspots/widgets/hotspots.php:155
|
1916 |
#: modules/icon-list/widgets/icon-list.php:274
|
@@ -1919,8 +1921,8 @@ msgstr ""
|
|
1919 |
#: modules/info-list/widgets/info-list.php:350
|
1920 |
#: modules/logos/widgets/logo-carousel.php:214
|
1921 |
#: modules/logos/widgets/logo-grid.php:402
|
1922 |
-
#: modules/posts/skins/skin-base.php:
|
1923 |
-
#: modules/pricing/widgets/price-menu.php:
|
1924 |
#: modules/random-image/widgets/random-image.php:220
|
1925 |
#: modules/scroll-image/widgets/scroll-image.php:125
|
1926 |
#: modules/team-member/widgets/team-member-carousel.php:414
|
@@ -2142,8 +2144,8 @@ msgstr ""
|
|
2142 |
#: modules/link-effects/widgets/link-effects.php:229
|
2143 |
#: modules/logos/widgets/logo-carousel.php:489
|
2144 |
#: modules/logos/widgets/logo-grid.php:444
|
2145 |
-
#: modules/posts/skins/skin-base.php:
|
2146 |
-
#: modules/pricing/widgets/price-menu.php:
|
2147 |
#: modules/pricing/widgets/pricing-table.php:1069
|
2148 |
#: modules/promo-box/widgets/promo-box.php:418
|
2149 |
#: modules/random-image/widgets/random-image.php:346
|
@@ -2173,9 +2175,9 @@ msgstr ""
|
|
2173 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1152
|
2174 |
#: modules/business-hours/widgets/business-hours.php:572
|
2175 |
#: modules/business-hours/widgets/business-hours.php:885
|
2176 |
-
#: modules/buttons/widgets/buttons.php:
|
2177 |
-
#: modules/buttons/widgets/buttons.php:
|
2178 |
-
#: modules/buttons/widgets/buttons.php:
|
2179 |
#: modules/caldera-forms/widgets/caldera-forms.php:553
|
2180 |
#: modules/caldera-forms/widgets/caldera-forms.php:947
|
2181 |
#: modules/caldera-forms/widgets/caldera-forms.php:1177
|
@@ -2229,13 +2231,13 @@ msgstr ""
|
|
2229 |
#: modules/ninja-forms/widgets/ninja-forms.php:517
|
2230 |
#: modules/ninja-forms/widgets/ninja-forms.php:915
|
2231 |
#: modules/ninja-forms/widgets/ninja-forms.php:1146
|
2232 |
-
#: modules/posts/skins/skin-base.php:
|
2233 |
-
#: modules/posts/skins/skin-base.php:
|
2234 |
-
#: modules/posts/skins/skin-base.php:
|
2235 |
-
#: modules/posts/skins/skin-base.php:
|
2236 |
-
#: modules/posts/skins/skin-base.php:
|
2237 |
-
#: modules/posts/skins/skin-base.php:
|
2238 |
-
#: modules/posts/skins/skin-base.php:
|
2239 |
#: modules/pricing/widgets/pricing-table.php:364
|
2240 |
#: modules/pricing/widgets/pricing-table.php:2445
|
2241 |
#: modules/promo-box/widgets/promo-box.php:781
|
@@ -2260,7 +2262,7 @@ msgstr ""
|
|
2260 |
#: modules/gravity-forms/widgets/gravity-forms.php:963
|
2261 |
#: modules/info-box/widgets/info-box-carousel.php:1379
|
2262 |
#: modules/info-box/widgets/info-box.php:1322
|
2263 |
-
#: modules/pricing/widgets/price-menu.php:
|
2264 |
#: modules/promo-box/widgets/promo-box.php:1029
|
2265 |
#: modules/promo-box/widgets/promo-box.php:1262
|
2266 |
msgid "Border Type"
|
@@ -2268,8 +2270,8 @@ msgstr ""
|
|
2268 |
|
2269 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:590
|
2270 |
#: modules/business-hours/widgets/business-hours.php:814
|
2271 |
-
#: modules/buttons/widgets/buttons.php:
|
2272 |
-
#: modules/buttons/widgets/buttons.php:
|
2273 |
#: modules/content-ticker/widgets/content-ticker.php:165
|
2274 |
#: modules/counter/widgets/counter.php:268
|
2275 |
#: modules/flipbox/widgets/flipbox.php:146
|
@@ -2290,9 +2292,9 @@ msgstr ""
|
|
2290 |
#: modules/info-table/widgets/info-table.php:119
|
2291 |
#: modules/info-table/widgets/info-table.php:317
|
2292 |
#: modules/instafeed/widgets/instafeed.php:255
|
2293 |
-
#: modules/posts/skins/skin-base.php:
|
2294 |
#: modules/posts/widgets/posts-base.php:369
|
2295 |
-
#: modules/pricing/widgets/price-menu.php:
|
2296 |
#: modules/pricing/widgets/pricing-table.php:160
|
2297 |
#: modules/pricing/widgets/pricing-table.php:305
|
2298 |
#: modules/pricing/widgets/pricing-table.php:1007
|
@@ -2317,8 +2319,8 @@ msgstr ""
|
|
2317 |
#: modules/info-box/widgets/info-box.php:1327
|
2318 |
#: modules/info-list/widgets/info-list.php:570
|
2319 |
#: modules/instafeed/widgets/instafeed.php:1395
|
2320 |
-
#: modules/pricing/widgets/price-menu.php:
|
2321 |
-
#: modules/pricing/widgets/price-menu.php:
|
2322 |
#: modules/promo-box/widgets/promo-box.php:1033
|
2323 |
#: modules/promo-box/widgets/promo-box.php:1266
|
2324 |
#: modules/team-member/widgets/team-member-carousel.php:1233
|
@@ -2339,8 +2341,8 @@ msgstr ""
|
|
2339 |
#: modules/info-box/widgets/info-box-carousel.php:1385
|
2340 |
#: modules/info-box/widgets/info-box.php:1328
|
2341 |
#: modules/info-list/widgets/info-list.php:571
|
2342 |
-
#: modules/pricing/widgets/price-menu.php:
|
2343 |
-
#: modules/pricing/widgets/price-menu.php:
|
2344 |
#: modules/promo-box/widgets/promo-box.php:1034
|
2345 |
#: modules/promo-box/widgets/promo-box.php:1267
|
2346 |
#: modules/team-member/widgets/team-member-carousel.php:1236
|
@@ -2362,8 +2364,8 @@ msgstr ""
|
|
2362 |
#: modules/info-box/widgets/info-box-carousel.php:1386
|
2363 |
#: modules/info-box/widgets/info-box.php:1329
|
2364 |
#: modules/info-list/widgets/info-list.php:572
|
2365 |
-
#: modules/pricing/widgets/price-menu.php:
|
2366 |
-
#: modules/pricing/widgets/price-menu.php:
|
2367 |
#: modules/promo-box/widgets/promo-box.php:1035
|
2368 |
#: modules/promo-box/widgets/promo-box.php:1268
|
2369 |
#: modules/team-member/widgets/team-member-carousel.php:1234
|
@@ -2385,7 +2387,7 @@ msgstr ""
|
|
2385 |
#: modules/info-box/widgets/info-box.php:1344
|
2386 |
#: modules/logos/widgets/logo-grid.php:210
|
2387 |
#: modules/ninja-forms/widgets/ninja-forms.php:940
|
2388 |
-
#: modules/pricing/widgets/price-menu.php:
|
2389 |
#: modules/wpforms/widgets/wpforms.php:873
|
2390 |
msgid "Border Width"
|
2391 |
msgstr ""
|
@@ -2397,8 +2399,8 @@ msgstr ""
|
|
2397 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:932
|
2398 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1267
|
2399 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1326
|
2400 |
-
#: modules/buttons/widgets/buttons.php:
|
2401 |
-
#: modules/buttons/widgets/buttons.php:
|
2402 |
#: modules/caldera-forms/widgets/caldera-forms.php:994
|
2403 |
#: modules/caldera-forms/widgets/caldera-forms.php:1314
|
2404 |
#: modules/contact-form-seven/widgets/contact-form-7.php:837
|
@@ -2443,14 +2445,14 @@ msgstr ""
|
|
2443 |
#: modules/logos/widgets/logo-grid.php:195
|
2444 |
#: modules/ninja-forms/widgets/ninja-forms.php:962
|
2445 |
#: modules/ninja-forms/widgets/ninja-forms.php:1264
|
2446 |
-
#: modules/posts/skins/skin-base.php:
|
2447 |
-
#: modules/posts/skins/skin-base.php:
|
2448 |
-
#: modules/posts/skins/skin-base.php:
|
2449 |
-
#: modules/posts/skins/skin-base.php:
|
2450 |
-
#: modules/posts/skins/skin-base.php:
|
2451 |
-
#: modules/posts/skins/skin-base.php:
|
2452 |
-
#: modules/posts/skins/skin-base.php:
|
2453 |
-
#: modules/pricing/widgets/price-menu.php:
|
2454 |
#: modules/promo-box/widgets/promo-box.php:1107
|
2455 |
#: modules/promo-box/widgets/promo-box.php:1340
|
2456 |
#: modules/promo-box/widgets/promo-box.php:1601
|
@@ -2468,9 +2470,9 @@ msgstr ""
|
|
2468 |
|
2469 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:645
|
2470 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1203
|
2471 |
-
#: modules/buttons/widgets/buttons.php:
|
2472 |
-
#: modules/buttons/widgets/buttons.php:
|
2473 |
-
#: modules/buttons/widgets/buttons.php:
|
2474 |
#: modules/caldera-forms/widgets/caldera-forms.php:596
|
2475 |
#: modules/caldera-forms/widgets/caldera-forms.php:1020
|
2476 |
#: modules/caldera-forms/widgets/caldera-forms.php:1046
|
@@ -2547,16 +2549,16 @@ msgstr ""
|
|
2547 |
#: modules/ninja-forms/widgets/ninja-forms.php:988
|
2548 |
#: modules/ninja-forms/widgets/ninja-forms.php:1014
|
2549 |
#: modules/ninja-forms/widgets/ninja-forms.php:1188
|
2550 |
-
#: modules/posts/skins/skin-base.php:
|
2551 |
-
#: modules/posts/skins/skin-base.php:
|
2552 |
-
#: modules/posts/skins/skin-base.php:
|
2553 |
-
#: modules/posts/skins/skin-base.php:
|
2554 |
-
#: modules/posts/skins/skin-base.php:
|
2555 |
-
#: modules/posts/skins/skin-base.php:
|
2556 |
-
#: modules/posts/skins/skin-base.php:
|
2557 |
-
#: modules/posts/skins/skin-base.php:
|
2558 |
-
#: modules/pricing/widgets/price-menu.php:
|
2559 |
-
#: modules/pricing/widgets/price-menu.php:
|
2560 |
#: modules/pricing/widgets/pricing-table.php:1336
|
2561 |
#: modules/pricing/widgets/pricing-table.php:1506
|
2562 |
#: modules/pricing/widgets/pricing-table.php:2228
|
@@ -2589,9 +2591,9 @@ msgstr ""
|
|
2589 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1229
|
2590 |
#: modules/business-hours/widgets/business-hours.php:593
|
2591 |
#: modules/business-hours/widgets/business-hours.php:1008
|
2592 |
-
#: modules/buttons/widgets/buttons.php:
|
2593 |
-
#: modules/buttons/widgets/buttons.php:
|
2594 |
-
#: modules/buttons/widgets/buttons.php:
|
2595 |
#: modules/caldera-forms/widgets/caldera-forms.php:1283
|
2596 |
#: modules/contact-form-seven/widgets/contact-form-7.php:1128
|
2597 |
#: modules/content-reveal/widgets/content-reveal.php:780
|
@@ -2633,13 +2635,13 @@ msgstr ""
|
|
2633 |
#: modules/logos/widgets/logo-carousel.php:1178
|
2634 |
#: modules/logos/widgets/logo-grid.php:577
|
2635 |
#: modules/ninja-forms/widgets/ninja-forms.php:1233
|
2636 |
-
#: modules/posts/skins/skin-base.php:
|
2637 |
-
#: modules/posts/skins/skin-base.php:
|
2638 |
-
#: modules/posts/skins/skin-base.php:
|
2639 |
-
#: modules/posts/skins/skin-base.php:
|
2640 |
-
#: modules/posts/skins/skin-base.php:
|
2641 |
-
#: modules/posts/skins/skin-base.php:
|
2642 |
-
#: modules/posts/skins/skin-base.php:
|
2643 |
#: modules/pricing/widgets/pricing-table.php:575
|
2644 |
#: modules/pricing/widgets/pricing-table.php:2559
|
2645 |
#: modules/promo-box/widgets/promo-box.php:872
|
@@ -2659,8 +2661,8 @@ msgstr ""
|
|
2659 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:699
|
2660 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:896
|
2661 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1284
|
2662 |
-
#: modules/posts/skins/skin-base.php:
|
2663 |
-
#: modules/posts/skins/skin-base.php:
|
2664 |
#: modules/team-member/widgets/team-member-carousel.php:875
|
2665 |
msgid "Active"
|
2666 |
msgstr ""
|
@@ -2670,9 +2672,9 @@ msgstr ""
|
|
2670 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1053
|
2671 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1215
|
2672 |
#: modules/business-hours/widgets/business-hours.php:716
|
2673 |
-
#: modules/buttons/widgets/buttons.php:
|
2674 |
-
#: modules/buttons/widgets/buttons.php:
|
2675 |
-
#: modules/buttons/widgets/buttons.php:
|
2676 |
#: modules/caldera-forms/widgets/caldera-forms.php:709
|
2677 |
#: modules/caldera-forms/widgets/caldera-forms.php:1231
|
2678 |
#: modules/contact-form-seven/widgets/contact-form-7.php:451
|
@@ -2729,15 +2731,15 @@ msgstr ""
|
|
2729 |
#: modules/logos/widgets/logo-grid.php:524
|
2730 |
#: modules/ninja-forms/widgets/ninja-forms.php:674
|
2731 |
#: modules/ninja-forms/widgets/ninja-forms.php:1200
|
2732 |
-
#: modules/posts/skins/skin-base.php:
|
2733 |
-
#: modules/posts/skins/skin-base.php:
|
2734 |
-
#: modules/posts/skins/skin-base.php:
|
2735 |
-
#: modules/posts/skins/skin-base.php:
|
2736 |
-
#: modules/posts/skins/skin-base.php:
|
2737 |
-
#: modules/posts/skins/skin-base.php:
|
2738 |
-
#: modules/pricing/widgets/price-menu.php:
|
2739 |
-
#: modules/pricing/widgets/price-menu.php:
|
2740 |
-
#: modules/pricing/widgets/price-menu.php:
|
2741 |
#: modules/pricing/widgets/pricing-table.php:1182
|
2742 |
#: modules/pricing/widgets/pricing-table.php:1307
|
2743 |
#: modules/pricing/widgets/pricing-table.php:1554
|
@@ -2765,10 +2767,10 @@ msgstr ""
|
|
2765 |
|
2766 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:763
|
2767 |
#: modules/content-ticker/widgets/content-ticker.php:1500
|
2768 |
-
#: modules/posts/skins/skin-base.php:
|
2769 |
-
#: modules/posts/skins/skin-base.php:
|
2770 |
-
#: modules/posts/skins/skin-base.php:
|
2771 |
-
#: modules/posts/skins/skin-base.php:
|
2772 |
msgid "Bottom Spacing"
|
2773 |
msgstr ""
|
2774 |
|
@@ -2781,10 +2783,10 @@ msgstr ""
|
|
2781 |
#: modules/business-hours/widgets/business-hours.php:655
|
2782 |
#: modules/business-hours/widgets/business-hours.php:697
|
2783 |
#: modules/business-hours/widgets/business-hours.php:789
|
2784 |
-
#: modules/buttons/widgets/buttons.php:
|
2785 |
-
#: modules/buttons/widgets/buttons.php:
|
2786 |
-
#: modules/buttons/widgets/buttons.php:
|
2787 |
-
#: modules/buttons/widgets/buttons.php:
|
2788 |
#: modules/caldera-forms/widgets/caldera-forms.php:362
|
2789 |
#: modules/caldera-forms/widgets/caldera-forms.php:423
|
2790 |
#: modules/caldera-forms/widgets/caldera-forms.php:489
|
@@ -2886,12 +2888,12 @@ msgstr ""
|
|
2886 |
#: modules/ninja-forms/widgets/ninja-forms.php:1252
|
2887 |
#: modules/ninja-forms/widgets/ninja-forms.php:1316
|
2888 |
#: modules/ninja-forms/widgets/ninja-forms.php:1420
|
2889 |
-
#: modules/posts/skins/skin-base.php:
|
2890 |
-
#: modules/posts/skins/skin-base.php:
|
2891 |
-
#: modules/posts/skins/skin-base.php:
|
2892 |
-
#: modules/posts/skins/skin-base.php:
|
2893 |
-
#: modules/posts/skins/skin-base.php:
|
2894 |
-
#: modules/pricing/widgets/price-menu.php:
|
2895 |
#: modules/pricing/widgets/pricing-table.php:493
|
2896 |
#: modules/pricing/widgets/pricing-table.php:1681
|
2897 |
#: modules/pricing/widgets/pricing-table.php:1737
|
@@ -2941,11 +2943,11 @@ msgstr ""
|
|
2941 |
#: modules/business-hours/widgets/business-hours.php:640
|
2942 |
#: modules/business-hours/widgets/business-hours.php:682
|
2943 |
#: modules/business-hours/widgets/business-hours.php:765
|
2944 |
-
#: modules/buttons/widgets/buttons.php:
|
2945 |
-
#: modules/buttons/widgets/buttons.php:
|
2946 |
-
#: modules/buttons/widgets/buttons.php:
|
2947 |
-
#: modules/buttons/widgets/buttons.php:
|
2948 |
-
#: modules/buttons/widgets/buttons.php:
|
2949 |
#: modules/caldera-forms/widgets/caldera-forms.php:560
|
2950 |
#: modules/caldera-forms/widgets/caldera-forms.php:768
|
2951 |
#: modules/caldera-forms/widgets/caldera-forms.php:1184
|
@@ -3036,21 +3038,21 @@ msgstr ""
|
|
3036 |
#: modules/ninja-forms/widgets/ninja-forms.php:734
|
3037 |
#: modules/ninja-forms/widgets/ninja-forms.php:1153
|
3038 |
#: modules/ninja-forms/widgets/ninja-forms.php:1240
|
3039 |
-
#: modules/posts/skins/skin-base.php:
|
3040 |
-
#: modules/posts/skins/skin-base.php:
|
3041 |
-
#: modules/posts/skins/skin-base.php:
|
3042 |
-
#: modules/posts/skins/skin-base.php:
|
3043 |
-
#: modules/posts/skins/skin-base.php:
|
3044 |
-
#: modules/posts/skins/skin-base.php:
|
3045 |
-
#: modules/posts/skins/skin-base.php:
|
3046 |
-
#: modules/posts/skins/skin-base.php:
|
3047 |
-
#: modules/posts/skins/skin-base.php:
|
3048 |
-
#: modules/posts/skins/skin-base.php:
|
3049 |
-
#: modules/posts/skins/skin-base.php:
|
3050 |
-
#: modules/posts/skins/skin-base.php:
|
3051 |
-
#: modules/pricing/widgets/price-menu.php:
|
3052 |
-
#: modules/pricing/widgets/price-menu.php:
|
3053 |
-
#: modules/pricing/widgets/price-menu.php:
|
3054 |
#: modules/pricing/widgets/pricing-table.php:506
|
3055 |
#: modules/pricing/widgets/pricing-table.php:1152
|
3056 |
#: modules/pricing/widgets/pricing-table.php:1260
|
@@ -3086,8 +3088,8 @@ msgstr ""
|
|
3086 |
|
3087 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:828
|
3088 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1195
|
3089 |
-
#: modules/buttons/widgets/buttons.php:
|
3090 |
-
#: modules/buttons/widgets/buttons.php:
|
3091 |
#: modules/caldera-forms/widgets/caldera-forms.php:585
|
3092 |
#: modules/caldera-forms/widgets/caldera-forms.php:781
|
3093 |
#: modules/caldera-forms/widgets/caldera-forms.php:1209
|
@@ -3160,13 +3162,13 @@ msgstr ""
|
|
3160 |
#: modules/ninja-forms/widgets/ninja-forms.php:549
|
3161 |
#: modules/ninja-forms/widgets/ninja-forms.php:747
|
3162 |
#: modules/ninja-forms/widgets/ninja-forms.php:1178
|
3163 |
-
#: modules/posts/skins/skin-base.php:
|
3164 |
-
#: modules/posts/skins/skin-base.php:
|
3165 |
-
#: modules/posts/skins/skin-base.php:
|
3166 |
-
#: modules/posts/skins/skin-base.php:
|
3167 |
-
#: modules/posts/skins/skin-base.php:
|
3168 |
-
#: modules/pricing/widgets/price-menu.php:
|
3169 |
-
#: modules/pricing/widgets/price-menu.php:
|
3170 |
#: modules/pricing/widgets/pricing-table.php:1169
|
3171 |
#: modules/pricing/widgets/pricing-table.php:1323
|
3172 |
#: modules/pricing/widgets/pricing-table.php:1496
|
@@ -3197,7 +3199,7 @@ msgid "Border"
|
|
3197 |
msgstr ""
|
3198 |
|
3199 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:957
|
3200 |
-
#: modules/buttons/widgets/buttons.php:
|
3201 |
#: modules/flipbox/widgets/flipbox.php:825
|
3202 |
#: modules/flipbox/widgets/flipbox.php:1179
|
3203 |
#: modules/info-box/widgets/info-box-carousel.php:965
|
@@ -3211,7 +3213,7 @@ msgstr ""
|
|
3211 |
|
3212 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:979
|
3213 |
#: modules/image-accordion/widgets/image-accordion.php:1068
|
3214 |
-
#: modules/posts/skins/skin-base.php:
|
3215 |
msgid "Icon Spacing"
|
3216 |
msgstr ""
|
3217 |
|
@@ -3256,9 +3258,9 @@ msgstr ""
|
|
3256 |
#: modules/ninja-forms/widgets/ninja-forms.php:303
|
3257 |
#: modules/ninja-forms/widgets/ninja-forms.php:489
|
3258 |
#: modules/ninja-forms/widgets/ninja-forms.php:1075
|
3259 |
-
#: modules/posts/skins/skin-base.php:
|
3260 |
-
#: modules/posts/skins/skin-base.php:
|
3261 |
-
#: modules/pricing/widgets/price-menu.php:
|
3262 |
#: modules/pricing/widgets/pricing-table.php:1111
|
3263 |
#: modules/pricing/widgets/pricing-table.php:1790
|
3264 |
#: modules/promo-box/widgets/promo-box.php:580
|
@@ -3283,7 +3285,7 @@ msgid "End"
|
|
3283 |
msgstr ""
|
3284 |
|
3285 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1106
|
3286 |
-
#: modules/buttons/widgets/buttons.php:
|
3287 |
#: modules/caldera-forms/widgets/caldera-forms.php:721
|
3288 |
#: modules/caldera-forms/widgets/caldera-forms.php:840
|
3289 |
#: modules/contact-form-seven/widgets/contact-form-7.php:428
|
@@ -3321,9 +3323,9 @@ msgstr ""
|
|
3321 |
#: modules/ninja-forms/widgets/ninja-forms.php:687
|
3322 |
#: modules/ninja-forms/widgets/ninja-forms.php:805
|
3323 |
#: modules/ninja-forms/widgets/ninja-forms.php:1364
|
3324 |
-
#: modules/posts/skins/skin-base.php:
|
3325 |
-
#: modules/posts/skins/skin-base.php:
|
3326 |
-
#: modules/posts/skins/skin-base.php:
|
3327 |
#: modules/pricing/widgets/pricing-table.php:1422
|
3328 |
#: modules/pricing/widgets/pricing-table.php:1703
|
3329 |
#: modules/pricing/widgets/pricing-table.php:1936
|
@@ -3341,7 +3343,7 @@ msgid "Spacing"
|
|
3341 |
msgstr ""
|
3342 |
|
3343 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1124
|
3344 |
-
#: modules/buttons/widgets/buttons.php:
|
3345 |
#: modules/caldera-forms/widgets/caldera-forms.php:919
|
3346 |
#: modules/contact-form-seven/widgets/contact-form-7.php:762
|
3347 |
#: modules/content-reveal/widgets/content-reveal.php:608
|
@@ -3368,9 +3370,9 @@ msgstr ""
|
|
3368 |
#: modules/instafeed/widgets/instafeed.php:2454
|
3369 |
#: modules/logos/widgets/logo-carousel.php:1031
|
3370 |
#: modules/ninja-forms/widgets/ninja-forms.php:887
|
3371 |
-
#: modules/posts/skins/skin-base.php:
|
3372 |
-
#: modules/posts/skins/skin-base.php:
|
3373 |
-
#: modules/posts/skins/skin-base.php:
|
3374 |
#: modules/pricing/widgets/pricing-table.php:588
|
3375 |
#: modules/pricing/widgets/pricing-table.php:882
|
3376 |
#: modules/pricing/widgets/pricing-table.php:1206
|
@@ -3389,9 +3391,9 @@ msgstr ""
|
|
3389 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1291
|
3390 |
#: modules/business-hours/widgets/business-hours.php:927
|
3391 |
#: modules/business-hours/widgets/business-hours.php:984
|
3392 |
-
#: modules/buttons/widgets/buttons.php:
|
3393 |
-
#: modules/buttons/widgets/buttons.php:
|
3394 |
-
#: modules/buttons/widgets/buttons.php:
|
3395 |
#: modules/caldera-forms/widgets/caldera-forms.php:957
|
3396 |
#: modules/caldera-forms/widgets/caldera-forms.php:1073
|
3397 |
#: modules/caldera-forms/widgets/caldera-forms.php:1466
|
@@ -3464,21 +3466,21 @@ msgstr ""
|
|
3464 |
#: modules/ninja-forms/widgets/ninja-forms.php:925
|
3465 |
#: modules/ninja-forms/widgets/ninja-forms.php:1041
|
3466 |
#: modules/ninja-forms/widgets/ninja-forms.php:1352
|
3467 |
-
#: modules/posts/skins/skin-base.php:
|
3468 |
-
#: modules/posts/skins/skin-base.php:
|
3469 |
-
#: modules/posts/skins/skin-base.php:
|
3470 |
-
#: modules/posts/skins/skin-base.php:
|
3471 |
-
#: modules/posts/skins/skin-base.php:
|
3472 |
-
#: modules/posts/skins/skin-base.php:
|
3473 |
-
#: modules/posts/skins/skin-base.php:
|
3474 |
-
#: modules/posts/skins/skin-base.php:
|
3475 |
-
#: modules/posts/skins/skin-base.php:
|
3476 |
-
#: modules/posts/skins/skin-base.php:
|
3477 |
-
#: modules/posts/skins/skin-base.php:
|
3478 |
-
#: modules/pricing/widgets/price-menu.php:
|
3479 |
-
#: modules/pricing/widgets/price-menu.php:
|
3480 |
-
#: modules/pricing/widgets/price-menu.php:
|
3481 |
-
#: modules/pricing/widgets/price-menu.php:
|
3482 |
#: modules/pricing/widgets/pricing-table.php:1275
|
3483 |
#: modules/pricing/widgets/pricing-table.php:1360
|
3484 |
#: modules/pricing/widgets/pricing-table.php:1394
|
@@ -3509,7 +3511,7 @@ msgid "Predefined"
|
|
3509 |
msgstr ""
|
3510 |
|
3511 |
#: modules/business-hours/widgets/business-hours.php:123
|
3512 |
-
#: modules/buttons/widgets/buttons.php:
|
3513 |
#: modules/caldera-forms/widgets/caldera-forms.php:1140
|
3514 |
#: modules/contact-form-seven/widgets/contact-form-7.php:985
|
3515 |
#: modules/content-ticker/widgets/content-ticker.php:152
|
@@ -3519,7 +3521,7 @@ msgstr ""
|
|
3519 |
#: modules/gravity-forms/widgets/gravity-forms.php:1363
|
3520 |
#: modules/gravity-forms/widgets/gravity-forms.php:1578
|
3521 |
#: modules/ninja-forms/widgets/ninja-forms.php:1109
|
3522 |
-
#: modules/posts/skins/skin-base.php:
|
3523 |
#: modules/posts/widgets/posts-base.php:394
|
3524 |
#: modules/pricing/widgets/pricing-table.php:323
|
3525 |
#: modules/wpforms/widgets/wpforms.php:1041
|
@@ -3653,9 +3655,9 @@ msgstr ""
|
|
3653 |
#: modules/info-table/widgets/info-table.php:631
|
3654 |
#: modules/info-table/widgets/info-table.php:701
|
3655 |
#: modules/info-table/widgets/info-table.php:1092
|
3656 |
-
#: modules/pricing/widgets/price-menu.php:
|
3657 |
-
#: modules/pricing/widgets/price-menu.php:
|
3658 |
-
#: modules/pricing/widgets/price-menu.php:
|
3659 |
#: modules/pricing/widgets/pricing-table.php:1865
|
3660 |
#: modules/team-member/widgets/team-member-carousel.php:1105
|
3661 |
#: modules/team-member/widgets/team-member-carousel.php:1171
|
@@ -3705,8 +3707,8 @@ msgstr ""
|
|
3705 |
#: modules/info-box/widgets/info-box-carousel.php:1387
|
3706 |
#: modules/info-box/widgets/info-box.php:1330
|
3707 |
#: modules/info-list/widgets/info-list.php:573
|
3708 |
-
#: modules/pricing/widgets/price-menu.php:
|
3709 |
-
#: modules/pricing/widgets/price-menu.php:
|
3710 |
#: modules/promo-box/widgets/promo-box.php:1036
|
3711 |
#: modules/promo-box/widgets/promo-box.php:1269
|
3712 |
#: modules/team-member/widgets/team-member-carousel.php:1235
|
@@ -3742,16 +3744,16 @@ msgid "Divider Color"
|
|
3742 |
msgstr ""
|
3743 |
|
3744 |
#: modules/business-hours/widgets/business-hours.php:845
|
3745 |
-
#: modules/pricing/widgets/price-menu.php:
|
3746 |
msgid "Divider Weight"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
#: modules/business-hours/widgets/business-hours.php:905
|
3750 |
#: modules/business-hours/widgets/business-hours.php:962
|
3751 |
-
#: modules/buttons/widgets/buttons.php:
|
3752 |
-
#: modules/buttons/widgets/buttons.php:
|
3753 |
-
#: modules/buttons/widgets/buttons.php:
|
3754 |
-
#: modules/buttons/widgets/buttons.php:
|
3755 |
#: modules/caldera-forms/widgets/caldera-forms.php:325
|
3756 |
#: modules/caldera-forms/widgets/caldera-forms.php:529
|
3757 |
#: modules/caldera-forms/widgets/caldera-forms.php:1112
|
@@ -3810,9 +3812,9 @@ msgstr ""
|
|
3810 |
#: modules/ninja-forms/widgets/ninja-forms.php:307
|
3811 |
#: modules/ninja-forms/widgets/ninja-forms.php:493
|
3812 |
#: modules/ninja-forms/widgets/ninja-forms.php:1079
|
3813 |
-
#: modules/posts/skins/skin-base.php:
|
3814 |
-
#: modules/posts/skins/skin-base.php:
|
3815 |
-
#: modules/pricing/widgets/price-menu.php:
|
3816 |
#: modules/pricing/widgets/pricing-table.php:613
|
3817 |
#: modules/pricing/widgets/pricing-table.php:967
|
3818 |
#: modules/pricing/widgets/pricing-table.php:1116
|
@@ -3835,9 +3837,9 @@ msgstr ""
|
|
3835 |
|
3836 |
#: modules/business-hours/widgets/business-hours.php:909
|
3837 |
#: modules/business-hours/widgets/business-hours.php:966
|
3838 |
-
#: modules/buttons/widgets/buttons.php:
|
3839 |
-
#: modules/buttons/widgets/buttons.php:
|
3840 |
-
#: modules/buttons/widgets/buttons.php:
|
3841 |
#: modules/caldera-forms/widgets/caldera-forms.php:329
|
3842 |
#: modules/caldera-forms/widgets/caldera-forms.php:533
|
3843 |
#: modules/caldera-forms/widgets/caldera-forms.php:1116
|
@@ -3893,10 +3895,10 @@ msgstr ""
|
|
3893 |
#: modules/ninja-forms/widgets/ninja-forms.php:311
|
3894 |
#: modules/ninja-forms/widgets/ninja-forms.php:497
|
3895 |
#: modules/ninja-forms/widgets/ninja-forms.php:1083
|
3896 |
-
#: modules/posts/skins/skin-base.php:
|
3897 |
-
#: modules/posts/skins/skin-base.php:
|
3898 |
-
#: modules/pricing/widgets/price-menu.php:
|
3899 |
-
#: modules/pricing/widgets/price-menu.php:
|
3900 |
#: modules/pricing/widgets/pricing-table.php:1120
|
3901 |
#: modules/pricing/widgets/pricing-table.php:1799
|
3902 |
#: modules/promo-box/widgets/promo-box.php:589
|
@@ -3918,10 +3920,10 @@ msgstr ""
|
|
3918 |
|
3919 |
#: modules/business-hours/widgets/business-hours.php:913
|
3920 |
#: modules/business-hours/widgets/business-hours.php:970
|
3921 |
-
#: modules/buttons/widgets/buttons.php:
|
3922 |
-
#: modules/buttons/widgets/buttons.php:
|
3923 |
-
#: modules/buttons/widgets/buttons.php:
|
3924 |
-
#: modules/buttons/widgets/buttons.php:
|
3925 |
#: modules/caldera-forms/widgets/caldera-forms.php:333
|
3926 |
#: modules/caldera-forms/widgets/caldera-forms.php:537
|
3927 |
#: modules/caldera-forms/widgets/caldera-forms.php:1120
|
@@ -3980,9 +3982,9 @@ msgstr ""
|
|
3980 |
#: modules/ninja-forms/widgets/ninja-forms.php:315
|
3981 |
#: modules/ninja-forms/widgets/ninja-forms.php:501
|
3982 |
#: modules/ninja-forms/widgets/ninja-forms.php:1087
|
3983 |
-
#: modules/posts/skins/skin-base.php:
|
3984 |
-
#: modules/posts/skins/skin-base.php:
|
3985 |
-
#: modules/pricing/widgets/price-menu.php:
|
3986 |
#: modules/pricing/widgets/pricing-table.php:614
|
3987 |
#: modules/pricing/widgets/pricing-table.php:971
|
3988 |
#: modules/pricing/widgets/pricing-table.php:1124
|
@@ -4005,8 +4007,8 @@ msgstr ""
|
|
4005 |
|
4006 |
#: modules/business-hours/widgets/business-hours.php:940
|
4007 |
#: modules/business-hours/widgets/business-hours.php:997
|
4008 |
-
#: modules/buttons/widgets/buttons.php:
|
4009 |
-
#: modules/buttons/widgets/buttons.php:
|
4010 |
#: modules/caldera-forms/widgets/caldera-forms.php:378
|
4011 |
#: modules/caldera-forms/widgets/caldera-forms.php:439
|
4012 |
#: modules/caldera-forms/widgets/caldera-forms.php:501
|
@@ -4112,14 +4114,14 @@ msgstr ""
|
|
4112 |
#: modules/ninja-forms/widgets/ninja-forms.php:1328
|
4113 |
#: modules/ninja-forms/widgets/ninja-forms.php:1384
|
4114 |
#: modules/ninja-forms/widgets/ninja-forms.php:1436
|
4115 |
-
#: modules/posts/skins/skin-base.php:
|
4116 |
-
#: modules/posts/skins/skin-base.php:
|
4117 |
-
#: modules/posts/skins/skin-base.php:
|
4118 |
-
#: modules/posts/skins/skin-base.php:
|
4119 |
-
#: modules/posts/skins/skin-base.php:
|
4120 |
-
#: modules/pricing/widgets/price-menu.php:
|
4121 |
-
#: modules/pricing/widgets/price-menu.php:
|
4122 |
-
#: modules/pricing/widgets/price-menu.php:
|
4123 |
#: modules/pricing/widgets/pricing-table.php:1373
|
4124 |
#: modules/pricing/widgets/pricing-table.php:1410
|
4125 |
#: modules/pricing/widgets/pricing-table.php:1461
|
@@ -4159,8 +4161,8 @@ msgstr ""
|
|
4159 |
msgid "Hours Color"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: modules/buttons/widgets/buttons.php:
|
4163 |
-
#: modules/buttons/widgets/buttons.php:
|
4164 |
#: modules/divider/widgets/divider.php:137
|
4165 |
#: modules/divider/widgets/divider.php:172
|
4166 |
#: modules/divider/widgets/divider.php:662
|
@@ -4182,13 +4184,13 @@ msgstr ""
|
|
4182 |
msgid "Text"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
-
#: modules/buttons/widgets/buttons.php:138
|
4186 |
#: modules/buttons/widgets/buttons.php:139
|
4187 |
-
#: modules/buttons/widgets/buttons.php:
|
|
|
4188 |
msgid "Button #1"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: modules/buttons/widgets/buttons.php:
|
4192 |
#: modules/counter/widgets/counter.php:262
|
4193 |
#: modules/flipbox/widgets/flipbox.php:141
|
4194 |
#: modules/flipbox/widgets/flipbox.php:280
|
@@ -4200,7 +4202,7 @@ msgstr ""
|
|
4200 |
msgid "Icon Type"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: modules/buttons/widgets/buttons.php:
|
4204 |
#: modules/flipbox/widgets/flipbox.php:211
|
4205 |
#: modules/flipbox/widgets/flipbox.php:350
|
4206 |
#: modules/info-box/widgets/info-box-carousel.php:1210
|
@@ -4210,68 +4212,68 @@ msgstr ""
|
|
4210 |
msgid "Icon Text"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
-
#: modules/buttons/widgets/buttons.php:
|
4214 |
#: modules/pricing/widgets/pricing-table.php:559
|
4215 |
msgid "Enable Tooltip"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: modules/buttons/widgets/buttons.php:
|
4219 |
#: modules/hotspots/widgets/hotspots.php:353
|
4220 |
#: modules/hotspots/widgets/hotspots.php:355
|
4221 |
#: modules/pricing/widgets/pricing-table.php:451
|
4222 |
msgid "Tooltip Content"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: modules/buttons/widgets/buttons.php:249
|
4226 |
#: modules/buttons/widgets/buttons.php:250
|
|
|
4227 |
msgid "I am a tooltip for a button"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: modules/buttons/widgets/buttons.php:
|
4231 |
#: modules/icon-list/widgets/icon-list.php:242
|
4232 |
#: modules/info-list/widgets/info-list.php:310
|
4233 |
msgid "http://your-link.com"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
-
#: modules/buttons/widgets/buttons.php:
|
4237 |
msgid "CSS ID"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
-
#: modules/buttons/widgets/buttons.php:
|
4241 |
msgid "Add your custom ID WITHOUT the # key. e.g: my-id"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: modules/buttons/widgets/buttons.php:
|
4245 |
msgid "CSS Classes"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: modules/buttons/widgets/buttons.php:
|
4249 |
msgid "Add your custom class WITHOUT the dot. e.g: my-class"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: modules/buttons/widgets/buttons.php:
|
4253 |
-
#: modules/buttons/widgets/buttons.php:
|
4254 |
#: modules/counter/widgets/counter.php:423
|
4255 |
#: modules/counter/widgets/counter.php:429
|
4256 |
#: modules/icon-list/widgets/icon-list.php:123
|
4257 |
#: modules/instafeed/widgets/instafeed.php:346
|
4258 |
#: modules/instafeed/widgets/instafeed.php:911
|
4259 |
-
#: modules/posts/skins/skin-base.php:
|
4260 |
#: modules/posts/widgets/posts.php:97
|
4261 |
#: modules/twitter/widgets/twitter-timeline.php:115
|
4262 |
msgid "Layout"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: modules/buttons/widgets/buttons.php:
|
4266 |
msgid "Button Size"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: modules/buttons/widgets/buttons.php:
|
4270 |
#: modules/gravity-forms/widgets/gravity-forms.php:1787
|
4271 |
#: modules/hotspots/widgets/hotspots.php:511
|
4272 |
#: modules/hotspots/widgets/hotspots.php:585
|
4273 |
#: modules/icon-list/widgets/icon-list.php:128
|
4274 |
-
#: modules/posts/skins/skin-base.php:
|
4275 |
#: modules/pricing/widgets/pricing-table.php:592
|
4276 |
#: modules/pricing/widgets/pricing-table.php:712
|
4277 |
#: modules/pricing/widgets/pricing-table.php:854
|
@@ -4280,8 +4282,8 @@ msgstr ""
|
|
4280 |
msgid "Default"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
-
#: modules/buttons/widgets/buttons.php:
|
4284 |
-
#: modules/buttons/widgets/buttons.php:
|
4285 |
#: modules/content-reveal/widgets/content-reveal.php:612
|
4286 |
#: modules/flipbox/widgets/flipbox.php:1355
|
4287 |
#: modules/image-accordion/widgets/image-accordion.php:872
|
@@ -4290,14 +4292,14 @@ msgstr ""
|
|
4290 |
#: modules/info-list/widgets/info-list.php:1068
|
4291 |
#: modules/info-table/widgets/info-table.php:1140
|
4292 |
#: modules/instafeed/widgets/instafeed.php:2458
|
4293 |
-
#: modules/posts/skins/skin-base.php:
|
4294 |
#: modules/pricing/widgets/pricing-table.php:2401
|
4295 |
#: modules/promo-box/widgets/promo-box.php:1468
|
4296 |
msgid "Extra Small"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
-
#: modules/buttons/widgets/buttons.php:
|
4300 |
-
#: modules/buttons/widgets/buttons.php:
|
4301 |
#: modules/content-reveal/widgets/content-reveal.php:613
|
4302 |
#: modules/flipbox/widgets/flipbox.php:1356
|
4303 |
#: modules/hotspots/widgets/hotspots.php:513
|
@@ -4307,15 +4309,15 @@ msgstr ""
|
|
4307 |
#: modules/info-list/widgets/info-list.php:1069
|
4308 |
#: modules/info-table/widgets/info-table.php:1141
|
4309 |
#: modules/instafeed/widgets/instafeed.php:2459
|
4310 |
-
#: modules/posts/skins/skin-base.php:
|
4311 |
#: modules/pricing/widgets/pricing-table.php:594
|
4312 |
#: modules/pricing/widgets/pricing-table.php:2402
|
4313 |
#: modules/promo-box/widgets/promo-box.php:1469
|
4314 |
msgid "Small"
|
4315 |
msgstr ""
|
4316 |
|
4317 |
-
#: modules/buttons/widgets/buttons.php:
|
4318 |
-
#: modules/buttons/widgets/buttons.php:
|
4319 |
#: modules/content-reveal/widgets/content-reveal.php:614
|
4320 |
#: modules/flipbox/widgets/flipbox.php:1357
|
4321 |
#: modules/image-accordion/widgets/image-accordion.php:874
|
@@ -4324,14 +4326,14 @@ msgstr ""
|
|
4324 |
#: modules/info-list/widgets/info-list.php:1070
|
4325 |
#: modules/info-table/widgets/info-table.php:1142
|
4326 |
#: modules/instafeed/widgets/instafeed.php:2460
|
4327 |
-
#: modules/posts/skins/skin-base.php:
|
4328 |
#: modules/pricing/widgets/pricing-table.php:2403
|
4329 |
#: modules/promo-box/widgets/promo-box.php:1470
|
4330 |
msgid "Medium"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#: modules/buttons/widgets/buttons.php:
|
4334 |
-
#: modules/buttons/widgets/buttons.php:
|
4335 |
#: modules/content-reveal/widgets/content-reveal.php:615
|
4336 |
#: modules/flipbox/widgets/flipbox.php:1358
|
4337 |
#: modules/hotspots/widgets/hotspots.php:514
|
@@ -4341,15 +4343,15 @@ msgstr ""
|
|
4341 |
#: modules/info-list/widgets/info-list.php:1071
|
4342 |
#: modules/info-table/widgets/info-table.php:1143
|
4343 |
#: modules/instafeed/widgets/instafeed.php:2461
|
4344 |
-
#: modules/posts/skins/skin-base.php:
|
4345 |
#: modules/pricing/widgets/pricing-table.php:595
|
4346 |
#: modules/pricing/widgets/pricing-table.php:2404
|
4347 |
#: modules/promo-box/widgets/promo-box.php:1471
|
4348 |
msgid "Large"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: modules/buttons/widgets/buttons.php:
|
4352 |
-
#: modules/buttons/widgets/buttons.php:
|
4353 |
#: modules/content-reveal/widgets/content-reveal.php:616
|
4354 |
#: modules/flipbox/widgets/flipbox.php:1359
|
4355 |
#: modules/image-accordion/widgets/image-accordion.php:876
|
@@ -4358,34 +4360,34 @@ msgstr ""
|
|
4358 |
#: modules/info-list/widgets/info-list.php:1072
|
4359 |
#: modules/info-table/widgets/info-table.php:1144
|
4360 |
#: modules/instafeed/widgets/instafeed.php:2462
|
4361 |
-
#: modules/posts/skins/skin-base.php:
|
4362 |
#: modules/pricing/widgets/pricing-table.php:2405
|
4363 |
#: modules/promo-box/widgets/promo-box.php:1472
|
4364 |
msgid "Extra Large"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#: modules/buttons/widgets/buttons.php:
|
4368 |
msgid "Button Width"
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#: modules/buttons/widgets/buttons.php:
|
4372 |
#: modules/divider/widgets/divider.php:384
|
4373 |
#: modules/hotspots/widgets/hotspots.php:370
|
4374 |
#: modules/icon-list/widgets/icon-list.php:419
|
4375 |
#: modules/info-list/widgets/info-list.php:567
|
4376 |
#: modules/instafeed/widgets/instafeed.php:1388
|
4377 |
#: modules/logos/widgets/logo-grid.php:162
|
4378 |
-
#: modules/pricing/widgets/price-menu.php:
|
4379 |
#: modules/pricing/widgets/pricing-table.php:850
|
4380 |
msgid "Style"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: modules/buttons/widgets/buttons.php:
|
4384 |
msgid "Button Typography"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
#: modules/buttons/widgets/buttons.php:
|
4388 |
-
#: modules/buttons/widgets/buttons.php:
|
4389 |
#: modules/content-reveal/widgets/content-reveal.php:704
|
4390 |
#: modules/content-reveal/widgets/content-reveal.php:813
|
4391 |
#: modules/image-comparison/widgets/image-comparison.php:423
|
@@ -4403,29 +4405,29 @@ msgstr ""
|
|
4403 |
msgid "Icon Color"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: modules/buttons/widgets/buttons.php:
|
4407 |
msgid "Button #2"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
-
#: modules/buttons/widgets/buttons.php:
|
4411 |
msgid "Buttons Size"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: modules/buttons/widgets/buttons.php:
|
4415 |
msgid "Buttons Spacing"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: modules/buttons/widgets/buttons.php:
|
4419 |
#: modules/divider/widgets/divider.php:349
|
4420 |
#: modules/icon-list/widgets/icon-list.php:524
|
4421 |
#: modules/logos/widgets/logo-carousel.php:575
|
4422 |
-
#: modules/pricing/widgets/price-menu.php:
|
4423 |
#: modules/promo-box/widgets/promo-box.php:607
|
4424 |
msgid "Vertical Alignment"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#: modules/buttons/widgets/buttons.php:
|
4428 |
-
#: modules/buttons/widgets/buttons.php:
|
4429 |
#: modules/divider/widgets/divider.php:355
|
4430 |
#: modules/flipbox/widgets/flipbox.php:567
|
4431 |
#: modules/flipbox/widgets/flipbox.php:683
|
@@ -4442,10 +4444,10 @@ msgstr ""
|
|
4442 |
#: modules/instafeed/widgets/instafeed.php:1641
|
4443 |
#: modules/logos/widgets/logo-carousel.php:579
|
4444 |
#: modules/logos/widgets/logo-grid.php:343
|
4445 |
-
#: modules/posts/skins/skin-base.php:
|
4446 |
-
#: modules/posts/skins/skin-base.php:
|
4447 |
-
#: modules/pricing/widgets/price-menu.php:
|
4448 |
-
#: modules/pricing/widgets/price-menu.php:
|
4449 |
#: modules/pricing/widgets/pricing-table.php:611
|
4450 |
#: modules/pricing/widgets/pricing-table.php:1631
|
4451 |
#: modules/promo-box/widgets/promo-box.php:613
|
@@ -4453,20 +4455,20 @@ msgstr ""
|
|
4453 |
msgid "Top"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
-
#: modules/buttons/widgets/buttons.php:
|
4457 |
#: modules/flipbox/widgets/flipbox.php:687
|
4458 |
#: modules/flipbox/widgets/flipbox.php:1041
|
4459 |
#: modules/image-accordion/widgets/image-accordion.php:655
|
4460 |
#: modules/image-comparison/widgets/image-comparison.php:603
|
4461 |
#: modules/info-box/widgets/info-box.php:344
|
4462 |
#: modules/instafeed/widgets/instafeed.php:1645
|
4463 |
-
#: modules/pricing/widgets/price-menu.php:
|
4464 |
#: modules/pricing/widgets/pricing-table.php:1635
|
4465 |
msgid "Middle"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
-
#: modules/buttons/widgets/buttons.php:
|
4469 |
-
#: modules/buttons/widgets/buttons.php:
|
4470 |
#: modules/divider/widgets/divider.php:363
|
4471 |
#: modules/flipbox/widgets/flipbox.php:568
|
4472 |
#: modules/flipbox/widgets/flipbox.php:691
|
@@ -4482,10 +4484,10 @@ msgstr ""
|
|
4482 |
#: modules/instafeed/widgets/instafeed.php:1649
|
4483 |
#: modules/logos/widgets/logo-carousel.php:587
|
4484 |
#: modules/logos/widgets/logo-grid.php:351
|
4485 |
-
#: modules/posts/skins/skin-base.php:
|
4486 |
-
#: modules/posts/skins/skin-base.php:
|
4487 |
-
#: modules/pricing/widgets/price-menu.php:
|
4488 |
-
#: modules/pricing/widgets/price-menu.php:
|
4489 |
#: modules/pricing/widgets/pricing-table.php:612
|
4490 |
#: modules/pricing/widgets/pricing-table.php:1639
|
4491 |
#: modules/promo-box/widgets/promo-box.php:621
|
@@ -4493,50 +4495,50 @@ msgstr ""
|
|
4493 |
msgid "Bottom"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
-
#: modules/buttons/widgets/buttons.php:
|
4497 |
-
#: modules/buttons/widgets/buttons.php:
|
4498 |
-
#: modules/buttons/widgets/buttons.php:
|
4499 |
msgid "Stretch"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
-
#: modules/buttons/widgets/buttons.php:
|
4503 |
#: modules/logos/widgets/logo-carousel.php:601
|
4504 |
msgid "Horizontal Alignment"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#: modules/buttons/widgets/buttons.php:
|
4508 |
msgid "Content Alignment"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
-
#: modules/buttons/widgets/buttons.php:
|
4512 |
msgid "Stack on"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#: modules/buttons/widgets/buttons.php:
|
4516 |
msgid "Choose a breakpoint where the buttons will stack."
|
4517 |
msgstr ""
|
4518 |
|
4519 |
-
#: modules/buttons/widgets/buttons.php:
|
4520 |
msgid "Desktop"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#: modules/buttons/widgets/buttons.php:
|
4524 |
#: modules/image-accordion/widgets/image-accordion.php:414
|
4525 |
#: modules/info-list/widgets/info-list.php:521
|
4526 |
msgid "Tablet"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#: modules/buttons/widgets/buttons.php:
|
4530 |
#: modules/image-accordion/widgets/image-accordion.php:415
|
4531 |
#: modules/info-list/widgets/info-list.php:522
|
4532 |
msgid "Mobile"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
-
#: modules/buttons/widgets/buttons.php:
|
4536 |
msgid "Styling"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
-
#: modules/buttons/widgets/buttons.php:
|
4540 |
#: modules/flipbox/widgets/flipbox.php:1596
|
4541 |
#: modules/hotspots/widgets/hotspots.php:570
|
4542 |
#: modules/icon-list/widgets/icon-list.php:720
|
@@ -4547,14 +4549,14 @@ msgstr ""
|
|
4547 |
#: modules/info-list/widgets/info-list.php:1243
|
4548 |
#: modules/info-table/widgets/info-table.php:1371
|
4549 |
#: modules/instafeed/widgets/instafeed.php:2690
|
4550 |
-
#: modules/posts/skins/skin-base.php:
|
4551 |
#: modules/pricing/widgets/pricing-table.php:642
|
4552 |
#: modules/pricing/widgets/pricing-table.php:2613
|
4553 |
#: modules/promo-box/widgets/promo-box.php:1613
|
4554 |
msgid "Animation"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#: modules/buttons/widgets/buttons.php:
|
4558 |
#: modules/content-reveal/widgets/content-reveal.php:406
|
4559 |
#: modules/content-ticker/widgets/content-ticker.php:1048
|
4560 |
#: modules/flipbox/widgets/flipbox.php:470
|
@@ -4564,12 +4566,12 @@ msgstr ""
|
|
4564 |
#: modules/info-list/widgets/info-list.php:288
|
4565 |
#: modules/info-table/widgets/info-table.php:365
|
4566 |
#: modules/instafeed/widgets/instafeed.php:588
|
4567 |
-
#: modules/posts/skins/skin-base.php:
|
4568 |
#: modules/promo-box/widgets/promo-box.php:329
|
4569 |
msgid "Icon Position"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: modules/buttons/widgets/buttons.php:
|
4573 |
#: modules/content-reveal/widgets/content-reveal.php:410
|
4574 |
#: modules/content-ticker/widgets/content-ticker.php:889
|
4575 |
#: modules/divider/widgets/divider.php:628
|
@@ -4581,13 +4583,13 @@ msgstr ""
|
|
4581 |
#: modules/info-box/widgets/info-box.php:633
|
4582 |
#: modules/info-list/widgets/info-list.php:292
|
4583 |
#: modules/info-table/widgets/info-table.php:369
|
4584 |
-
#: modules/posts/skins/skin-base.php:
|
4585 |
#: modules/posts/widgets/posts-base.php:425
|
4586 |
#: modules/pricing/widgets/pricing-table.php:1616
|
4587 |
msgid "After"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
-
#: modules/buttons/widgets/buttons.php:
|
4591 |
#: modules/content-reveal/widgets/content-reveal.php:411
|
4592 |
#: modules/content-ticker/widgets/content-ticker.php:873
|
4593 |
#: modules/display-conditions/conditions/date-time-before.php:69
|
@@ -4601,13 +4603,13 @@ msgstr ""
|
|
4601 |
#: modules/info-box/widgets/info-box.php:634
|
4602 |
#: modules/info-list/widgets/info-list.php:293
|
4603 |
#: modules/info-table/widgets/info-table.php:370
|
4604 |
-
#: modules/posts/skins/skin-base.php:
|
4605 |
#: modules/posts/widgets/posts-base.php:409
|
4606 |
#: modules/pricing/widgets/pricing-table.php:1612
|
4607 |
msgid "Before"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
-
#: modules/buttons/widgets/buttons.php:
|
4611 |
#: modules/hotspots/widgets/hotspots.php:311
|
4612 |
#: modules/hotspots/widgets/hotspots.php:316
|
4613 |
#: modules/hotspots/widgets/hotspots.php:947
|
@@ -4616,20 +4618,20 @@ msgstr ""
|
|
4616 |
msgid "Tooltip"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
-
#: modules/buttons/widgets/buttons.php:
|
4620 |
#: modules/hotspots/widgets/hotspots.php:328
|
4621 |
msgid "Tooltip Position"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
-
#: modules/buttons/widgets/buttons.php:
|
4625 |
msgid "Above"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: modules/buttons/widgets/buttons.php:
|
4629 |
msgid "Below"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: modules/buttons/widgets/buttons.php:
|
4633 |
#: modules/content-reveal/widgets/content-reveal.php:472
|
4634 |
#: modules/image-accordion/widgets/image-accordion.php:711
|
4635 |
#: modules/instafeed/widgets/instafeed.php:1281
|
@@ -4685,8 +4687,8 @@ msgstr ""
|
|
4685 |
#: modules/info-table/widgets/info-table.php:1027
|
4686 |
#: modules/ninja-forms/widgets/ninja-forms.php:157
|
4687 |
#: modules/ninja-forms/widgets/ninja-forms.php:378
|
4688 |
-
#: modules/pricing/widgets/price-menu.php:
|
4689 |
-
#: modules/pricing/widgets/price-menu.php:
|
4690 |
#: modules/promo-box/widgets/promo-box.php:230
|
4691 |
#: modules/promo-box/widgets/promo-box.php:1390
|
4692 |
#: modules/random-image/widgets/random-image.php:260
|
@@ -4802,9 +4804,9 @@ msgstr ""
|
|
4802 |
#: modules/instafeed/widgets/instafeed.php:2606
|
4803 |
#: modules/ninja-forms/widgets/ninja-forms.php:359
|
4804 |
#: modules/ninja-forms/widgets/ninja-forms.php:409
|
4805 |
-
#: modules/posts/skins/skin-base.php:
|
4806 |
-
#: modules/posts/skins/skin-base.php:
|
4807 |
-
#: modules/pricing/widgets/price-menu.php:
|
4808 |
#: modules/pricing/widgets/pricing-table.php:1292
|
4809 |
#: modules/pricing/widgets/pricing-table.php:1542
|
4810 |
#: modules/promo-box/widgets/promo-box.php:852
|
@@ -4982,7 +4984,7 @@ msgstr ""
|
|
4982 |
#: modules/link-effects/widgets/link-effects.php:279
|
4983 |
#: modules/ninja-forms/widgets/ninja-forms.php:1104
|
4984 |
#: modules/ninja-forms/widgets/ninja-forms.php:1118
|
4985 |
-
#: modules/pricing/widgets/price-menu.php:
|
4986 |
#: modules/pricing/widgets/pricing-table.php:1233
|
4987 |
#: modules/pricing/widgets/pricing-table.php:1518
|
4988 |
#: modules/pricing/widgets/pricing-table.php:2182
|
@@ -5065,9 +5067,9 @@ msgstr ""
|
|
5065 |
#: modules/info-box/widgets/info-box-carousel.php:542
|
5066 |
#: modules/info-box/widgets/info-box.php:433
|
5067 |
#: modules/logos/widgets/logo-grid.php:171
|
5068 |
-
#: modules/pricing/widgets/price-menu.php:
|
5069 |
-
#: modules/pricing/widgets/price-menu.php:
|
5070 |
-
#: modules/pricing/widgets/price-menu.php:
|
5071 |
#: modules/pricing/widgets/pricing-table.php:375
|
5072 |
#: modules/promo-box/widgets/promo-box.php:170
|
5073 |
#: modules/promo-box/widgets/promo-box.php:218
|
@@ -5085,9 +5087,9 @@ msgstr ""
|
|
5085 |
#: modules/info-box/widgets/info-box-carousel.php:543
|
5086 |
#: modules/info-box/widgets/info-box.php:434
|
5087 |
#: modules/logos/widgets/logo-grid.php:172
|
5088 |
-
#: modules/pricing/widgets/price-menu.php:
|
5089 |
-
#: modules/pricing/widgets/price-menu.php:
|
5090 |
-
#: modules/pricing/widgets/price-menu.php:
|
5091 |
#: modules/pricing/widgets/pricing-table.php:376
|
5092 |
#: modules/promo-box/widgets/promo-box.php:171
|
5093 |
#: modules/promo-box/widgets/promo-box.php:219
|
@@ -5207,7 +5209,7 @@ msgid "Label"
|
|
5207 |
msgstr ""
|
5208 |
|
5209 |
#: modules/content-reveal/widgets/content-reveal.php:350
|
5210 |
-
#: modules/posts/skins/skin-base.php:
|
5211 |
msgid "Read More"
|
5212 |
msgstr ""
|
5213 |
|
@@ -5222,7 +5224,7 @@ msgstr ""
|
|
5222 |
|
5223 |
#: modules/content-reveal/widgets/content-reveal.php:549
|
5224 |
#: modules/counter/widgets/counter.php:237
|
5225 |
-
#: modules/posts/skins/skin-base.php:
|
5226 |
msgid "Separator"
|
5227 |
msgstr ""
|
5228 |
|
@@ -5295,8 +5297,8 @@ msgstr ""
|
|
5295 |
#: modules/info-table/widgets/info-table.php:247
|
5296 |
#: modules/logos/widgets/logo-carousel.php:227
|
5297 |
#: modules/logos/widgets/logo-grid.php:266
|
5298 |
-
#: modules/posts/skins/skin-base.php:
|
5299 |
-
#: modules/pricing/widgets/price-menu.php:
|
5300 |
#: modules/pricing/widgets/pricing-table.php:238
|
5301 |
#: modules/pricing/widgets/pricing-table.php:271
|
5302 |
#: modules/promo-box/widgets/promo-box.php:151
|
@@ -5326,8 +5328,8 @@ msgstr ""
|
|
5326 |
#: modules/info-table/widgets/info-table.php:248
|
5327 |
#: modules/logos/widgets/logo-carousel.php:228
|
5328 |
#: modules/logos/widgets/logo-grid.php:267
|
5329 |
-
#: modules/posts/skins/skin-base.php:
|
5330 |
-
#: modules/pricing/widgets/price-menu.php:
|
5331 |
#: modules/pricing/widgets/pricing-table.php:239
|
5332 |
#: modules/pricing/widgets/pricing-table.php:272
|
5333 |
#: modules/promo-box/widgets/promo-box.php:152
|
@@ -5357,8 +5359,8 @@ msgstr ""
|
|
5357 |
#: modules/info-table/widgets/info-table.php:249
|
5358 |
#: modules/logos/widgets/logo-carousel.php:229
|
5359 |
#: modules/logos/widgets/logo-grid.php:268
|
5360 |
-
#: modules/posts/skins/skin-base.php:
|
5361 |
-
#: modules/pricing/widgets/price-menu.php:
|
5362 |
#: modules/pricing/widgets/pricing-table.php:240
|
5363 |
#: modules/pricing/widgets/pricing-table.php:273
|
5364 |
#: modules/promo-box/widgets/promo-box.php:153
|
@@ -5388,8 +5390,8 @@ msgstr ""
|
|
5388 |
#: modules/info-table/widgets/info-table.php:250
|
5389 |
#: modules/logos/widgets/logo-carousel.php:230
|
5390 |
#: modules/logos/widgets/logo-grid.php:269
|
5391 |
-
#: modules/posts/skins/skin-base.php:
|
5392 |
-
#: modules/pricing/widgets/price-menu.php:
|
5393 |
#: modules/pricing/widgets/pricing-table.php:241
|
5394 |
#: modules/pricing/widgets/pricing-table.php:274
|
5395 |
#: modules/promo-box/widgets/promo-box.php:154
|
@@ -5419,8 +5421,8 @@ msgstr ""
|
|
5419 |
#: modules/info-table/widgets/info-table.php:251
|
5420 |
#: modules/logos/widgets/logo-carousel.php:231
|
5421 |
#: modules/logos/widgets/logo-grid.php:270
|
5422 |
-
#: modules/posts/skins/skin-base.php:
|
5423 |
-
#: modules/pricing/widgets/price-menu.php:
|
5424 |
#: modules/pricing/widgets/pricing-table.php:242
|
5425 |
#: modules/pricing/widgets/pricing-table.php:275
|
5426 |
#: modules/promo-box/widgets/promo-box.php:155
|
@@ -5450,8 +5452,8 @@ msgstr ""
|
|
5450 |
#: modules/info-table/widgets/info-table.php:252
|
5451 |
#: modules/logos/widgets/logo-carousel.php:232
|
5452 |
#: modules/logos/widgets/logo-grid.php:271
|
5453 |
-
#: modules/posts/skins/skin-base.php:
|
5454 |
-
#: modules/pricing/widgets/price-menu.php:
|
5455 |
#: modules/pricing/widgets/pricing-table.php:243
|
5456 |
#: modules/pricing/widgets/pricing-table.php:276
|
5457 |
#: modules/promo-box/widgets/promo-box.php:156
|
@@ -5481,8 +5483,8 @@ msgstr ""
|
|
5481 |
#: modules/info-table/widgets/info-table.php:253
|
5482 |
#: modules/logos/widgets/logo-carousel.php:233
|
5483 |
#: modules/logos/widgets/logo-grid.php:272
|
5484 |
-
#: modules/posts/skins/skin-base.php:
|
5485 |
-
#: modules/pricing/widgets/price-menu.php:
|
5486 |
#: modules/pricing/widgets/pricing-table.php:244
|
5487 |
#: modules/pricing/widgets/pricing-table.php:277
|
5488 |
#: modules/promo-box/widgets/promo-box.php:157
|
@@ -5512,8 +5514,8 @@ msgstr ""
|
|
5512 |
#: modules/info-table/widgets/info-table.php:254
|
5513 |
#: modules/logos/widgets/logo-carousel.php:234
|
5514 |
#: modules/logos/widgets/logo-grid.php:273
|
5515 |
-
#: modules/posts/skins/skin-base.php:
|
5516 |
-
#: modules/pricing/widgets/price-menu.php:
|
5517 |
#: modules/pricing/widgets/pricing-table.php:245
|
5518 |
#: modules/pricing/widgets/pricing-table.php:278
|
5519 |
#: modules/promo-box/widgets/promo-box.php:158
|
@@ -5543,8 +5545,8 @@ msgstr ""
|
|
5543 |
#: modules/info-table/widgets/info-table.php:255
|
5544 |
#: modules/logos/widgets/logo-carousel.php:235
|
5545 |
#: modules/logos/widgets/logo-grid.php:274
|
5546 |
-
#: modules/posts/skins/skin-base.php:
|
5547 |
-
#: modules/pricing/widgets/price-menu.php:
|
5548 |
#: modules/pricing/widgets/pricing-table.php:246
|
5549 |
#: modules/pricing/widgets/pricing-table.php:279
|
5550 |
#: modules/promo-box/widgets/promo-box.php:159
|
@@ -5559,7 +5561,7 @@ msgstr ""
|
|
5559 |
#: modules/content-ticker/widgets/content-ticker.php:249
|
5560 |
#: modules/content-ticker/widgets/content-ticker.php:259
|
5561 |
#: modules/content-ticker/widgets/content-ticker.php:1519
|
5562 |
-
#: modules/posts/skins/skin-base.php:
|
5563 |
msgid "Post Meta"
|
5564 |
msgstr ""
|
5565 |
|
@@ -5567,7 +5569,7 @@ msgstr ""
|
|
5567 |
#: modules/content-ticker/widgets/content-ticker.php:849
|
5568 |
#: modules/content-ticker/widgets/content-ticker.php:925
|
5569 |
#: modules/display-conditions/conditions/date-archive.php:54
|
5570 |
-
#: modules/posts/skins/skin-base.php:
|
5571 |
#: modules/posts/widgets/posts-base.php:385
|
5572 |
#: modules/posts/widgets/posts-base.php:461
|
5573 |
#. translators: %s Label
|
@@ -5584,14 +5586,14 @@ msgstr ""
|
|
5584 |
|
5585 |
#: modules/content-ticker/widgets/content-ticker.php:380
|
5586 |
#: modules/display-conditions/conditions/author-archive.php:55
|
5587 |
-
#: modules/posts/skins/skin-base.php:
|
5588 |
#: modules/posts/widgets/posts-base.php:301
|
5589 |
#: modules/posts/widgets/posts-base.php:350
|
5590 |
msgid "Author"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
#: modules/content-ticker/widgets/content-ticker.php:395
|
5594 |
-
#: modules/posts/skins/skin-base.php:
|
5595 |
msgid "Author Icon"
|
5596 |
msgstr ""
|
5597 |
|
@@ -5608,8 +5610,8 @@ msgid "Ticker Items"
|
|
5608 |
msgstr ""
|
5609 |
|
5610 |
#: modules/content-ticker/widgets/content-ticker.php:539
|
5611 |
-
#: modules/posts/skins/skin-base.php:
|
5612 |
-
#: modules/pricing/widgets/price-menu.php:
|
5613 |
msgid "Show Image"
|
5614 |
msgstr ""
|
5615 |
|
@@ -5746,7 +5748,7 @@ msgid ""
|
|
5746 |
msgstr ""
|
5747 |
|
5748 |
#: modules/content-ticker/widgets/content-ticker.php:905
|
5749 |
-
#: modules/posts/skins/skin-base.php:
|
5750 |
#: modules/posts/widgets/posts-base.php:441
|
5751 |
msgid "Order"
|
5752 |
msgstr ""
|
@@ -5767,7 +5769,7 @@ msgid "Order By"
|
|
5767 |
msgstr ""
|
5768 |
|
5769 |
#: modules/content-ticker/widgets/content-ticker.php:926
|
5770 |
-
#: modules/posts/skins/skin-base.php:
|
5771 |
#: modules/posts/widgets/posts-base.php:462
|
5772 |
msgid "Last Modified Date"
|
5773 |
msgstr ""
|
@@ -5788,7 +5790,7 @@ msgid "Post ID"
|
|
5788 |
msgstr ""
|
5789 |
|
5790 |
#: modules/content-ticker/widgets/content-ticker.php:931
|
5791 |
-
#: modules/posts/skins/skin-base.php:
|
5792 |
#: modules/posts/widgets/posts-base.php:467
|
5793 |
msgid "Post Author"
|
5794 |
msgstr ""
|
@@ -5893,7 +5895,7 @@ msgstr ""
|
|
5893 |
#: modules/info-box/widgets/info-box-carousel.php:650
|
5894 |
#: modules/instafeed/widgets/instafeed.php:714
|
5895 |
#: modules/logos/widgets/logo-carousel.php:350
|
5896 |
-
#: modules/posts/skins/skin-base.php:
|
5897 |
#: modules/team-member/widgets/team-member-carousel.php:615
|
5898 |
msgid "Autoplay"
|
5899 |
msgstr ""
|
@@ -5917,7 +5919,7 @@ msgstr ""
|
|
5917 |
#: modules/content-ticker/widgets/content-ticker.php:1164
|
5918 |
#: modules/info-box/widgets/info-box-carousel.php:696
|
5919 |
#: modules/instafeed/widgets/instafeed.php:746
|
5920 |
-
#: modules/posts/skins/skin-base.php:
|
5921 |
#: modules/team-member/widgets/team-member-carousel.php:644
|
5922 |
msgid "Autoplay Speed"
|
5923 |
msgstr ""
|
@@ -5926,7 +5928,7 @@ msgstr ""
|
|
5926 |
#: modules/info-box/widgets/info-box-carousel.php:716
|
5927 |
#: modules/instafeed/widgets/instafeed.php:760
|
5928 |
#: modules/logos/widgets/logo-carousel.php:399
|
5929 |
-
#: modules/posts/skins/skin-base.php:
|
5930 |
#: modules/team-member/widgets/team-member-carousel.php:664
|
5931 |
msgid "Infinite Loop"
|
5932 |
msgstr ""
|
@@ -5963,7 +5965,7 @@ msgstr ""
|
|
5963 |
#: modules/instafeed/widgets/instafeed.php:1871
|
5964 |
#: modules/logos/widgets/logo-carousel.php:434
|
5965 |
#: modules/logos/widgets/logo-carousel.php:771
|
5966 |
-
#: modules/posts/skins/skin-base.php:
|
5967 |
#: modules/team-member/widgets/team-member-carousel.php:699
|
5968 |
#: modules/team-member/widgets/team-member-carousel.php:1941
|
5969 |
msgid "Arrows"
|
@@ -5972,7 +5974,7 @@ msgstr ""
|
|
5972 |
#: modules/content-ticker/widgets/content-ticker.php:1562
|
5973 |
#: modules/image-accordion/widgets/image-accordion.php:478
|
5974 |
#: modules/info-list/widgets/info-list.php:462
|
5975 |
-
#: modules/pricing/widgets/price-menu.php:
|
5976 |
msgid "Items Spacing"
|
5977 |
msgstr ""
|
5978 |
|
@@ -5988,7 +5990,7 @@ msgstr ""
|
|
5988 |
#: modules/info-box/widgets/info-box-carousel.php:1851
|
5989 |
#: modules/instafeed/widgets/instafeed.php:1883
|
5990 |
#: modules/logos/widgets/logo-carousel.php:782
|
5991 |
-
#: modules/posts/skins/skin-base.php:
|
5992 |
#: modules/team-member/widgets/team-member-carousel.php:1952
|
5993 |
msgid "Choose Arrow"
|
5994 |
msgstr ""
|
@@ -5997,7 +5999,7 @@ msgstr ""
|
|
5997 |
#: modules/info-box/widgets/info-box-carousel.php:1888
|
5998 |
#: modules/instafeed/widgets/instafeed.php:1907
|
5999 |
#: modules/logos/widgets/logo-carousel.php:819
|
6000 |
-
#: modules/posts/skins/skin-base.php:
|
6001 |
#: modules/team-member/widgets/team-member-carousel.php:1989
|
6002 |
msgid "Arrows Size"
|
6003 |
msgstr ""
|
@@ -6067,7 +6069,7 @@ msgstr ""
|
|
6067 |
#: modules/info-box/widgets/info-box.php:761
|
6068 |
#: modules/info-list/widgets/info-list.php:964
|
6069 |
#: modules/link-effects/widgets/link-effects.php:203
|
6070 |
-
#: modules/pricing/widgets/price-menu.php:
|
6071 |
msgid "Justified"
|
6072 |
msgstr ""
|
6073 |
|
@@ -6119,7 +6121,7 @@ msgid "Number"
|
|
6119 |
msgstr ""
|
6120 |
|
6121 |
#: modules/counter/widgets/counter.php:1082
|
6122 |
-
#: modules/posts/skins/skin-base.php:
|
6123 |
msgid "Prefix"
|
6124 |
msgstr ""
|
6125 |
|
@@ -6361,7 +6363,7 @@ msgstr ""
|
|
6361 |
#: modules/divider/widgets/divider.php:156
|
6362 |
#: modules/info-box/widgets/info-box-carousel.php:800
|
6363 |
#: modules/instafeed/widgets/instafeed.php:843
|
6364 |
-
#: modules/posts/skins/skin-base.php:
|
6365 |
#: modules/team-member/widgets/team-member-carousel.php:739
|
6366 |
msgid "Direction"
|
6367 |
msgstr ""
|
@@ -6387,8 +6389,8 @@ msgstr ""
|
|
6387 |
#: modules/divider/widgets/divider.php:203
|
6388 |
#: modules/headings/widgets/dual-heading.php:166
|
6389 |
#: modules/headings/widgets/fancy-heading.php:151
|
6390 |
-
#: modules/posts/skins/skin-base.php:
|
6391 |
-
#: modules/pricing/widgets/price-menu.php:
|
6392 |
msgid "HTML Tag"
|
6393 |
msgstr ""
|
6394 |
|
@@ -6453,7 +6455,7 @@ msgstr ""
|
|
6453 |
#: modules/info-box/widgets/info-box.php:510
|
6454 |
#: modules/info-list/widgets/info-list.php:249
|
6455 |
#: modules/info-table/widgets/info-table.php:318
|
6456 |
-
#: modules/posts/skins/skin-base.php:
|
6457 |
msgid "Box"
|
6458 |
msgstr ""
|
6459 |
|
@@ -6462,7 +6464,7 @@ msgstr ""
|
|
6462 |
#: modules/info-box/widgets/info-box-carousel.php:327
|
6463 |
#: modules/info-list/widgets/info-list.php:260
|
6464 |
#: modules/info-table/widgets/info-table.php:341
|
6465 |
-
#: modules/posts/skins/skin-base.php:
|
6466 |
#: modules/pricing/widgets/pricing-table.php:1015
|
6467 |
#: modules/promo-box/widgets/promo-box.php:371
|
6468 |
msgid "Button Text"
|
@@ -6489,8 +6491,8 @@ msgstr ""
|
|
6489 |
#: modules/info-list/widgets/info-list.php:1171
|
6490 |
#: modules/info-table/widgets/info-table.php:1274
|
6491 |
#: modules/instafeed/widgets/instafeed.php:2592
|
6492 |
-
#: modules/posts/skins/skin-base.php:
|
6493 |
-
#: modules/posts/skins/skin-base.php:
|
6494 |
msgid "Button Icon"
|
6495 |
msgstr ""
|
6496 |
|
@@ -6522,7 +6524,7 @@ msgstr ""
|
|
6522 |
|
6523 |
#: modules/flipbox/widgets/flipbox.php:678
|
6524 |
#: modules/flipbox/widgets/flipbox.php:1032
|
6525 |
-
#: modules/pricing/widgets/price-menu.php:
|
6526 |
#: modules/pricing/widgets/pricing-table.php:1626
|
6527 |
msgid "Vertical Position"
|
6528 |
msgstr ""
|
@@ -6600,13 +6602,13 @@ msgstr ""
|
|
6600 |
#: modules/gravity-forms/widgets/gravity-forms.php:983
|
6601 |
#: modules/info-box/widgets/info-box-carousel.php:1431
|
6602 |
#: modules/info-box/widgets/info-box.php:1374
|
6603 |
-
#: modules/pricing/widgets/price-menu.php:
|
6604 |
msgid "Border Height"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
#: modules/gravity-forms/widgets/gravity-forms.php:1044
|
6608 |
-
#: modules/pricing/widgets/price-menu.php:
|
6609 |
-
#: modules/pricing/widgets/price-menu.php:
|
6610 |
#: modules/pricing/widgets/pricing-table.php:347
|
6611 |
msgid "Price"
|
6612 |
msgstr ""
|
@@ -6629,10 +6631,10 @@ msgstr ""
|
|
6629 |
#: modules/gravity-forms/widgets/gravity-forms.php:1564
|
6630 |
#: modules/info-box/widgets/info-box-carousel.php:772
|
6631 |
#: modules/instafeed/widgets/instafeed.php:812
|
6632 |
-
#: modules/posts/skins/skin-base.php:
|
6633 |
-
#: modules/posts/skins/skin-base.php:
|
6634 |
-
#: modules/posts/skins/skin-base.php:
|
6635 |
-
#: modules/posts/skins/skin-base.php:
|
6636 |
#: modules/team-member/widgets/team-member-carousel.php:711
|
6637 |
msgid "Pagination"
|
6638 |
msgstr ""
|
@@ -7204,7 +7206,7 @@ msgstr ""
|
|
7204 |
#: modules/image-accordion/widgets/image-accordion.php:185
|
7205 |
#: modules/info-box/widgets/info-box-carousel.php:312
|
7206 |
#: modules/info-box/widgets/info-box.php:543
|
7207 |
-
#: modules/posts/skins/skin-base.php:
|
7208 |
msgid "Show Button"
|
7209 |
msgstr ""
|
7210 |
|
@@ -7345,9 +7347,9 @@ msgstr ""
|
|
7345 |
#: modules/info-box/widgets/info-box-carousel.php:1368
|
7346 |
#: modules/info-box/widgets/info-box.php:430
|
7347 |
#: modules/info-box/widgets/info-box.php:1311
|
7348 |
-
#: modules/posts/skins/skin-base.php:
|
7349 |
-
#: modules/pricing/widgets/price-menu.php:
|
7350 |
-
#: modules/pricing/widgets/price-menu.php:
|
7351 |
msgid "Title Separator"
|
7352 |
msgstr ""
|
7353 |
|
@@ -7395,7 +7397,7 @@ msgid "Distance between slides (in px)"
|
|
7395 |
msgstr ""
|
7396 |
|
7397 |
#: modules/info-box/widgets/info-box-carousel.php:663
|
7398 |
-
#: modules/posts/skins/skin-base.php:
|
7399 |
msgid "Pause on Hover"
|
7400 |
msgstr ""
|
7401 |
|
@@ -7418,7 +7420,7 @@ msgstr ""
|
|
7418 |
#: modules/instafeed/widgets/instafeed.php:831
|
7419 |
#: modules/logos/widgets/logo-carousel.php:446
|
7420 |
#: modules/logos/widgets/logo-carousel.php:462
|
7421 |
-
#: modules/posts/skins/skin-base.php:
|
7422 |
#: modules/team-member/widgets/team-member-carousel.php:727
|
7423 |
msgid "Dots"
|
7424 |
msgstr ""
|
@@ -7524,7 +7526,7 @@ msgstr ""
|
|
7524 |
#: modules/info-box/widgets/info-box.php:1157
|
7525 |
#: modules/info-box/widgets/info-box.php:1240
|
7526 |
#: modules/info-box/widgets/info-box.php:1516
|
7527 |
-
#: modules/posts/skins/skin-base.php:
|
7528 |
msgid "Hover Color"
|
7529 |
msgstr ""
|
7530 |
|
@@ -7688,18 +7690,18 @@ msgid "General Settings"
|
|
7688 |
msgstr ""
|
7689 |
|
7690 |
#: modules/instafeed/widgets/instafeed.php:350
|
7691 |
-
#: modules/posts/skins/skin-base.php:
|
7692 |
#: modules/twitter/widgets/twitter-grid.php:74
|
7693 |
msgid "Grid"
|
7694 |
msgstr ""
|
7695 |
|
7696 |
#: modules/instafeed/widgets/instafeed.php:351
|
7697 |
-
#: modules/posts/skins/skin-base.php:
|
7698 |
msgid "Masonry"
|
7699 |
msgstr ""
|
7700 |
|
7701 |
#: modules/instafeed/widgets/instafeed.php:352
|
7702 |
-
#: modules/posts/skins/skin-base.php:
|
7703 |
msgid "Carousel"
|
7704 |
msgstr ""
|
7705 |
|
@@ -7716,7 +7718,7 @@ msgid "Likes"
|
|
7716 |
msgstr ""
|
7717 |
|
7718 |
#: modules/instafeed/widgets/instafeed.php:419
|
7719 |
-
#: modules/posts/skins/skin-base.php:
|
7720 |
msgid "Comments"
|
7721 |
msgstr ""
|
7722 |
|
@@ -7908,7 +7910,7 @@ msgid "Hand"
|
|
7908 |
msgstr ""
|
7909 |
|
7910 |
#: modules/instafeed/widgets/instafeed.php:2388
|
7911 |
-
#: modules/posts/skins/skin-base.php:
|
7912 |
msgid "Load More Button"
|
7913 |
msgstr ""
|
7914 |
|
@@ -8090,7 +8092,7 @@ msgid "Add Logos"
|
|
8090 |
msgstr ""
|
8091 |
|
8092 |
#: modules/logos/widgets/logo-grid.php:295
|
8093 |
-
#: modules/posts/skins/skin-base.php:
|
8094 |
msgid "Columns"
|
8095 |
msgstr ""
|
8096 |
|
@@ -8110,347 +8112,350 @@ msgstr ""
|
|
8110 |
msgid "Saved"
|
8111 |
msgstr ""
|
8112 |
|
8113 |
-
#: modules/posts/skins/skin-base.php:
|
8114 |
msgid "Equal Height"
|
8115 |
msgstr ""
|
8116 |
|
8117 |
-
#: modules/posts/skins/skin-base.php:
|
8118 |
msgid "Carousel Options"
|
8119 |
msgstr ""
|
8120 |
|
8121 |
-
#: modules/posts/skins/skin-base.php:
|
8122 |
msgid "Slides to Scroll"
|
8123 |
msgstr ""
|
8124 |
|
8125 |
-
#: modules/posts/skins/skin-base.php:
|
8126 |
msgid "Set how many slides are scrolled per swipe."
|
8127 |
msgstr ""
|
8128 |
|
8129 |
-
#: modules/posts/skins/skin-base.php:
|
8130 |
msgid "Animation Speed"
|
8131 |
msgstr ""
|
8132 |
|
8133 |
-
#: modules/posts/skins/skin-base.php:
|
8134 |
msgid "Adaptive Height"
|
8135 |
msgstr ""
|
8136 |
|
8137 |
-
#: modules/posts/skins/skin-base.php:
|
|
|
|
|
|
|
|
|
8138 |
msgid "Filters"
|
8139 |
msgstr ""
|
8140 |
|
8141 |
-
#: modules/posts/skins/skin-base.php:
|
8142 |
msgid "Show Filters"
|
8143 |
msgstr ""
|
8144 |
|
8145 |
-
#: modules/posts/skins/skin-base.php:
|
8146 |
msgid "This feature is available in PowerPack Pro."
|
8147 |
msgstr ""
|
8148 |
|
8149 |
-
#: modules/posts/skins/skin-base.php:
|
8150 |
msgid "Search Form"
|
8151 |
msgstr ""
|
8152 |
|
8153 |
-
#: modules/posts/skins/skin-base.php:
|
8154 |
#: modules/posts/widgets/posts-base.php:575
|
8155 |
msgid "Show Search Form"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
-
#: modules/posts/skins/skin-base.php:
|
8159 |
msgid "Post Terms"
|
8160 |
msgstr ""
|
8161 |
|
8162 |
-
#: modules/posts/skins/skin-base.php:
|
8163 |
msgid "Show Post Terms"
|
8164 |
msgstr ""
|
8165 |
|
8166 |
-
#: modules/posts/skins/skin-base.php:
|
8167 |
msgid "Select Taxonomy"
|
8168 |
msgstr ""
|
8169 |
|
8170 |
-
#: modules/posts/skins/skin-base.php:
|
8171 |
msgid "Max Terms to Show"
|
8172 |
msgstr ""
|
8173 |
|
8174 |
-
#: modules/posts/skins/skin-base.php:
|
8175 |
msgid "Link to Taxonomy"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
-
#: modules/posts/skins/skin-base.php:
|
8179 |
msgid "Terms Separator"
|
8180 |
msgstr ""
|
8181 |
|
8182 |
-
#: modules/posts/skins/skin-base.php:
|
8183 |
-
#: modules/posts/skins/skin-base.php:
|
8184 |
msgid "Link to Post"
|
8185 |
msgstr ""
|
8186 |
|
8187 |
-
#: modules/posts/skins/skin-base.php:
|
|
|
|
|
|
|
|
|
|
|
8188 |
msgid "Custom Height"
|
8189 |
msgstr ""
|
8190 |
|
8191 |
-
#: modules/posts/skins/skin-base.php:
|
8192 |
msgid "Image Ratio"
|
8193 |
msgstr ""
|
8194 |
|
8195 |
-
#: modules/posts/skins/skin-base.php:
|
8196 |
msgid "Image Location"
|
8197 |
msgstr ""
|
8198 |
|
8199 |
-
#: modules/posts/skins/skin-base.php:
|
8200 |
msgid "Inside Content Container"
|
8201 |
msgstr ""
|
8202 |
|
8203 |
-
#: modules/posts/skins/skin-base.php:
|
8204 |
msgid "Outside Content Container"
|
8205 |
msgstr ""
|
8206 |
|
8207 |
-
#: modules/posts/skins/skin-base.php:
|
8208 |
msgid "Fallback Image"
|
8209 |
msgstr ""
|
8210 |
|
8211 |
-
#: modules/posts/skins/skin-base.php:
|
8212 |
msgid ""
|
8213 |
"If a featured image is not available in post, it will display the first "
|
8214 |
"image from the post or default image placeholder or a custom image. You can "
|
8215 |
"choose None to do not display the fallback image."
|
8216 |
msgstr ""
|
8217 |
|
8218 |
-
#: modules/posts/skins/skin-base.php:
|
8219 |
msgid "Fallback Image Custom"
|
8220 |
msgstr ""
|
8221 |
|
8222 |
-
#: modules/posts/skins/skin-base.php:
|
8223 |
msgid "Post Title"
|
8224 |
msgstr ""
|
8225 |
|
8226 |
-
#: modules/posts/skins/skin-base.php:
|
8227 |
msgid "Show Content"
|
8228 |
msgstr ""
|
8229 |
|
8230 |
-
#: modules/posts/skins/skin-base.php:
|
8231 |
msgid "Excerpt"
|
8232 |
msgstr ""
|
8233 |
|
8234 |
-
#: modules/posts/skins/skin-base.php:
|
8235 |
msgid "Limited Content"
|
8236 |
msgstr ""
|
8237 |
|
8238 |
-
#: modules/posts/skins/skin-base.php:
|
8239 |
msgid "Full Content"
|
8240 |
msgstr ""
|
8241 |
|
8242 |
-
#: modules/posts/skins/skin-base.php:
|
8243 |
msgid "Excerpt Length"
|
8244 |
msgstr ""
|
8245 |
|
8246 |
-
#: modules/posts/skins/skin-base.php:
|
8247 |
msgid "Content Length"
|
8248 |
msgstr ""
|
8249 |
|
8250 |
-
#: modules/posts/skins/skin-base.php:
|
8251 |
msgid "Words"
|
8252 |
msgstr ""
|
8253 |
|
8254 |
-
#: modules/posts/skins/skin-base.php:
|
8255 |
msgid "Number of words to be displayed from the post content"
|
8256 |
msgstr ""
|
8257 |
|
8258 |
-
#: modules/posts/skins/skin-base.php:
|
8259 |
-
#: modules/posts/skins/skin-base.php:
|
8260 |
msgid "Meta"
|
8261 |
msgstr ""
|
8262 |
|
8263 |
-
#: modules/posts/skins/skin-base.php:
|
8264 |
msgid "Post Meta Separator"
|
8265 |
msgstr ""
|
8266 |
|
8267 |
-
#: modules/posts/skins/skin-base.php:
|
8268 |
msgid "Show Post Author"
|
8269 |
msgstr ""
|
8270 |
|
8271 |
-
#: modules/posts/skins/skin-base.php:
|
8272 |
msgid "Link to Author"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
-
#: modules/posts/skins/skin-base.php:
|
8276 |
msgid "Post Date"
|
8277 |
msgstr ""
|
8278 |
|
8279 |
-
#: modules/posts/skins/skin-base.php:
|
8280 |
msgid "Show Post Date"
|
8281 |
msgstr ""
|
8282 |
|
8283 |
-
#: modules/posts/skins/skin-base.php:
|
8284 |
msgid "Date Format"
|
8285 |
msgstr ""
|
8286 |
|
8287 |
-
#: modules/posts/skins/skin-base.php:
|
8288 |
msgid "Published Date"
|
8289 |
msgstr ""
|
8290 |
|
8291 |
-
#: modules/posts/skins/skin-base.php:
|
8292 |
msgid "Time Ago"
|
8293 |
msgstr ""
|
8294 |
|
8295 |
-
#: modules/posts/skins/skin-base.php:
|
|
|
8296 |
msgid "Custom Format"
|
8297 |
msgstr ""
|
8298 |
|
8299 |
-
#: modules/posts/skins/skin-base.php:
|
|
|
8300 |
msgid "Custom Meta Key"
|
8301 |
msgstr ""
|
8302 |
|
8303 |
-
#: modules/posts/skins/skin-base.php:
|
8304 |
msgid "Refer to PHP date formats <a href=\"%s\">here</a>"
|
8305 |
msgstr ""
|
8306 |
|
8307 |
-
#: modules/posts/skins/skin-base.php:
|
8308 |
msgid "Display the post date stored in custom meta key."
|
8309 |
msgstr ""
|
8310 |
|
8311 |
-
#: modules/posts/skins/skin-base.php:
|
8312 |
msgid "Date Icon"
|
8313 |
msgstr ""
|
8314 |
|
8315 |
-
#: modules/posts/skins/skin-base.php:
|
8316 |
msgid "Post Comments"
|
8317 |
msgstr ""
|
8318 |
|
8319 |
-
#: modules/posts/skins/skin-base.php:
|
8320 |
msgid "Show Post Comments"
|
8321 |
msgstr ""
|
8322 |
|
8323 |
-
#: modules/posts/skins/skin-base.php:
|
8324 |
msgid "Comments Icon"
|
8325 |
msgstr ""
|
8326 |
|
8327 |
-
#: modules/posts/skins/skin-base.php:
|
8328 |
-
#: modules/posts/skins/skin-base.php:
|
8329 |
-
#: modules/posts/skins/skin-base.php:
|
8330 |
msgid "Read More Button"
|
8331 |
msgstr ""
|
8332 |
|
8333 |
-
#: modules/posts/skins/skin-base.php:
|
8334 |
-
|
8335 |
-
msgstr ""
|
8336 |
-
|
8337 |
-
#: modules/posts/skins/skin-base.php:1209
|
8338 |
-
#: modules/posts/skins/skin-base.php:1210
|
8339 |
msgid "Numbers"
|
8340 |
msgstr ""
|
8341 |
|
8342 |
-
#: modules/posts/skins/skin-base.php:
|
8343 |
msgid "Previous/Next"
|
8344 |
msgstr ""
|
8345 |
|
8346 |
-
#: modules/posts/skins/skin-base.php:
|
8347 |
msgid "Infinite"
|
8348 |
msgstr ""
|
8349 |
|
8350 |
-
#: modules/posts/skins/skin-base.php:
|
8351 |
msgid "This pagination option is available in PowerPack Pro."
|
8352 |
msgstr ""
|
8353 |
|
8354 |
-
#: modules/posts/skins/skin-base.php:
|
8355 |
msgid "Pagination Position"
|
8356 |
msgstr ""
|
8357 |
|
8358 |
-
#: modules/posts/skins/skin-base.php:
|
8359 |
msgid "Ajax Pagination"
|
8360 |
msgstr ""
|
8361 |
|
8362 |
-
#: modules/posts/skins/skin-base.php:
|
8363 |
msgid "Page Limit"
|
8364 |
msgstr ""
|
8365 |
|
8366 |
-
#: modules/posts/skins/skin-base.php:
|
8367 |
msgid "Shorten"
|
8368 |
msgstr ""
|
8369 |
|
8370 |
-
#: modules/posts/skins/skin-base.php:
|
8371 |
msgid "Previous Label"
|
8372 |
msgstr ""
|
8373 |
|
8374 |
-
#: modules/posts/skins/skin-base.php:
|
8375 |
msgid "« Previous"
|
8376 |
msgstr ""
|
8377 |
|
8378 |
-
#: modules/posts/skins/skin-base.php:
|
8379 |
msgid "Next Label"
|
8380 |
msgstr ""
|
8381 |
|
8382 |
-
#: modules/posts/skins/skin-base.php:
|
8383 |
msgid "Next »"
|
8384 |
msgstr ""
|
8385 |
|
8386 |
-
#: modules/posts/skins/skin-base.php:
|
8387 |
msgid "Content Parts"
|
8388 |
msgstr ""
|
8389 |
|
8390 |
-
#: modules/posts/skins/skin-base.php:
|
8391 |
msgid "Thumbnail"
|
8392 |
msgstr ""
|
8393 |
|
8394 |
-
#: modules/posts/skins/skin-base.php:
|
8395 |
msgid "Terms"
|
8396 |
msgstr ""
|
8397 |
|
8398 |
-
#: modules/posts/skins/skin-base.php:
|
8399 |
msgid "Column Spacing"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
-
#: modules/posts/skins/skin-base.php:
|
8403 |
msgid "Row Spacing"
|
8404 |
msgstr ""
|
8405 |
|
8406 |
-
#: modules/posts/skins/skin-base.php:
|
8407 |
msgid "Content Container"
|
8408 |
msgstr ""
|
8409 |
|
8410 |
-
#: modules/posts/skins/skin-base.php:
|
8411 |
msgid "Separator Height"
|
8412 |
msgstr ""
|
8413 |
|
8414 |
-
#: modules/posts/skins/skin-base.php:
|
8415 |
msgid "Separator Width"
|
8416 |
msgstr ""
|
8417 |
|
8418 |
-
#: modules/posts/skins/skin-base.php:
|
8419 |
msgid "Terms Gap"
|
8420 |
msgstr ""
|
8421 |
|
8422 |
-
#: modules/posts/skins/skin-base.php:
|
8423 |
msgid "Links Color"
|
8424 |
msgstr ""
|
8425 |
|
8426 |
-
#: modules/posts/skins/skin-base.php:
|
8427 |
msgid "Links Hover Color"
|
8428 |
msgstr ""
|
8429 |
|
8430 |
-
#: modules/posts/skins/skin-base.php:
|
8431 |
msgid "Meta Items Spacing"
|
8432 |
msgstr ""
|
8433 |
|
8434 |
-
#: modules/posts/skins/skin-base.php:
|
8435 |
msgid "Align Arrows"
|
8436 |
msgstr ""
|
8437 |
|
8438 |
-
#: modules/posts/skins/skin-base.php:
|
8439 |
msgid "Gap between Posts & Pagination"
|
8440 |
msgstr ""
|
8441 |
|
8442 |
-
#: modules/posts/skins/skin-base.php:
|
8443 |
msgid "Space Between"
|
8444 |
msgstr ""
|
8445 |
|
8446 |
-
#: modules/posts/skins/skin-base.php:
|
8447 |
msgid "Loader"
|
8448 |
msgstr ""
|
8449 |
|
8450 |
-
#: modules/posts/skins/skin-base.php:4905
|
8451 |
-
msgid "Select"
|
8452 |
-
msgstr ""
|
8453 |
-
|
8454 |
#: modules/posts/skins/skin-card.php:45
|
8455 |
msgid "Card"
|
8456 |
msgstr ""
|
@@ -8581,82 +8586,82 @@ msgstr ""
|
|
8581 |
msgid "Posts Per Page"
|
8582 |
msgstr ""
|
8583 |
|
8584 |
-
#: modules/pricing/widgets/price-menu.php:
|
8585 |
msgid ""
|
8586 |
"I am item content. Double click here to change this text. Lorem ipsum dolor "
|
8587 |
"sit amet, consectetur adipiscing elit."
|
8588 |
msgstr ""
|
8589 |
|
8590 |
-
#: modules/pricing/widgets/price-menu.php:
|
8591 |
#: modules/pricing/widgets/pricing-table.php:372
|
8592 |
msgid "Discount"
|
8593 |
msgstr ""
|
8594 |
|
8595 |
-
#: modules/pricing/widgets/price-menu.php:
|
8596 |
-
#: modules/pricing/widgets/price-menu.php:
|
8597 |
#: modules/pricing/widgets/pricing-table.php:384
|
8598 |
#: modules/pricing/widgets/pricing-table.php:1725
|
8599 |
msgid "Original Price"
|
8600 |
msgstr ""
|
8601 |
|
8602 |
-
#: modules/pricing/widgets/price-menu.php:
|
8603 |
msgid "Menu Item #1"
|
8604 |
msgstr ""
|
8605 |
|
8606 |
-
#: modules/pricing/widgets/price-menu.php:
|
8607 |
msgid "Menu Item #2"
|
8608 |
msgstr ""
|
8609 |
|
8610 |
-
#: modules/pricing/widgets/price-menu.php:
|
8611 |
msgid "Menu Item #3"
|
8612 |
msgstr ""
|
8613 |
|
8614 |
-
#: modules/pricing/widgets/price-menu.php:
|
8615 |
msgid "Menu Style"
|
8616 |
msgstr ""
|
8617 |
|
8618 |
-
#: modules/pricing/widgets/price-menu.php:
|
8619 |
msgid "PowerPack Style"
|
8620 |
msgstr ""
|
8621 |
|
8622 |
-
#: modules/pricing/widgets/price-menu.php:
|
8623 |
msgid "Style 1"
|
8624 |
msgstr ""
|
8625 |
|
8626 |
-
#: modules/pricing/widgets/price-menu.php:
|
8627 |
msgid "Style 2"
|
8628 |
msgstr ""
|
8629 |
|
8630 |
-
#: modules/pricing/widgets/price-menu.php:
|
8631 |
msgid "Style 3"
|
8632 |
msgstr ""
|
8633 |
|
8634 |
-
#: modules/pricing/widgets/price-menu.php:
|
8635 |
msgid "Style 4"
|
8636 |
msgstr ""
|
8637 |
|
8638 |
-
#: modules/pricing/widgets/price-menu.php:
|
8639 |
-
#: modules/pricing/widgets/price-menu.php:
|
8640 |
msgid "Title-Price Connector"
|
8641 |
msgstr ""
|
8642 |
|
8643 |
-
#: modules/pricing/widgets/price-menu.php:
|
8644 |
msgid "Menu Items"
|
8645 |
msgstr ""
|
8646 |
|
8647 |
-
#: modules/pricing/widgets/price-menu.php:
|
8648 |
msgid "Price Badge"
|
8649 |
msgstr ""
|
8650 |
|
8651 |
-
#: modules/pricing/widgets/price-menu.php:
|
8652 |
msgid "Strikethrough"
|
8653 |
msgstr ""
|
8654 |
|
8655 |
-
#: modules/pricing/widgets/price-menu.php:
|
8656 |
msgid "Original Price Color"
|
8657 |
msgstr ""
|
8658 |
|
8659 |
-
#: modules/pricing/widgets/price-menu.php:
|
8660 |
msgid "Original Price Typography"
|
8661 |
msgstr ""
|
8662 |
|
@@ -9663,7 +9668,7 @@ msgctxt "Transition Control"
|
|
9663 |
msgid "Transition"
|
9664 |
msgstr ""
|
9665 |
|
9666 |
-
#: modules/posts/skins/skin-base.php:
|
9667 |
msgctxt "%s = human-readable time difference"
|
9668 |
msgid "%s ago"
|
9669 |
msgstr ""
|
2 |
# This file is distributed under the GNU General Public License v2.0.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: PowerPack Lite for Elementor 2.5.3\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/powerpack-lite-for-elementor\n"
|
8 |
+
"POT-Creation-Date: 2021-08-04 07:56:07+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
25 |
"X-Textdomain-Support: yes\n"
|
26 |
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
27 |
|
28 |
+
#: modules/buttons/widgets/buttons.php:224
|
29 |
#: modules/hotspots/widgets/hotspots.php:436
|
30 |
#: modules/info-list/widgets/info-list.php:235
|
31 |
#: modules/instafeed/widgets/instafeed.php:383
|
74 |
msgstr ""
|
75 |
|
76 |
#: base/powerpack-widget.php:44 extensions/upgrade-pro.php:79
|
77 |
+
#: modules/buttons/widgets/buttons.php:556
|
78 |
#: modules/caldera-forms/widgets/caldera-forms.php:279
|
79 |
#: modules/contact-form-seven/widgets/contact-form-7.php:252
|
80 |
#: modules/content-reveal/widgets/content-reveal.php:443
|
81 |
#: modules/formidable-forms/widgets/formidable-forms.php:291
|
82 |
#: modules/gravity-forms/widgets/gravity-forms.php:364
|
83 |
#: modules/ninja-forms/widgets/ninja-forms.php:264
|
84 |
+
#: modules/posts/skins/skin-base.php:1635
|
85 |
#: modules/scroll-image/widgets/scroll-image.php:315
|
86 |
msgid "Get PowerPack Pro"
|
87 |
msgstr ""
|
88 |
|
89 |
#: base/powerpack-widget.php:50 extensions/upgrade-pro.php:89
|
90 |
+
#: modules/buttons/widgets/buttons.php:566
|
91 |
#: modules/caldera-forms/widgets/caldera-forms.php:289
|
92 |
#: modules/contact-form-seven/widgets/contact-form-7.php:262
|
93 |
#: modules/content-reveal/widgets/content-reveal.php:453
|
94 |
#: modules/formidable-forms/widgets/formidable-forms.php:301
|
95 |
#: modules/gravity-forms/widgets/gravity-forms.php:374
|
96 |
#: modules/ninja-forms/widgets/ninja-forms.php:274
|
97 |
+
#: modules/posts/skins/skin-base.php:377 modules/posts/skins/skin-base.php:429
|
98 |
+
#: modules/posts/skins/skin-base.php:1263
|
99 |
+
#: modules/posts/skins/skin-base.php:1645 modules/posts/widgets/posts.php:106
|
100 |
#: modules/scroll-image/widgets/scroll-image.php:325
|
101 |
msgid ""
|
102 |
"Upgrade to %1$s Pro Version %2$s for 70+ widgets, exciting extensions and "
|
151 |
msgstr ""
|
152 |
|
153 |
#: classes/class-pp-config.php:60 includes/helper-functions.php:403
|
154 |
+
#: modules/buttons/widgets/buttons.php:120
|
155 |
+
#: modules/buttons/widgets/buttons.php:535
|
156 |
#: modules/twitter/widgets/twitter-buttons.php:74
|
157 |
msgid "Buttons"
|
158 |
msgstr ""
|
290 |
msgstr ""
|
291 |
|
292 |
#: classes/class-pp-config.php:249 includes/helper-functions.php:388
|
293 |
+
#: modules/pricing/widgets/price-menu.php:95
|
294 |
msgid "Price Menu"
|
295 |
msgstr ""
|
296 |
|
1251 |
msgid "Adds upgrade PowerPack notice to all widgets of PowerPack."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: extensions/wrapper-link.php:56
|
1255 |
msgid "Adds link around sections, columns and widgets."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: extensions/wrapper-link.php:137 includes/helper-functions.php:457
|
1259 |
msgid "Wrapper Link"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: extensions/wrapper-link.php:140
|
1263 |
#: modules/business-hours/widgets/business-hours.php:208
|
1264 |
#: modules/business-hours/widgets/business-hours.php:265
|
1265 |
#: modules/business-hours/widgets/business-hours.php:361
|
1266 |
#: modules/business-hours/widgets/business-hours.php:404
|
1267 |
#: modules/business-hours/widgets/business-hours.php:488
|
1268 |
#: modules/business-hours/widgets/business-hours.php:618
|
1269 |
+
#: modules/buttons/widgets/buttons.php:240
|
1270 |
#: modules/caldera-forms/widgets/caldera-forms.php:140
|
1271 |
#: modules/caldera-forms/widgets/caldera-forms.php:910
|
1272 |
#: modules/contact-form-seven/widgets/contact-form-7.php:699
|
1328 |
#: modules/logos/widgets/logo-grid.php:627
|
1329 |
#: modules/ninja-forms/widgets/ninja-forms.php:119
|
1330 |
#: modules/ninja-forms/widgets/ninja-forms.php:878
|
1331 |
+
#: modules/posts/skins/skin-base.php:132 modules/posts/skins/skin-base.php:196
|
1332 |
+
#: modules/posts/skins/skin-base.php:212 modules/posts/skins/skin-base.php:228
|
1333 |
+
#: modules/posts/skins/skin-base.php:258 modules/posts/skins/skin-base.php:275
|
1334 |
+
#: modules/posts/skins/skin-base.php:291 modules/posts/skins/skin-base.php:307
|
1335 |
+
#: modules/posts/skins/skin-base.php:361 modules/posts/skins/skin-base.php:414
|
1336 |
+
#: modules/posts/skins/skin-base.php:458 modules/posts/skins/skin-base.php:519
|
1337 |
+
#: modules/posts/skins/skin-base.php:564 modules/posts/skins/skin-base.php:576
|
1338 |
+
#: modules/posts/skins/skin-base.php:603 modules/posts/skins/skin-base.php:723
|
1339 |
+
#: modules/posts/skins/skin-base.php:735 modules/posts/skins/skin-base.php:785
|
1340 |
+
#: modules/posts/skins/skin-base.php:814 modules/posts/skins/skin-base.php:889
|
1341 |
+
#: modules/posts/skins/skin-base.php:928 modules/posts/skins/skin-base.php:943
|
1342 |
+
#: modules/posts/skins/skin-base.php:997 modules/posts/skins/skin-base.php:1012
|
1343 |
+
#: modules/posts/skins/skin-base.php:1124
|
1344 |
+
#: modules/posts/skins/skin-base.php:1164
|
1345 |
#: modules/posts/widgets/posts-base.php:484
|
1346 |
#: modules/posts/widgets/posts-base.php:500
|
1347 |
#: modules/posts/widgets/posts-base.php:530
|
1348 |
#: modules/posts/widgets/posts-base.php:577
|
1349 |
+
#: modules/pricing/widgets/price-menu.php:311
|
1350 |
+
#: modules/pricing/widgets/price-menu.php:326
|
1351 |
#: modules/pricing/widgets/pricing-table.php:442
|
1352 |
#: modules/pricing/widgets/pricing-table.php:562
|
1353 |
#: modules/pricing/widgets/pricing-table.php:629
|
1373 |
msgid "Yes"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: extensions/wrapper-link.php:141
|
1377 |
#: modules/business-hours/widgets/business-hours.php:207
|
1378 |
#: modules/business-hours/widgets/business-hours.php:266
|
1379 |
#: modules/business-hours/widgets/business-hours.php:360
|
1380 |
#: modules/business-hours/widgets/business-hours.php:405
|
1381 |
#: modules/business-hours/widgets/business-hours.php:489
|
1382 |
#: modules/business-hours/widgets/business-hours.php:619
|
1383 |
+
#: modules/buttons/widgets/buttons.php:241
|
1384 |
#: modules/caldera-forms/widgets/caldera-forms.php:141
|
1385 |
#: modules/caldera-forms/widgets/caldera-forms.php:911
|
1386 |
#: modules/contact-form-seven/widgets/contact-form-7.php:700
|
1442 |
#: modules/logos/widgets/logo-grid.php:628
|
1443 |
#: modules/ninja-forms/widgets/ninja-forms.php:120
|
1444 |
#: modules/ninja-forms/widgets/ninja-forms.php:879
|
1445 |
+
#: modules/posts/skins/skin-base.php:133 modules/posts/skins/skin-base.php:197
|
1446 |
+
#: modules/posts/skins/skin-base.php:213 modules/posts/skins/skin-base.php:229
|
1447 |
+
#: modules/posts/skins/skin-base.php:259 modules/posts/skins/skin-base.php:276
|
1448 |
+
#: modules/posts/skins/skin-base.php:292 modules/posts/skins/skin-base.php:308
|
1449 |
+
#: modules/posts/skins/skin-base.php:362 modules/posts/skins/skin-base.php:415
|
1450 |
+
#: modules/posts/skins/skin-base.php:459 modules/posts/skins/skin-base.php:520
|
1451 |
+
#: modules/posts/skins/skin-base.php:565 modules/posts/skins/skin-base.php:577
|
1452 |
+
#: modules/posts/skins/skin-base.php:604 modules/posts/skins/skin-base.php:724
|
1453 |
+
#: modules/posts/skins/skin-base.php:736 modules/posts/skins/skin-base.php:786
|
1454 |
+
#: modules/posts/skins/skin-base.php:815 modules/posts/skins/skin-base.php:890
|
1455 |
+
#: modules/posts/skins/skin-base.php:929 modules/posts/skins/skin-base.php:944
|
1456 |
+
#: modules/posts/skins/skin-base.php:998 modules/posts/skins/skin-base.php:1013
|
1457 |
+
#: modules/posts/skins/skin-base.php:1125
|
1458 |
+
#: modules/posts/skins/skin-base.php:1165
|
1459 |
#: modules/posts/widgets/posts-base.php:485
|
1460 |
#: modules/posts/widgets/posts-base.php:501
|
1461 |
#: modules/posts/widgets/posts-base.php:531
|
1462 |
#: modules/posts/widgets/posts-base.php:578
|
1463 |
+
#: modules/pricing/widgets/price-menu.php:312
|
1464 |
+
#: modules/pricing/widgets/price-menu.php:327
|
1465 |
#: modules/pricing/widgets/pricing-table.php:443
|
1466 |
#: modules/pricing/widgets/pricing-table.php:563
|
1467 |
#: modules/pricing/widgets/pricing-table.php:630
|
1487 |
msgid "No"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: extensions/wrapper-link.php:150 modules/buttons/widgets/buttons.php:262
|
1491 |
#: modules/content-ticker/widgets/content-ticker.php:516
|
1492 |
#: modules/flipbox/widgets/flipbox.php:421
|
1493 |
#: modules/headings/widgets/dual-heading.php:149
|
1506 |
#: modules/link-effects/widgets/link-effects.php:140
|
1507 |
#: modules/logos/widgets/logo-carousel.php:195
|
1508 |
#: modules/logos/widgets/logo-grid.php:148
|
1509 |
+
#: modules/pricing/widgets/price-menu.php:213
|
1510 |
#: modules/pricing/widgets/pricing-table.php:1027
|
1511 |
#: modules/promo-box/widgets/promo-box.php:386
|
1512 |
#: modules/random-image/widgets/random-image.php:298
|
1711 |
#: modules/ninja-forms/widgets/ninja-forms.php:128
|
1712 |
#: modules/ninja-forms/widgets/ninja-forms.php:144
|
1713 |
#: modules/ninja-forms/widgets/ninja-forms.php:329
|
1714 |
+
#: modules/posts/skins/skin-base.php:713 modules/posts/skins/skin-base.php:1461
|
1715 |
+
#: modules/posts/skins/skin-base.php:2043
|
1716 |
#: modules/posts/widgets/posts-base.php:465
|
1717 |
+
#: modules/pricing/widgets/price-menu.php:104
|
|
|
1718 |
#: modules/pricing/widgets/price-menu.php:110
|
1719 |
+
#: modules/pricing/widgets/price-menu.php:111
|
1720 |
+
#: modules/pricing/widgets/price-menu.php:504
|
1721 |
#: modules/pricing/widgets/pricing-table.php:221
|
1722 |
#: modules/pricing/widgets/pricing-table.php:226
|
1723 |
#: modules/pricing/widgets/pricing-table.php:867
|
1738 |
|
1739 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:166
|
1740 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:948
|
1741 |
+
#: modules/buttons/widgets/buttons.php:160
|
1742 |
+
#: modules/buttons/widgets/buttons.php:177
|
1743 |
+
#: modules/buttons/widgets/buttons.php:909
|
1744 |
#: modules/content-reveal/widgets/content-reveal.php:357
|
1745 |
#: modules/content-reveal/widgets/content-reveal.php:389
|
1746 |
#: modules/content-reveal/widgets/content-reveal.php:885
|
1800 |
|
1801 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:176
|
1802 |
#: modules/content-reveal/widgets/content-reveal.php:119
|
1803 |
+
#: modules/posts/skins/skin-base.php:823
|
1804 |
msgid "Content Type"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:180
|
1808 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:193
|
1809 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1012
|
1810 |
+
#: modules/buttons/widgets/buttons.php:130
|
1811 |
#: modules/content-reveal/widgets/content-reveal.php:112
|
1812 |
#: modules/content-reveal/widgets/content-reveal.php:123
|
1813 |
#: modules/content-reveal/widgets/content-reveal.php:464
|
1821 |
#: modules/info-table/widgets/info-table.php:202
|
1822 |
#: modules/instafeed/widgets/instafeed.php:1086
|
1823 |
#: modules/logos/widgets/logo-grid.php:118
|
1824 |
+
#: modules/posts/skins/skin-base.php:804 modules/posts/skins/skin-base.php:2438
|
1825 |
+
#: modules/pricing/widgets/price-menu.php:471
|
1826 |
#: modules/promo-box/widgets/promo-box.php:127
|
1827 |
#: modules/promo-box/widgets/promo-box.php:572
|
1828 |
#: modules/team-member/widgets/team-member-carousel.php:136
|
1833 |
|
1834 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:181
|
1835 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:206
|
1836 |
+
#: modules/buttons/widgets/buttons.php:164
|
1837 |
+
#: modules/buttons/widgets/buttons.php:193
|
1838 |
#: modules/content-ticker/widgets/content-ticker.php:167
|
1839 |
#: modules/content-ticker/widgets/content-ticker.php:534
|
1840 |
#: modules/content-ticker/widgets/content-ticker.php:1658
|
1862 |
#: modules/info-list/widgets/info-list.php:217
|
1863 |
#: modules/info-table/widgets/info-table.php:127
|
1864 |
#: modules/info-table/widgets/info-table.php:158
|
1865 |
+
#: modules/posts/skins/skin-base.php:554 modules/posts/skins/skin-base.php:1926
|
1866 |
+
#: modules/pricing/widgets/price-menu.php:189
|
1867 |
+
#: modules/pricing/widgets/price-menu.php:901
|
1868 |
#: modules/pricing/widgets/pricing-table.php:168
|
1869 |
#: modules/pricing/widgets/pricing-table.php:195
|
1870 |
#: modules/promo-box/widgets/promo-box.php:273
|
1912 |
msgstr ""
|
1913 |
|
1914 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:230
|
1915 |
+
#: modules/buttons/widgets/buttons.php:211
|
1916 |
#: modules/content-ticker/widgets/content-ticker.php:205
|
1917 |
#: modules/hotspots/widgets/hotspots.php:155
|
1918 |
#: modules/icon-list/widgets/icon-list.php:274
|
1921 |
#: modules/info-list/widgets/info-list.php:350
|
1922 |
#: modules/logos/widgets/logo-carousel.php:214
|
1923 |
#: modules/logos/widgets/logo-grid.php:402
|
1924 |
+
#: modules/posts/skins/skin-base.php:648
|
1925 |
+
#: modules/pricing/widgets/price-menu.php:250
|
1926 |
#: modules/random-image/widgets/random-image.php:220
|
1927 |
#: modules/scroll-image/widgets/scroll-image.php:125
|
1928 |
#: modules/team-member/widgets/team-member-carousel.php:414
|
2144 |
#: modules/link-effects/widgets/link-effects.php:229
|
2145 |
#: modules/logos/widgets/logo-carousel.php:489
|
2146 |
#: modules/logos/widgets/logo-grid.php:444
|
2147 |
+
#: modules/posts/skins/skin-base.php:1602
|
2148 |
+
#: modules/pricing/widgets/price-menu.php:348
|
2149 |
#: modules/pricing/widgets/pricing-table.php:1069
|
2150 |
#: modules/promo-box/widgets/promo-box.php:418
|
2151 |
#: modules/random-image/widgets/random-image.php:346
|
2175 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1152
|
2176 |
#: modules/business-hours/widgets/business-hours.php:572
|
2177 |
#: modules/business-hours/widgets/business-hours.php:885
|
2178 |
+
#: modules/buttons/widgets/buttons.php:409
|
2179 |
+
#: modules/buttons/widgets/buttons.php:781
|
2180 |
+
#: modules/buttons/widgets/buttons.php:984
|
2181 |
#: modules/caldera-forms/widgets/caldera-forms.php:553
|
2182 |
#: modules/caldera-forms/widgets/caldera-forms.php:947
|
2183 |
#: modules/caldera-forms/widgets/caldera-forms.php:1177
|
2231 |
#: modules/ninja-forms/widgets/ninja-forms.php:517
|
2232 |
#: modules/ninja-forms/widgets/ninja-forms.php:915
|
2233 |
#: modules/ninja-forms/widgets/ninja-forms.php:1146
|
2234 |
+
#: modules/posts/skins/skin-base.php:1735
|
2235 |
+
#: modules/posts/skins/skin-base.php:1976
|
2236 |
+
#: modules/posts/skins/skin-base.php:2324
|
2237 |
+
#: modules/posts/skins/skin-base.php:2684
|
2238 |
+
#: modules/posts/skins/skin-base.php:3004
|
2239 |
+
#: modules/posts/skins/skin-base.php:3224
|
2240 |
+
#: modules/posts/skins/skin-base.php:3455
|
2241 |
#: modules/pricing/widgets/pricing-table.php:364
|
2242 |
#: modules/pricing/widgets/pricing-table.php:2445
|
2243 |
#: modules/promo-box/widgets/promo-box.php:781
|
2262 |
#: modules/gravity-forms/widgets/gravity-forms.php:963
|
2263 |
#: modules/info-box/widgets/info-box-carousel.php:1379
|
2264 |
#: modules/info-box/widgets/info-box.php:1322
|
2265 |
+
#: modules/pricing/widgets/price-menu.php:595
|
2266 |
#: modules/promo-box/widgets/promo-box.php:1029
|
2267 |
#: modules/promo-box/widgets/promo-box.php:1262
|
2268 |
msgid "Border Type"
|
2270 |
|
2271 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:590
|
2272 |
#: modules/business-hours/widgets/business-hours.php:814
|
2273 |
+
#: modules/buttons/widgets/buttons.php:156
|
2274 |
+
#: modules/buttons/widgets/buttons.php:724
|
2275 |
#: modules/content-ticker/widgets/content-ticker.php:165
|
2276 |
#: modules/counter/widgets/counter.php:268
|
2277 |
#: modules/flipbox/widgets/flipbox.php:146
|
2292 |
#: modules/info-table/widgets/info-table.php:119
|
2293 |
#: modules/info-table/widgets/info-table.php:317
|
2294 |
#: modules/instafeed/widgets/instafeed.php:255
|
2295 |
+
#: modules/posts/skins/skin-base.php:680 modules/posts/skins/skin-base.php:1246
|
2296 |
#: modules/posts/widgets/posts-base.php:369
|
2297 |
+
#: modules/pricing/widgets/price-menu.php:599
|
2298 |
#: modules/pricing/widgets/pricing-table.php:160
|
2299 |
#: modules/pricing/widgets/pricing-table.php:305
|
2300 |
#: modules/pricing/widgets/pricing-table.php:1007
|
2319 |
#: modules/info-box/widgets/info-box.php:1327
|
2320 |
#: modules/info-list/widgets/info-list.php:570
|
2321 |
#: modules/instafeed/widgets/instafeed.php:1395
|
2322 |
+
#: modules/pricing/widgets/price-menu.php:600
|
2323 |
+
#: modules/pricing/widgets/price-menu.php:1085
|
2324 |
#: modules/promo-box/widgets/promo-box.php:1033
|
2325 |
#: modules/promo-box/widgets/promo-box.php:1266
|
2326 |
#: modules/team-member/widgets/team-member-carousel.php:1233
|
2341 |
#: modules/info-box/widgets/info-box-carousel.php:1385
|
2342 |
#: modules/info-box/widgets/info-box.php:1328
|
2343 |
#: modules/info-list/widgets/info-list.php:571
|
2344 |
+
#: modules/pricing/widgets/price-menu.php:601
|
2345 |
+
#: modules/pricing/widgets/price-menu.php:1088
|
2346 |
#: modules/promo-box/widgets/promo-box.php:1034
|
2347 |
#: modules/promo-box/widgets/promo-box.php:1267
|
2348 |
#: modules/team-member/widgets/team-member-carousel.php:1236
|
2364 |
#: modules/info-box/widgets/info-box-carousel.php:1386
|
2365 |
#: modules/info-box/widgets/info-box.php:1329
|
2366 |
#: modules/info-list/widgets/info-list.php:572
|
2367 |
+
#: modules/pricing/widgets/price-menu.php:602
|
2368 |
+
#: modules/pricing/widgets/price-menu.php:1087
|
2369 |
#: modules/promo-box/widgets/promo-box.php:1035
|
2370 |
#: modules/promo-box/widgets/promo-box.php:1268
|
2371 |
#: modules/team-member/widgets/team-member-carousel.php:1234
|
2387 |
#: modules/info-box/widgets/info-box.php:1344
|
2388 |
#: modules/logos/widgets/logo-grid.php:210
|
2389 |
#: modules/ninja-forms/widgets/ninja-forms.php:940
|
2390 |
+
#: modules/pricing/widgets/price-menu.php:642
|
2391 |
#: modules/wpforms/widgets/wpforms.php:873
|
2392 |
msgid "Border Width"
|
2393 |
msgstr ""
|
2399 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:932
|
2400 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1267
|
2401 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1326
|
2402 |
+
#: modules/buttons/widgets/buttons.php:519
|
2403 |
+
#: modules/buttons/widgets/buttons.php:874
|
2404 |
#: modules/caldera-forms/widgets/caldera-forms.php:994
|
2405 |
#: modules/caldera-forms/widgets/caldera-forms.php:1314
|
2406 |
#: modules/contact-form-seven/widgets/contact-form-7.php:837
|
2445 |
#: modules/logos/widgets/logo-grid.php:195
|
2446 |
#: modules/ninja-forms/widgets/ninja-forms.php:962
|
2447 |
#: modules/ninja-forms/widgets/ninja-forms.php:1264
|
2448 |
+
#: modules/posts/skins/skin-base.php:1818
|
2449 |
+
#: modules/posts/skins/skin-base.php:2870
|
2450 |
+
#: modules/posts/skins/skin-base.php:3123
|
2451 |
+
#: modules/posts/skins/skin-base.php:3334
|
2452 |
+
#: modules/posts/skins/skin-base.php:3379
|
2453 |
+
#: modules/posts/skins/skin-base.php:3600
|
2454 |
+
#: modules/posts/skins/skin-base.php:3671
|
2455 |
+
#: modules/pricing/widgets/price-menu.php:668
|
2456 |
#: modules/promo-box/widgets/promo-box.php:1107
|
2457 |
#: modules/promo-box/widgets/promo-box.php:1340
|
2458 |
#: modules/promo-box/widgets/promo-box.php:1601
|
2470 |
|
2471 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:645
|
2472 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1203
|
2473 |
+
#: modules/buttons/widgets/buttons.php:461
|
2474 |
+
#: modules/buttons/widgets/buttons.php:824
|
2475 |
+
#: modules/buttons/widgets/buttons.php:1123
|
2476 |
#: modules/caldera-forms/widgets/caldera-forms.php:596
|
2477 |
#: modules/caldera-forms/widgets/caldera-forms.php:1020
|
2478 |
#: modules/caldera-forms/widgets/caldera-forms.php:1046
|
2549 |
#: modules/ninja-forms/widgets/ninja-forms.php:988
|
2550 |
#: modules/ninja-forms/widgets/ninja-forms.php:1014
|
2551 |
#: modules/ninja-forms/widgets/ninja-forms.php:1188
|
2552 |
+
#: modules/posts/skins/skin-base.php:1765
|
2553 |
+
#: modules/posts/skins/skin-base.php:1895
|
2554 |
+
#: modules/posts/skins/skin-base.php:1937
|
2555 |
+
#: modules/posts/skins/skin-base.php:2360
|
2556 |
+
#: modules/posts/skins/skin-base.php:2738
|
2557 |
+
#: modules/posts/skins/skin-base.php:3062
|
2558 |
+
#: modules/posts/skins/skin-base.php:3266
|
2559 |
+
#: modules/posts/skins/skin-base.php:3512
|
2560 |
+
#: modules/pricing/widgets/price-menu.php:443
|
2561 |
+
#: modules/pricing/widgets/price-menu.php:984
|
2562 |
#: modules/pricing/widgets/pricing-table.php:1336
|
2563 |
#: modules/pricing/widgets/pricing-table.php:1506
|
2564 |
#: modules/pricing/widgets/pricing-table.php:2228
|
2591 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1229
|
2592 |
#: modules/business-hours/widgets/business-hours.php:593
|
2593 |
#: modules/business-hours/widgets/business-hours.php:1008
|
2594 |
+
#: modules/buttons/widgets/buttons.php:473
|
2595 |
+
#: modules/buttons/widgets/buttons.php:845
|
2596 |
+
#: modules/buttons/widgets/buttons.php:1005
|
2597 |
#: modules/caldera-forms/widgets/caldera-forms.php:1283
|
2598 |
#: modules/contact-form-seven/widgets/contact-form-7.php:1128
|
2599 |
#: modules/content-reveal/widgets/content-reveal.php:780
|
2635 |
#: modules/logos/widgets/logo-carousel.php:1178
|
2636 |
#: modules/logos/widgets/logo-grid.php:577
|
2637 |
#: modules/ninja-forms/widgets/ninja-forms.php:1233
|
2638 |
+
#: modules/posts/skins/skin-base.php:1799
|
2639 |
+
#: modules/posts/skins/skin-base.php:2011
|
2640 |
+
#: modules/posts/skins/skin-base.php:2392
|
2641 |
+
#: modules/posts/skins/skin-base.php:2830
|
2642 |
+
#: modules/posts/skins/skin-base.php:3080
|
2643 |
+
#: modules/posts/skins/skin-base.php:3352
|
2644 |
+
#: modules/posts/skins/skin-base.php:3558
|
2645 |
#: modules/pricing/widgets/pricing-table.php:575
|
2646 |
#: modules/pricing/widgets/pricing-table.php:2559
|
2647 |
#: modules/promo-box/widgets/promo-box.php:872
|
2661 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:699
|
2662 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:896
|
2663 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1284
|
2664 |
+
#: modules/posts/skins/skin-base.php:3307
|
2665 |
+
#: modules/posts/skins/skin-base.php:3629
|
2666 |
#: modules/team-member/widgets/team-member-carousel.php:875
|
2667 |
msgid "Active"
|
2668 |
msgstr ""
|
2672 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1053
|
2673 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1215
|
2674 |
#: modules/business-hours/widgets/business-hours.php:716
|
2675 |
+
#: modules/buttons/widgets/buttons.php:348
|
2676 |
+
#: modules/buttons/widgets/buttons.php:736
|
2677 |
+
#: modules/buttons/widgets/buttons.php:1135
|
2678 |
#: modules/caldera-forms/widgets/caldera-forms.php:709
|
2679 |
#: modules/caldera-forms/widgets/caldera-forms.php:1231
|
2680 |
#: modules/contact-form-seven/widgets/contact-form-7.php:451
|
2731 |
#: modules/logos/widgets/logo-grid.php:524
|
2732 |
#: modules/ninja-forms/widgets/ninja-forms.php:674
|
2733 |
#: modules/ninja-forms/widgets/ninja-forms.php:1200
|
2734 |
+
#: modules/posts/skins/skin-base.php:1777
|
2735 |
+
#: modules/posts/skins/skin-base.php:1907
|
2736 |
+
#: modules/posts/skins/skin-base.php:2375
|
2737 |
+
#: modules/posts/skins/skin-base.php:2768
|
2738 |
+
#: modules/posts/skins/skin-base.php:3143
|
2739 |
+
#: modules/posts/skins/skin-base.php:3528
|
2740 |
+
#: modules/pricing/widgets/price-menu.php:420
|
2741 |
+
#: modules/pricing/widgets/price-menu.php:482
|
2742 |
+
#: modules/pricing/widgets/price-menu.php:961
|
2743 |
#: modules/pricing/widgets/pricing-table.php:1182
|
2744 |
#: modules/pricing/widgets/pricing-table.php:1307
|
2745 |
#: modules/pricing/widgets/pricing-table.php:1554
|
2767 |
|
2768 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:763
|
2769 |
#: modules/content-ticker/widgets/content-ticker.php:1500
|
2770 |
+
#: modules/posts/skins/skin-base.php:2103
|
2771 |
+
#: modules/posts/skins/skin-base.php:2272
|
2772 |
+
#: modules/posts/skins/skin-base.php:2479
|
2773 |
+
#: modules/posts/skins/skin-base.php:2605
|
2774 |
msgid "Bottom Spacing"
|
2775 |
msgstr ""
|
2776 |
|
2783 |
#: modules/business-hours/widgets/business-hours.php:655
|
2784 |
#: modules/business-hours/widgets/business-hours.php:697
|
2785 |
#: modules/business-hours/widgets/business-hours.php:789
|
2786 |
+
#: modules/buttons/widgets/buttons.php:428
|
2787 |
+
#: modules/buttons/widgets/buttons.php:494
|
2788 |
+
#: modules/buttons/widgets/buttons.php:803
|
2789 |
+
#: modules/buttons/widgets/buttons.php:863
|
2790 |
#: modules/caldera-forms/widgets/caldera-forms.php:362
|
2791 |
#: modules/caldera-forms/widgets/caldera-forms.php:423
|
2792 |
#: modules/caldera-forms/widgets/caldera-forms.php:489
|
2888 |
#: modules/ninja-forms/widgets/ninja-forms.php:1252
|
2889 |
#: modules/ninja-forms/widgets/ninja-forms.php:1316
|
2890 |
#: modules/ninja-forms/widgets/ninja-forms.php:1420
|
2891 |
+
#: modules/posts/skins/skin-base.php:2345
|
2892 |
+
#: modules/posts/skins/skin-base.php:2413
|
2893 |
+
#: modules/posts/skins/skin-base.php:2523
|
2894 |
+
#: modules/posts/skins/skin-base.php:2709
|
2895 |
+
#: modules/posts/skins/skin-base.php:2855
|
2896 |
+
#: modules/pricing/widgets/price-menu.php:727
|
2897 |
#: modules/pricing/widgets/pricing-table.php:493
|
2898 |
#: modules/pricing/widgets/pricing-table.php:1681
|
2899 |
#: modules/pricing/widgets/pricing-table.php:1737
|
2943 |
#: modules/business-hours/widgets/business-hours.php:640
|
2944 |
#: modules/business-hours/widgets/business-hours.php:682
|
2945 |
#: modules/business-hours/widgets/business-hours.php:765
|
2946 |
+
#: modules/buttons/widgets/buttons.php:417
|
2947 |
+
#: modules/buttons/widgets/buttons.php:482
|
2948 |
+
#: modules/buttons/widgets/buttons.php:788
|
2949 |
+
#: modules/buttons/widgets/buttons.php:852
|
2950 |
+
#: modules/buttons/widgets/buttons.php:1085
|
2951 |
#: modules/caldera-forms/widgets/caldera-forms.php:560
|
2952 |
#: modules/caldera-forms/widgets/caldera-forms.php:768
|
2953 |
#: modules/caldera-forms/widgets/caldera-forms.php:1184
|
3038 |
#: modules/ninja-forms/widgets/ninja-forms.php:734
|
3039 |
#: modules/ninja-forms/widgets/ninja-forms.php:1153
|
3040 |
#: modules/ninja-forms/widgets/ninja-forms.php:1240
|
3041 |
+
#: modules/posts/skins/skin-base.php:1742
|
3042 |
+
#: modules/posts/skins/skin-base.php:1806
|
3043 |
+
#: modules/posts/skins/skin-base.php:1883
|
3044 |
+
#: modules/posts/skins/skin-base.php:2331
|
3045 |
+
#: modules/posts/skins/skin-base.php:2399
|
3046 |
+
#: modules/posts/skins/skin-base.php:2694
|
3047 |
+
#: modules/posts/skins/skin-base.php:2840
|
3048 |
+
#: modules/posts/skins/skin-base.php:3015
|
3049 |
+
#: modules/posts/skins/skin-base.php:3091
|
3050 |
+
#: modules/posts/skins/skin-base.php:3466
|
3051 |
+
#: modules/posts/skins/skin-base.php:3569
|
3052 |
+
#: modules/posts/skins/skin-base.php:3640
|
3053 |
+
#: modules/pricing/widgets/price-menu.php:389
|
3054 |
+
#: modules/pricing/widgets/price-menu.php:742
|
3055 |
+
#: modules/pricing/widgets/price-menu.php:909
|
3056 |
#: modules/pricing/widgets/pricing-table.php:506
|
3057 |
#: modules/pricing/widgets/pricing-table.php:1152
|
3058 |
#: modules/pricing/widgets/pricing-table.php:1260
|
3088 |
|
3089 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:828
|
3090 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1195
|
3091 |
+
#: modules/buttons/widgets/buttons.php:452
|
3092 |
+
#: modules/buttons/widgets/buttons.php:815
|
3093 |
#: modules/caldera-forms/widgets/caldera-forms.php:585
|
3094 |
#: modules/caldera-forms/widgets/caldera-forms.php:781
|
3095 |
#: modules/caldera-forms/widgets/caldera-forms.php:1209
|
3162 |
#: modules/ninja-forms/widgets/ninja-forms.php:549
|
3163 |
#: modules/ninja-forms/widgets/ninja-forms.php:747
|
3164 |
#: modules/ninja-forms/widgets/ninja-forms.php:1178
|
3165 |
+
#: modules/posts/skins/skin-base.php:1755
|
3166 |
+
#: modules/posts/skins/skin-base.php:2725
|
3167 |
+
#: modules/posts/skins/skin-base.php:3048
|
3168 |
+
#: modules/posts/skins/skin-base.php:3252
|
3169 |
+
#: modules/posts/skins/skin-base.php:3498
|
3170 |
+
#: modules/pricing/widgets/price-menu.php:433
|
3171 |
+
#: modules/pricing/widgets/price-menu.php:974
|
3172 |
#: modules/pricing/widgets/pricing-table.php:1169
|
3173 |
#: modules/pricing/widgets/pricing-table.php:1323
|
3174 |
#: modules/pricing/widgets/pricing-table.php:1496
|
3199 |
msgstr ""
|
3200 |
|
3201 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:957
|
3202 |
+
#: modules/buttons/widgets/buttons.php:387
|
3203 |
#: modules/flipbox/widgets/flipbox.php:825
|
3204 |
#: modules/flipbox/widgets/flipbox.php:1179
|
3205 |
#: modules/info-box/widgets/info-box-carousel.php:965
|
3213 |
|
3214 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:979
|
3215 |
#: modules/image-accordion/widgets/image-accordion.php:1068
|
3216 |
+
#: modules/posts/skins/skin-base.php:2807
|
3217 |
msgid "Icon Spacing"
|
3218 |
msgstr ""
|
3219 |
|
3258 |
#: modules/ninja-forms/widgets/ninja-forms.php:303
|
3259 |
#: modules/ninja-forms/widgets/ninja-forms.php:489
|
3260 |
#: modules/ninja-forms/widgets/ninja-forms.php:1075
|
3261 |
+
#: modules/posts/skins/skin-base.php:1371
|
3262 |
+
#: modules/posts/skins/skin-base.php:1856
|
3263 |
+
#: modules/pricing/widgets/price-menu.php:275
|
3264 |
#: modules/pricing/widgets/pricing-table.php:1111
|
3265 |
#: modules/pricing/widgets/pricing-table.php:1790
|
3266 |
#: modules/promo-box/widgets/promo-box.php:580
|
3285 |
msgstr ""
|
3286 |
|
3287 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1106
|
3288 |
+
#: modules/buttons/widgets/buttons.php:960
|
3289 |
#: modules/caldera-forms/widgets/caldera-forms.php:721
|
3290 |
#: modules/caldera-forms/widgets/caldera-forms.php:840
|
3291 |
#: modules/contact-form-seven/widgets/contact-form-7.php:428
|
3323 |
#: modules/ninja-forms/widgets/ninja-forms.php:687
|
3324 |
#: modules/ninja-forms/widgets/ninja-forms.php:805
|
3325 |
#: modules/ninja-forms/widgets/ninja-forms.php:1364
|
3326 |
+
#: modules/posts/skins/skin-base.php:1952
|
3327 |
+
#: modules/posts/skins/skin-base.php:2216
|
3328 |
+
#: modules/posts/skins/skin-base.php:3199
|
3329 |
#: modules/pricing/widgets/pricing-table.php:1422
|
3330 |
#: modules/pricing/widgets/pricing-table.php:1703
|
3331 |
#: modules/pricing/widgets/pricing-table.php:1936
|
3343 |
msgstr ""
|
3344 |
|
3345 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1124
|
3346 |
+
#: modules/buttons/widgets/buttons.php:940
|
3347 |
#: modules/caldera-forms/widgets/caldera-forms.php:919
|
3348 |
#: modules/contact-form-seven/widgets/contact-form-7.php:762
|
3349 |
#: modules/content-reveal/widgets/content-reveal.php:608
|
3370 |
#: modules/instafeed/widgets/instafeed.php:2454
|
3371 |
#: modules/logos/widgets/logo-carousel.php:1031
|
3372 |
#: modules/ninja-forms/widgets/ninja-forms.php:887
|
3373 |
+
#: modules/posts/skins/skin-base.php:2650
|
3374 |
+
#: modules/posts/skins/skin-base.php:3176
|
3375 |
+
#: modules/posts/skins/skin-base.php:3758
|
3376 |
#: modules/pricing/widgets/pricing-table.php:588
|
3377 |
#: modules/pricing/widgets/pricing-table.php:882
|
3378 |
#: modules/pricing/widgets/pricing-table.php:1206
|
3391 |
#: modules/advanced-accordion/widgets/advanced-accordion.php:1291
|
3392 |
#: modules/business-hours/widgets/business-hours.php:927
|
3393 |
#: modules/business-hours/widgets/business-hours.php:984
|
3394 |
+
#: modules/buttons/widgets/buttons.php:990
|
3395 |
+
#: modules/buttons/widgets/buttons.php:1012
|
3396 |
+
#: modules/buttons/widgets/buttons.php:1101
|
3397 |
#: modules/caldera-forms/widgets/caldera-forms.php:957
|
3398 |
#: modules/caldera-forms/widgets/caldera-forms.php:1073
|
3399 |
#: modules/caldera-forms/widgets/caldera-forms.php:1466
|
3466 |
#: modules/ninja-forms/widgets/ninja-forms.php:925
|
3467 |
#: modules/ninja-forms/widgets/ninja-forms.php:1041
|
3468 |
#: modules/ninja-forms/widgets/ninja-forms.php:1352
|
3469 |
+
#: modules/posts/skins/skin-base.php:2054
|
3470 |
+
#: modules/posts/skins/skin-base.php:2449
|
3471 |
+
#: modules/posts/skins/skin-base.php:3031
|
3472 |
+
#: modules/posts/skins/skin-base.php:3107
|
3473 |
+
#: modules/posts/skins/skin-base.php:3235
|
3474 |
+
#: modules/posts/skins/skin-base.php:3318
|
3475 |
+
#: modules/posts/skins/skin-base.php:3363
|
3476 |
+
#: modules/posts/skins/skin-base.php:3482
|
3477 |
+
#: modules/posts/skins/skin-base.php:3585
|
3478 |
+
#: modules/posts/skins/skin-base.php:3656
|
3479 |
+
#: modules/posts/skins/skin-base.php:3743
|
3480 |
+
#: modules/pricing/widgets/price-menu.php:532
|
3481 |
+
#: modules/pricing/widgets/price-menu.php:757
|
3482 |
+
#: modules/pricing/widgets/price-menu.php:849
|
3483 |
+
#: modules/pricing/widgets/price-menu.php:1103
|
3484 |
#: modules/pricing/widgets/pricing-table.php:1275
|
3485 |
#: modules/pricing/widgets/pricing-table.php:1360
|
3486 |
#: modules/pricing/widgets/pricing-table.php:1394
|
3511 |
msgstr ""
|
3512 |
|
3513 |
#: modules/business-hours/widgets/business-hours.php:123
|
3514 |
+
#: modules/buttons/widgets/buttons.php:318
|
3515 |
#: modules/caldera-forms/widgets/caldera-forms.php:1140
|
3516 |
#: modules/contact-form-seven/widgets/contact-form-7.php:985
|
3517 |
#: modules/content-ticker/widgets/content-ticker.php:152
|
3521 |
#: modules/gravity-forms/widgets/gravity-forms.php:1363
|
3522 |
#: modules/gravity-forms/widgets/gravity-forms.php:1578
|
3523 |
#: modules/ninja-forms/widgets/ninja-forms.php:1109
|
3524 |
+
#: modules/posts/skins/skin-base.php:682
|
3525 |
#: modules/posts/widgets/posts-base.php:394
|
3526 |
#: modules/pricing/widgets/pricing-table.php:323
|
3527 |
#: modules/wpforms/widgets/wpforms.php:1041
|
3655 |
#: modules/info-table/widgets/info-table.php:631
|
3656 |
#: modules/info-table/widgets/info-table.php:701
|
3657 |
#: modules/info-table/widgets/info-table.php:1092
|
3658 |
+
#: modules/pricing/widgets/price-menu.php:558
|
3659 |
+
#: modules/pricing/widgets/price-menu.php:683
|
3660 |
+
#: modules/pricing/widgets/price-menu.php:875
|
3661 |
#: modules/pricing/widgets/pricing-table.php:1865
|
3662 |
#: modules/team-member/widgets/team-member-carousel.php:1105
|
3663 |
#: modules/team-member/widgets/team-member-carousel.php:1171
|
3707 |
#: modules/info-box/widgets/info-box-carousel.php:1387
|
3708 |
#: modules/info-box/widgets/info-box.php:1330
|
3709 |
#: modules/info-list/widgets/info-list.php:573
|
3710 |
+
#: modules/pricing/widgets/price-menu.php:603
|
3711 |
+
#: modules/pricing/widgets/price-menu.php:1086
|
3712 |
#: modules/promo-box/widgets/promo-box.php:1036
|
3713 |
#: modules/promo-box/widgets/promo-box.php:1269
|
3714 |
#: modules/team-member/widgets/team-member-carousel.php:1235
|
3744 |
msgstr ""
|
3745 |
|
3746 |
#: modules/business-hours/widgets/business-hours.php:845
|
3747 |
+
#: modules/pricing/widgets/price-menu.php:1123
|
3748 |
msgid "Divider Weight"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
#: modules/business-hours/widgets/business-hours.php:905
|
3752 |
#: modules/business-hours/widgets/business-hours.php:962
|
3753 |
+
#: modules/buttons/widgets/buttons.php:657
|
3754 |
+
#: modules/buttons/widgets/buttons.php:685
|
3755 |
+
#: modules/buttons/widgets/buttons.php:1050
|
3756 |
+
#: modules/buttons/widgets/buttons.php:1064
|
3757 |
#: modules/caldera-forms/widgets/caldera-forms.php:325
|
3758 |
#: modules/caldera-forms/widgets/caldera-forms.php:529
|
3759 |
#: modules/caldera-forms/widgets/caldera-forms.php:1112
|
3812 |
#: modules/ninja-forms/widgets/ninja-forms.php:307
|
3813 |
#: modules/ninja-forms/widgets/ninja-forms.php:493
|
3814 |
#: modules/ninja-forms/widgets/ninja-forms.php:1079
|
3815 |
+
#: modules/posts/skins/skin-base.php:323 modules/posts/skins/skin-base.php:1375
|
3816 |
+
#: modules/posts/skins/skin-base.php:1861
|
3817 |
+
#: modules/pricing/widgets/price-menu.php:279
|
3818 |
#: modules/pricing/widgets/pricing-table.php:613
|
3819 |
#: modules/pricing/widgets/pricing-table.php:967
|
3820 |
#: modules/pricing/widgets/pricing-table.php:1116
|
3837 |
|
3838 |
#: modules/business-hours/widgets/business-hours.php:909
|
3839 |
#: modules/business-hours/widgets/business-hours.php:966
|
3840 |
+
#: modules/buttons/widgets/buttons.php:661
|
3841 |
+
#: modules/buttons/widgets/buttons.php:689
|
3842 |
+
#: modules/buttons/widgets/buttons.php:1068
|
3843 |
#: modules/caldera-forms/widgets/caldera-forms.php:329
|
3844 |
#: modules/caldera-forms/widgets/caldera-forms.php:533
|
3845 |
#: modules/caldera-forms/widgets/caldera-forms.php:1116
|
3895 |
#: modules/ninja-forms/widgets/ninja-forms.php:311
|
3896 |
#: modules/ninja-forms/widgets/ninja-forms.php:497
|
3897 |
#: modules/ninja-forms/widgets/ninja-forms.php:1083
|
3898 |
+
#: modules/posts/skins/skin-base.php:1379
|
3899 |
+
#: modules/posts/skins/skin-base.php:1865
|
3900 |
+
#: modules/pricing/widgets/price-menu.php:283
|
3901 |
+
#: modules/pricing/widgets/price-menu.php:1055
|
3902 |
#: modules/pricing/widgets/pricing-table.php:1120
|
3903 |
#: modules/pricing/widgets/pricing-table.php:1799
|
3904 |
#: modules/promo-box/widgets/promo-box.php:589
|
3920 |
|
3921 |
#: modules/business-hours/widgets/business-hours.php:913
|
3922 |
#: modules/business-hours/widgets/business-hours.php:970
|
3923 |
+
#: modules/buttons/widgets/buttons.php:665
|
3924 |
+
#: modules/buttons/widgets/buttons.php:693
|
3925 |
+
#: modules/buttons/widgets/buttons.php:1051
|
3926 |
+
#: modules/buttons/widgets/buttons.php:1072
|
3927 |
#: modules/caldera-forms/widgets/caldera-forms.php:333
|
3928 |
#: modules/caldera-forms/widgets/caldera-forms.php:537
|
3929 |
#: modules/caldera-forms/widgets/caldera-forms.php:1120
|
3982 |
#: modules/ninja-forms/widgets/ninja-forms.php:315
|
3983 |
#: modules/ninja-forms/widgets/ninja-forms.php:501
|
3984 |
#: modules/ninja-forms/widgets/ninja-forms.php:1087
|
3985 |
+
#: modules/posts/skins/skin-base.php:327 modules/posts/skins/skin-base.php:1383
|
3986 |
+
#: modules/posts/skins/skin-base.php:1869
|
3987 |
+
#: modules/pricing/widgets/price-menu.php:287
|
3988 |
#: modules/pricing/widgets/pricing-table.php:614
|
3989 |
#: modules/pricing/widgets/pricing-table.php:971
|
3990 |
#: modules/pricing/widgets/pricing-table.php:1124
|
4007 |
|
4008 |
#: modules/business-hours/widgets/business-hours.php:940
|
4009 |
#: modules/business-hours/widgets/business-hours.php:997
|
4010 |
+
#: modules/buttons/widgets/buttons.php:762
|
4011 |
+
#: modules/buttons/widgets/buttons.php:918
|
4012 |
#: modules/caldera-forms/widgets/caldera-forms.php:378
|
4013 |
#: modules/caldera-forms/widgets/caldera-forms.php:439
|
4014 |
#: modules/caldera-forms/widgets/caldera-forms.php:501
|
4114 |
#: modules/ninja-forms/widgets/ninja-forms.php:1328
|
4115 |
#: modules/ninja-forms/widgets/ninja-forms.php:1384
|
4116 |
#: modules/ninja-forms/widgets/ninja-forms.php:1436
|
4117 |
+
#: modules/posts/skins/skin-base.php:2092
|
4118 |
+
#: modules/posts/skins/skin-base.php:2261
|
4119 |
+
#: modules/posts/skins/skin-base.php:2468
|
4120 |
+
#: modules/posts/skins/skin-base.php:2569
|
4121 |
+
#: modules/posts/skins/skin-base.php:2670
|
4122 |
+
#: modules/pricing/widgets/price-menu.php:549
|
4123 |
+
#: modules/pricing/widgets/price-menu.php:777
|
4124 |
+
#: modules/pricing/widgets/price-menu.php:866
|
4125 |
#: modules/pricing/widgets/pricing-table.php:1373
|
4126 |
#: modules/pricing/widgets/pricing-table.php:1410
|
4127 |
#: modules/pricing/widgets/pricing-table.php:1461
|
4161 |
msgid "Hours Color"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: modules/buttons/widgets/buttons.php:137
|
4165 |
+
#: modules/buttons/widgets/buttons.php:168
|
4166 |
#: modules/divider/widgets/divider.php:137
|
4167 |
#: modules/divider/widgets/divider.php:172
|
4168 |
#: modules/divider/widgets/divider.php:662
|
4184 |
msgid "Text"
|
4185 |
msgstr ""
|
4186 |
|
|
|
4187 |
#: modules/buttons/widgets/buttons.php:139
|
4188 |
+
#: modules/buttons/widgets/buttons.php:140
|
4189 |
+
#: modules/buttons/widgets/buttons.php:542
|
4190 |
msgid "Button #1"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: modules/buttons/widgets/buttons.php:149
|
4194 |
#: modules/counter/widgets/counter.php:262
|
4195 |
#: modules/flipbox/widgets/flipbox.php:141
|
4196 |
#: modules/flipbox/widgets/flipbox.php:280
|
4202 |
msgid "Icon Type"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: modules/buttons/widgets/buttons.php:221
|
4206 |
#: modules/flipbox/widgets/flipbox.php:211
|
4207 |
#: modules/flipbox/widgets/flipbox.php:350
|
4208 |
#: modules/info-box/widgets/info-box-carousel.php:1210
|
4212 |
msgid "Icon Text"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
+
#: modules/buttons/widgets/buttons.php:237
|
4216 |
#: modules/pricing/widgets/pricing-table.php:559
|
4217 |
msgid "Enable Tooltip"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: modules/buttons/widgets/buttons.php:248
|
4221 |
#: modules/hotspots/widgets/hotspots.php:353
|
4222 |
#: modules/hotspots/widgets/hotspots.php:355
|
4223 |
#: modules/pricing/widgets/pricing-table.php:451
|
4224 |
msgid "Tooltip Content"
|
4225 |
msgstr ""
|
4226 |
|
|
|
4227 |
#: modules/buttons/widgets/buttons.php:250
|
4228 |
+
#: modules/buttons/widgets/buttons.php:251
|
4229 |
msgid "I am a tooltip for a button"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: modules/buttons/widgets/buttons.php:268
|
4233 |
#: modules/icon-list/widgets/icon-list.php:242
|
4234 |
#: modules/info-list/widgets/info-list.php:310
|
4235 |
msgid "http://your-link.com"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: modules/buttons/widgets/buttons.php:274
|
4239 |
msgid "CSS ID"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: modules/buttons/widgets/buttons.php:275
|
4243 |
msgid "Add your custom ID WITHOUT the # key. e.g: my-id"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: modules/buttons/widgets/buttons.php:286
|
4247 |
msgid "CSS Classes"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: modules/buttons/widgets/buttons.php:287
|
4251 |
msgid "Add your custom class WITHOUT the dot. e.g: my-class"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: modules/buttons/widgets/buttons.php:301
|
4255 |
+
#: modules/buttons/widgets/buttons.php:580
|
4256 |
#: modules/counter/widgets/counter.php:423
|
4257 |
#: modules/counter/widgets/counter.php:429
|
4258 |
#: modules/icon-list/widgets/icon-list.php:123
|
4259 |
#: modules/instafeed/widgets/instafeed.php:346
|
4260 |
#: modules/instafeed/widgets/instafeed.php:911
|
4261 |
+
#: modules/posts/skins/skin-base.php:91 modules/posts/skins/skin-base.php:1666
|
4262 |
#: modules/posts/widgets/posts.php:97
|
4263 |
#: modules/twitter/widgets/twitter-timeline.php:115
|
4264 |
msgid "Layout"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: modules/buttons/widgets/buttons.php:308
|
4268 |
msgid "Button Size"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: modules/buttons/widgets/buttons.php:312
|
4272 |
#: modules/gravity-forms/widgets/gravity-forms.php:1787
|
4273 |
#: modules/hotspots/widgets/hotspots.php:511
|
4274 |
#: modules/hotspots/widgets/hotspots.php:585
|
4275 |
#: modules/icon-list/widgets/icon-list.php:128
|
4276 |
+
#: modules/posts/skins/skin-base.php:681
|
4277 |
#: modules/pricing/widgets/pricing-table.php:592
|
4278 |
#: modules/pricing/widgets/pricing-table.php:712
|
4279 |
#: modules/pricing/widgets/pricing-table.php:854
|
4282 |
msgid "Default"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: modules/buttons/widgets/buttons.php:313
|
4286 |
+
#: modules/buttons/widgets/buttons.php:591
|
4287 |
#: modules/content-reveal/widgets/content-reveal.php:612
|
4288 |
#: modules/flipbox/widgets/flipbox.php:1355
|
4289 |
#: modules/image-accordion/widgets/image-accordion.php:872
|
4292 |
#: modules/info-list/widgets/info-list.php:1068
|
4293 |
#: modules/info-table/widgets/info-table.php:1140
|
4294 |
#: modules/instafeed/widgets/instafeed.php:2458
|
4295 |
+
#: modules/posts/skins/skin-base.php:2654
|
4296 |
#: modules/pricing/widgets/pricing-table.php:2401
|
4297 |
#: modules/promo-box/widgets/promo-box.php:1468
|
4298 |
msgid "Extra Small"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: modules/buttons/widgets/buttons.php:314
|
4302 |
+
#: modules/buttons/widgets/buttons.php:592
|
4303 |
#: modules/content-reveal/widgets/content-reveal.php:613
|
4304 |
#: modules/flipbox/widgets/flipbox.php:1356
|
4305 |
#: modules/hotspots/widgets/hotspots.php:513
|
4309 |
#: modules/info-list/widgets/info-list.php:1069
|
4310 |
#: modules/info-table/widgets/info-table.php:1141
|
4311 |
#: modules/instafeed/widgets/instafeed.php:2459
|
4312 |
+
#: modules/posts/skins/skin-base.php:2655
|
4313 |
#: modules/pricing/widgets/pricing-table.php:594
|
4314 |
#: modules/pricing/widgets/pricing-table.php:2402
|
4315 |
#: modules/promo-box/widgets/promo-box.php:1469
|
4316 |
msgid "Small"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: modules/buttons/widgets/buttons.php:315
|
4320 |
+
#: modules/buttons/widgets/buttons.php:593
|
4321 |
#: modules/content-reveal/widgets/content-reveal.php:614
|
4322 |
#: modules/flipbox/widgets/flipbox.php:1357
|
4323 |
#: modules/image-accordion/widgets/image-accordion.php:874
|
4326 |
#: modules/info-list/widgets/info-list.php:1070
|
4327 |
#: modules/info-table/widgets/info-table.php:1142
|
4328 |
#: modules/instafeed/widgets/instafeed.php:2460
|
4329 |
+
#: modules/posts/skins/skin-base.php:2656
|
4330 |
#: modules/pricing/widgets/pricing-table.php:2403
|
4331 |
#: modules/promo-box/widgets/promo-box.php:1470
|
4332 |
msgid "Medium"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
+
#: modules/buttons/widgets/buttons.php:316
|
4336 |
+
#: modules/buttons/widgets/buttons.php:594
|
4337 |
#: modules/content-reveal/widgets/content-reveal.php:615
|
4338 |
#: modules/flipbox/widgets/flipbox.php:1358
|
4339 |
#: modules/hotspots/widgets/hotspots.php:514
|
4343 |
#: modules/info-list/widgets/info-list.php:1071
|
4344 |
#: modules/info-table/widgets/info-table.php:1143
|
4345 |
#: modules/instafeed/widgets/instafeed.php:2461
|
4346 |
+
#: modules/posts/skins/skin-base.php:2657
|
4347 |
#: modules/pricing/widgets/pricing-table.php:595
|
4348 |
#: modules/pricing/widgets/pricing-table.php:2404
|
4349 |
#: modules/promo-box/widgets/promo-box.php:1471
|
4350 |
msgid "Large"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: modules/buttons/widgets/buttons.php:317
|
4354 |
+
#: modules/buttons/widgets/buttons.php:595
|
4355 |
#: modules/content-reveal/widgets/content-reveal.php:616
|
4356 |
#: modules/flipbox/widgets/flipbox.php:1359
|
4357 |
#: modules/image-accordion/widgets/image-accordion.php:876
|
4360 |
#: modules/info-list/widgets/info-list.php:1072
|
4361 |
#: modules/info-table/widgets/info-table.php:1144
|
4362 |
#: modules/instafeed/widgets/instafeed.php:2462
|
4363 |
+
#: modules/posts/skins/skin-base.php:2658
|
4364 |
#: modules/pricing/widgets/pricing-table.php:2405
|
4365 |
#: modules/promo-box/widgets/promo-box.php:1472
|
4366 |
msgid "Extra Large"
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: modules/buttons/widgets/buttons.php:326
|
4370 |
msgid "Button Width"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: modules/buttons/widgets/buttons.php:362
|
4374 |
#: modules/divider/widgets/divider.php:384
|
4375 |
#: modules/hotspots/widgets/hotspots.php:370
|
4376 |
#: modules/icon-list/widgets/icon-list.php:419
|
4377 |
#: modules/info-list/widgets/info-list.php:567
|
4378 |
#: modules/instafeed/widgets/instafeed.php:1388
|
4379 |
#: modules/logos/widgets/logo-grid.php:162
|
4380 |
+
#: modules/pricing/widgets/price-menu.php:1081
|
4381 |
#: modules/pricing/widgets/pricing-table.php:850
|
4382 |
msgid "Style"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: modules/buttons/widgets/buttons.php:370
|
4386 |
msgid "Button Typography"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: modules/buttons/widgets/buttons.php:439
|
4390 |
+
#: modules/buttons/widgets/buttons.php:506
|
4391 |
#: modules/content-reveal/widgets/content-reveal.php:704
|
4392 |
#: modules/content-reveal/widgets/content-reveal.php:813
|
4393 |
#: modules/image-comparison/widgets/image-comparison.php:423
|
4405 |
msgid "Icon Color"
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: modules/buttons/widgets/buttons.php:545
|
4409 |
msgid "Button #2"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: modules/buttons/widgets/buttons.php:587
|
4413 |
msgid "Buttons Size"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: modules/buttons/widgets/buttons.php:602
|
4417 |
msgid "Buttons Spacing"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: modules/buttons/widgets/buttons.php:624
|
4421 |
#: modules/divider/widgets/divider.php:349
|
4422 |
#: modules/icon-list/widgets/icon-list.php:524
|
4423 |
#: modules/logos/widgets/logo-carousel.php:575
|
4424 |
+
#: modules/pricing/widgets/price-menu.php:1046
|
4425 |
#: modules/promo-box/widgets/promo-box.php:607
|
4426 |
msgid "Vertical Alignment"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
+
#: modules/buttons/widgets/buttons.php:629
|
4430 |
+
#: modules/buttons/widgets/buttons.php:932
|
4431 |
#: modules/divider/widgets/divider.php:355
|
4432 |
#: modules/flipbox/widgets/flipbox.php:567
|
4433 |
#: modules/flipbox/widgets/flipbox.php:683
|
4444 |
#: modules/instafeed/widgets/instafeed.php:1641
|
4445 |
#: modules/logos/widgets/logo-carousel.php:579
|
4446 |
#: modules/logos/widgets/logo-grid.php:343
|
4447 |
+
#: modules/posts/skins/skin-base.php:1282
|
4448 |
+
#: modules/posts/skins/skin-base.php:1284
|
4449 |
+
#: modules/pricing/widgets/price-menu.php:1001
|
4450 |
+
#: modules/pricing/widgets/price-menu.php:1051
|
4451 |
#: modules/pricing/widgets/pricing-table.php:611
|
4452 |
#: modules/pricing/widgets/pricing-table.php:1631
|
4453 |
#: modules/promo-box/widgets/promo-box.php:613
|
4455 |
msgid "Top"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: modules/buttons/widgets/buttons.php:633
|
4459 |
#: modules/flipbox/widgets/flipbox.php:687
|
4460 |
#: modules/flipbox/widgets/flipbox.php:1041
|
4461 |
#: modules/image-accordion/widgets/image-accordion.php:655
|
4462 |
#: modules/image-comparison/widgets/image-comparison.php:603
|
4463 |
#: modules/info-box/widgets/info-box.php:344
|
4464 |
#: modules/instafeed/widgets/instafeed.php:1645
|
4465 |
+
#: modules/pricing/widgets/price-menu.php:1005
|
4466 |
#: modules/pricing/widgets/pricing-table.php:1635
|
4467 |
msgid "Middle"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: modules/buttons/widgets/buttons.php:637
|
4471 |
+
#: modules/buttons/widgets/buttons.php:933
|
4472 |
#: modules/divider/widgets/divider.php:363
|
4473 |
#: modules/flipbox/widgets/flipbox.php:568
|
4474 |
#: modules/flipbox/widgets/flipbox.php:691
|
4484 |
#: modules/instafeed/widgets/instafeed.php:1649
|
4485 |
#: modules/logos/widgets/logo-carousel.php:587
|
4486 |
#: modules/logos/widgets/logo-grid.php:351
|
4487 |
+
#: modules/posts/skins/skin-base.php:1283
|
4488 |
+
#: modules/posts/skins/skin-base.php:1284
|
4489 |
+
#: modules/pricing/widgets/price-menu.php:1009
|
4490 |
+
#: modules/pricing/widgets/price-menu.php:1059
|
4491 |
#: modules/pricing/widgets/pricing-table.php:612
|
4492 |
#: modules/pricing/widgets/pricing-table.php:1639
|
4493 |
#: modules/promo-box/widgets/promo-box.php:621
|
4495 |
msgid "Bottom"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: modules/buttons/widgets/buttons.php:641
|
4499 |
+
#: modules/buttons/widgets/buttons.php:669
|
4500 |
+
#: modules/buttons/widgets/buttons.php:697
|
4501 |
msgid "Stretch"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: modules/buttons/widgets/buttons.php:652
|
4505 |
#: modules/logos/widgets/logo-carousel.php:601
|
4506 |
msgid "Horizontal Alignment"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
+
#: modules/buttons/widgets/buttons.php:680
|
4510 |
msgid "Content Alignment"
|
4511 |
msgstr ""
|
4512 |
|
4513 |
+
#: modules/buttons/widgets/buttons.php:719
|
4514 |
msgid "Stack on"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: modules/buttons/widgets/buttons.php:722
|
4518 |
msgid "Choose a breakpoint where the buttons will stack."
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: modules/buttons/widgets/buttons.php:725
|
4522 |
msgid "Desktop"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: modules/buttons/widgets/buttons.php:726
|
4526 |
#: modules/image-accordion/widgets/image-accordion.php:414
|
4527 |
#: modules/info-list/widgets/info-list.php:521
|
4528 |
msgid "Tablet"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: modules/buttons/widgets/buttons.php:727
|
4532 |
#: modules/image-accordion/widgets/image-accordion.php:415
|
4533 |
#: modules/info-list/widgets/info-list.php:522
|
4534 |
msgid "Mobile"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: modules/buttons/widgets/buttons.php:754
|
4538 |
msgid "Styling"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: modules/buttons/widgets/buttons.php:892
|
4542 |
#: modules/flipbox/widgets/flipbox.php:1596
|
4543 |
#: modules/hotspots/widgets/hotspots.php:570
|
4544 |
#: modules/icon-list/widgets/icon-list.php:720
|
4549 |
#: modules/info-list/widgets/info-list.php:1243
|
4550 |
#: modules/info-table/widgets/info-table.php:1371
|
4551 |
#: modules/instafeed/widgets/instafeed.php:2690
|
4552 |
+
#: modules/posts/skins/skin-base.php:2885
|
4553 |
#: modules/pricing/widgets/pricing-table.php:642
|
4554 |
#: modules/pricing/widgets/pricing-table.php:2613
|
4555 |
#: modules/promo-box/widgets/promo-box.php:1613
|
4556 |
msgid "Animation"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: modules/buttons/widgets/buttons.php:926
|
4560 |
#: modules/content-reveal/widgets/content-reveal.php:406
|
4561 |
#: modules/content-ticker/widgets/content-ticker.php:1048
|
4562 |
#: modules/flipbox/widgets/flipbox.php:470
|
4566 |
#: modules/info-list/widgets/info-list.php:288
|
4567 |
#: modules/info-table/widgets/info-table.php:365
|
4568 |
#: modules/instafeed/widgets/instafeed.php:588
|
4569 |
+
#: modules/posts/skins/skin-base.php:1200
|
4570 |
#: modules/promo-box/widgets/promo-box.php:329
|
4571 |
msgid "Icon Position"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
+
#: modules/buttons/widgets/buttons.php:930
|
4575 |
#: modules/content-reveal/widgets/content-reveal.php:410
|
4576 |
#: modules/content-ticker/widgets/content-ticker.php:889
|
4577 |
#: modules/divider/widgets/divider.php:628
|
4583 |
#: modules/info-box/widgets/info-box.php:633
|
4584 |
#: modules/info-list/widgets/info-list.php:292
|
4585 |
#: modules/info-table/widgets/info-table.php:369
|
4586 |
+
#: modules/posts/skins/skin-base.php:1205
|
4587 |
#: modules/posts/widgets/posts-base.php:425
|
4588 |
#: modules/pricing/widgets/pricing-table.php:1616
|
4589 |
msgid "After"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: modules/buttons/widgets/buttons.php:931
|
4593 |
#: modules/content-reveal/widgets/content-reveal.php:411
|
4594 |
#: modules/content-ticker/widgets/content-ticker.php:873
|
4595 |
#: modules/display-conditions/conditions/date-time-before.php:69
|
4603 |
#: modules/info-box/widgets/info-box.php:634
|
4604 |
#: modules/info-list/widgets/info-list.php:293
|
4605 |
#: modules/info-table/widgets/info-table.php:370
|
4606 |
+
#: modules/posts/skins/skin-base.php:1204
|
4607 |
#: modules/posts/widgets/posts-base.php:409
|
4608 |
#: modules/pricing/widgets/pricing-table.php:1612
|
4609 |
msgid "Before"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: modules/buttons/widgets/buttons.php:1036
|
4613 |
#: modules/hotspots/widgets/hotspots.php:311
|
4614 |
#: modules/hotspots/widgets/hotspots.php:316
|
4615 |
#: modules/hotspots/widgets/hotspots.php:947
|
4618 |
msgid "Tooltip"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: modules/buttons/widgets/buttons.php:1044
|
4622 |
#: modules/hotspots/widgets/hotspots.php:328
|
4623 |
msgid "Tooltip Position"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: modules/buttons/widgets/buttons.php:1048
|
4627 |
msgid "Above"
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: modules/buttons/widgets/buttons.php:1049
|
4631 |
msgid "Below"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
+
#: modules/buttons/widgets/buttons.php:1059
|
4635 |
#: modules/content-reveal/widgets/content-reveal.php:472
|
4636 |
#: modules/image-accordion/widgets/image-accordion.php:711
|
4637 |
#: modules/instafeed/widgets/instafeed.php:1281
|
4687 |
#: modules/info-table/widgets/info-table.php:1027
|
4688 |
#: modules/ninja-forms/widgets/ninja-forms.php:157
|
4689 |
#: modules/ninja-forms/widgets/ninja-forms.php:378
|
4690 |
+
#: modules/pricing/widgets/price-menu.php:118
|
4691 |
+
#: modules/pricing/widgets/price-menu.php:841
|
4692 |
#: modules/promo-box/widgets/promo-box.php:230
|
4693 |
#: modules/promo-box/widgets/promo-box.php:1390
|
4694 |
#: modules/random-image/widgets/random-image.php:260
|
4804 |
#: modules/instafeed/widgets/instafeed.php:2606
|
4805 |
#: modules/ninja-forms/widgets/ninja-forms.php:359
|
4806 |
#: modules/ninja-forms/widgets/ninja-forms.php:409
|
4807 |
+
#: modules/posts/skins/skin-base.php:2753
|
4808 |
+
#: modules/posts/skins/skin-base.php:3282
|
4809 |
+
#: modules/pricing/widgets/price-menu.php:949
|
4810 |
#: modules/pricing/widgets/pricing-table.php:1292
|
4811 |
#: modules/pricing/widgets/pricing-table.php:1542
|
4812 |
#: modules/promo-box/widgets/promo-box.php:852
|
4984 |
#: modules/link-effects/widgets/link-effects.php:279
|
4985 |
#: modules/ninja-forms/widgets/ninja-forms.php:1104
|
4986 |
#: modules/ninja-forms/widgets/ninja-forms.php:1118
|
4987 |
+
#: modules/pricing/widgets/price-menu.php:921
|
4988 |
#: modules/pricing/widgets/pricing-table.php:1233
|
4989 |
#: modules/pricing/widgets/pricing-table.php:1518
|
4990 |
#: modules/pricing/widgets/pricing-table.php:2182
|
5067 |
#: modules/info-box/widgets/info-box-carousel.php:542
|
5068 |
#: modules/info-box/widgets/info-box.php:433
|
5069 |
#: modules/logos/widgets/logo-grid.php:171
|
5070 |
+
#: modules/pricing/widgets/price-menu.php:146
|
5071 |
+
#: modules/pricing/widgets/price-menu.php:179
|
5072 |
+
#: modules/pricing/widgets/price-menu.php:798
|
5073 |
#: modules/pricing/widgets/pricing-table.php:375
|
5074 |
#: modules/promo-box/widgets/promo-box.php:170
|
5075 |
#: modules/promo-box/widgets/promo-box.php:218
|
5087 |
#: modules/info-box/widgets/info-box-carousel.php:543
|
5088 |
#: modules/info-box/widgets/info-box.php:434
|
5089 |
#: modules/logos/widgets/logo-grid.php:172
|
5090 |
+
#: modules/pricing/widgets/price-menu.php:147
|
5091 |
+
#: modules/pricing/widgets/price-menu.php:180
|
5092 |
+
#: modules/pricing/widgets/price-menu.php:799
|
5093 |
#: modules/pricing/widgets/pricing-table.php:376
|
5094 |
#: modules/promo-box/widgets/promo-box.php:171
|
5095 |
#: modules/promo-box/widgets/promo-box.php:219
|
5209 |
msgstr ""
|
5210 |
|
5211 |
#: modules/content-reveal/widgets/content-reveal.php:350
|
5212 |
+
#: modules/posts/skins/skin-base.php:1178
|
5213 |
msgid "Read More"
|
5214 |
msgstr ""
|
5215 |
|
5224 |
|
5225 |
#: modules/content-reveal/widgets/content-reveal.php:549
|
5226 |
#: modules/counter/widgets/counter.php:237
|
5227 |
+
#: modules/posts/skins/skin-base.php:2128
|
5228 |
msgid "Separator"
|
5229 |
msgstr ""
|
5230 |
|
5297 |
#: modules/info-table/widgets/info-table.php:247
|
5298 |
#: modules/logos/widgets/logo-carousel.php:227
|
5299 |
#: modules/logos/widgets/logo-grid.php:266
|
5300 |
+
#: modules/posts/skins/skin-base.php:763
|
5301 |
+
#: modules/pricing/widgets/price-menu.php:516
|
5302 |
#: modules/pricing/widgets/pricing-table.php:238
|
5303 |
#: modules/pricing/widgets/pricing-table.php:271
|
5304 |
#: modules/promo-box/widgets/promo-box.php:151
|
5328 |
#: modules/info-table/widgets/info-table.php:248
|
5329 |
#: modules/logos/widgets/logo-carousel.php:228
|
5330 |
#: modules/logos/widgets/logo-grid.php:267
|
5331 |
+
#: modules/posts/skins/skin-base.php:764
|
5332 |
+
#: modules/pricing/widgets/price-menu.php:517
|
5333 |
#: modules/pricing/widgets/pricing-table.php:239
|
5334 |
#: modules/pricing/widgets/pricing-table.php:272
|
5335 |
#: modules/promo-box/widgets/promo-box.php:152
|
5359 |
#: modules/info-table/widgets/info-table.php:249
|
5360 |
#: modules/logos/widgets/logo-carousel.php:229
|
5361 |
#: modules/logos/widgets/logo-grid.php:268
|
5362 |
+
#: modules/posts/skins/skin-base.php:765
|
5363 |
+
#: modules/pricing/widgets/price-menu.php:518
|
5364 |
#: modules/pricing/widgets/pricing-table.php:240
|
5365 |
#: modules/pricing/widgets/pricing-table.php:273
|
5366 |
#: modules/promo-box/widgets/promo-box.php:153
|
5390 |
#: modules/info-table/widgets/info-table.php:250
|
5391 |
#: modules/logos/widgets/logo-carousel.php:230
|
5392 |
#: modules/logos/widgets/logo-grid.php:269
|
5393 |
+
#: modules/posts/skins/skin-base.php:766
|
5394 |
+
#: modules/pricing/widgets/price-menu.php:519
|
5395 |
#: modules/pricing/widgets/pricing-table.php:241
|
5396 |
#: modules/pricing/widgets/pricing-table.php:274
|
5397 |
#: modules/promo-box/widgets/promo-box.php:154
|
5421 |
#: modules/info-table/widgets/info-table.php:251
|
5422 |
#: modules/logos/widgets/logo-carousel.php:231
|
5423 |
#: modules/logos/widgets/logo-grid.php:270
|
5424 |
+
#: modules/posts/skins/skin-base.php:767
|
5425 |
+
#: modules/pricing/widgets/price-menu.php:520
|
5426 |
#: modules/pricing/widgets/pricing-table.php:242
|
5427 |
#: modules/pricing/widgets/pricing-table.php:275
|
5428 |
#: modules/promo-box/widgets/promo-box.php:155
|
5452 |
#: modules/info-table/widgets/info-table.php:252
|
5453 |
#: modules/logos/widgets/logo-carousel.php:232
|
5454 |
#: modules/logos/widgets/logo-grid.php:271
|
5455 |
+
#: modules/posts/skins/skin-base.php:768
|
5456 |
+
#: modules/pricing/widgets/price-menu.php:521
|
5457 |
#: modules/pricing/widgets/pricing-table.php:243
|
5458 |
#: modules/pricing/widgets/pricing-table.php:276
|
5459 |
#: modules/promo-box/widgets/promo-box.php:156
|
5483 |
#: modules/info-table/widgets/info-table.php:253
|
5484 |
#: modules/logos/widgets/logo-carousel.php:233
|
5485 |
#: modules/logos/widgets/logo-grid.php:272
|
5486 |
+
#: modules/posts/skins/skin-base.php:769
|
5487 |
+
#: modules/pricing/widgets/price-menu.php:522
|
5488 |
#: modules/pricing/widgets/pricing-table.php:244
|
5489 |
#: modules/pricing/widgets/pricing-table.php:277
|
5490 |
#: modules/promo-box/widgets/promo-box.php:157
|
5514 |
#: modules/info-table/widgets/info-table.php:254
|
5515 |
#: modules/logos/widgets/logo-carousel.php:234
|
5516 |
#: modules/logos/widgets/logo-grid.php:273
|
5517 |
+
#: modules/posts/skins/skin-base.php:770
|
5518 |
+
#: modules/pricing/widgets/price-menu.php:523
|
5519 |
#: modules/pricing/widgets/pricing-table.php:245
|
5520 |
#: modules/pricing/widgets/pricing-table.php:278
|
5521 |
#: modules/promo-box/widgets/promo-box.php:158
|
5545 |
#: modules/info-table/widgets/info-table.php:255
|
5546 |
#: modules/logos/widgets/logo-carousel.php:235
|
5547 |
#: modules/logos/widgets/logo-grid.php:274
|
5548 |
+
#: modules/posts/skins/skin-base.php:771
|
5549 |
+
#: modules/pricing/widgets/price-menu.php:524
|
5550 |
#: modules/pricing/widgets/pricing-table.php:246
|
5551 |
#: modules/pricing/widgets/pricing-table.php:279
|
5552 |
#: modules/promo-box/widgets/promo-box.php:159
|
5561 |
#: modules/content-ticker/widgets/content-ticker.php:249
|
5562 |
#: modules/content-ticker/widgets/content-ticker.php:259
|
5563 |
#: modules/content-ticker/widgets/content-ticker.php:1519
|
5564 |
+
#: modules/posts/skins/skin-base.php:886 modules/posts/skins/skin-base.php:1521
|
5565 |
msgid "Post Meta"
|
5566 |
msgstr ""
|
5567 |
|
5569 |
#: modules/content-ticker/widgets/content-ticker.php:849
|
5570 |
#: modules/content-ticker/widgets/content-ticker.php:925
|
5571 |
#: modules/display-conditions/conditions/date-archive.php:54
|
5572 |
+
#: modules/posts/skins/skin-base.php:1549
|
5573 |
#: modules/posts/widgets/posts-base.php:385
|
5574 |
#: modules/posts/widgets/posts-base.php:461
|
5575 |
#. translators: %s Label
|
5586 |
|
5587 |
#: modules/content-ticker/widgets/content-ticker.php:380
|
5588 |
#: modules/display-conditions/conditions/author-archive.php:55
|
5589 |
+
#: modules/posts/skins/skin-base.php:1533
|
5590 |
#: modules/posts/widgets/posts-base.php:301
|
5591 |
#: modules/posts/widgets/posts-base.php:350
|
5592 |
msgid "Author"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
#: modules/content-ticker/widgets/content-ticker.php:395
|
5596 |
+
#: modules/posts/skins/skin-base.php:956
|
5597 |
msgid "Author Icon"
|
5598 |
msgstr ""
|
5599 |
|
5610 |
msgstr ""
|
5611 |
|
5612 |
#: modules/content-ticker/widgets/content-ticker.php:539
|
5613 |
+
#: modules/posts/skins/skin-base.php:561
|
5614 |
+
#: modules/pricing/widgets/price-menu.php:176
|
5615 |
msgid "Show Image"
|
5616 |
msgstr ""
|
5617 |
|
5748 |
msgstr ""
|
5749 |
|
5750 |
#: modules/content-ticker/widgets/content-ticker.php:905
|
5751 |
+
#: modules/posts/skins/skin-base.php:1415
|
5752 |
#: modules/posts/widgets/posts-base.php:441
|
5753 |
msgid "Order"
|
5754 |
msgstr ""
|
5769 |
msgstr ""
|
5770 |
|
5771 |
#: modules/content-ticker/widgets/content-ticker.php:926
|
5772 |
+
#: modules/posts/skins/skin-base.php:1030
|
5773 |
#: modules/posts/widgets/posts-base.php:462
|
5774 |
msgid "Last Modified Date"
|
5775 |
msgstr ""
|
5790 |
msgstr ""
|
5791 |
|
5792 |
#: modules/content-ticker/widgets/content-ticker.php:931
|
5793 |
+
#: modules/posts/skins/skin-base.php:913
|
5794 |
#: modules/posts/widgets/posts-base.php:467
|
5795 |
msgid "Post Author"
|
5796 |
msgstr ""
|
5895 |
#: modules/info-box/widgets/info-box-carousel.php:650
|
5896 |
#: modules/instafeed/widgets/instafeed.php:714
|
5897 |
#: modules/logos/widgets/logo-carousel.php:350
|
5898 |
+
#: modules/posts/skins/skin-base.php:225
|
5899 |
#: modules/team-member/widgets/team-member-carousel.php:615
|
5900 |
msgid "Autoplay"
|
5901 |
msgstr ""
|
5919 |
#: modules/content-ticker/widgets/content-ticker.php:1164
|
5920 |
#: modules/info-box/widgets/info-box-carousel.php:696
|
5921 |
#: modules/instafeed/widgets/instafeed.php:746
|
5922 |
+
#: modules/posts/skins/skin-base.php:241
|
5923 |
#: modules/team-member/widgets/team-member-carousel.php:644
|
5924 |
msgid "Autoplay Speed"
|
5925 |
msgstr ""
|
5928 |
#: modules/info-box/widgets/info-box-carousel.php:716
|
5929 |
#: modules/instafeed/widgets/instafeed.php:760
|
5930 |
#: modules/logos/widgets/logo-carousel.php:399
|
5931 |
+
#: modules/posts/skins/skin-base.php:272
|
5932 |
#: modules/team-member/widgets/team-member-carousel.php:664
|
5933 |
msgid "Infinite Loop"
|
5934 |
msgstr ""
|
5965 |
#: modules/instafeed/widgets/instafeed.php:1871
|
5966 |
#: modules/logos/widgets/logo-carousel.php:434
|
5967 |
#: modules/logos/widgets/logo-carousel.php:771
|
5968 |
+
#: modules/posts/skins/skin-base.php:193 modules/posts/skins/skin-base.php:2914
|
5969 |
#: modules/team-member/widgets/team-member-carousel.php:699
|
5970 |
#: modules/team-member/widgets/team-member-carousel.php:1941
|
5971 |
msgid "Arrows"
|
5974 |
#: modules/content-ticker/widgets/content-ticker.php:1562
|
5975 |
#: modules/image-accordion/widgets/image-accordion.php:478
|
5976 |
#: modules/info-list/widgets/info-list.php:462
|
5977 |
+
#: modules/pricing/widgets/price-menu.php:401
|
5978 |
msgid "Items Spacing"
|
5979 |
msgstr ""
|
5980 |
|
5990 |
#: modules/info-box/widgets/info-box-carousel.php:1851
|
5991 |
#: modules/instafeed/widgets/instafeed.php:1883
|
5992 |
#: modules/logos/widgets/logo-carousel.php:782
|
5993 |
+
#: modules/posts/skins/skin-base.php:2926
|
5994 |
#: modules/team-member/widgets/team-member-carousel.php:1952
|
5995 |
msgid "Choose Arrow"
|
5996 |
msgstr ""
|
5999 |
#: modules/info-box/widgets/info-box-carousel.php:1888
|
6000 |
#: modules/instafeed/widgets/instafeed.php:1907
|
6001 |
#: modules/logos/widgets/logo-carousel.php:819
|
6002 |
+
#: modules/posts/skins/skin-base.php:2954
|
6003 |
#: modules/team-member/widgets/team-member-carousel.php:1989
|
6004 |
msgid "Arrows Size"
|
6005 |
msgstr ""
|
6069 |
#: modules/info-box/widgets/info-box.php:761
|
6070 |
#: modules/info-list/widgets/info-list.php:964
|
6071 |
#: modules/link-effects/widgets/link-effects.php:203
|
6072 |
+
#: modules/pricing/widgets/price-menu.php:291
|
6073 |
msgid "Justified"
|
6074 |
msgstr ""
|
6075 |
|
6121 |
msgstr ""
|
6122 |
|
6123 |
#: modules/counter/widgets/counter.php:1082
|
6124 |
+
#: modules/posts/skins/skin-base.php:969 modules/posts/skins/skin-base.php:1096
|
6125 |
msgid "Prefix"
|
6126 |
msgstr ""
|
6127 |
|
6363 |
#: modules/divider/widgets/divider.php:156
|
6364 |
#: modules/info-box/widgets/info-box-carousel.php:800
|
6365 |
#: modules/instafeed/widgets/instafeed.php:843
|
6366 |
+
#: modules/posts/skins/skin-base.php:317
|
6367 |
#: modules/team-member/widgets/team-member-carousel.php:739
|
6368 |
msgid "Direction"
|
6369 |
msgstr ""
|
6389 |
#: modules/divider/widgets/divider.php:203
|
6390 |
#: modules/headings/widgets/dual-heading.php:166
|
6391 |
#: modules/headings/widgets/fancy-heading.php:151
|
6392 |
+
#: modules/posts/skins/skin-base.php:759
|
6393 |
+
#: modules/pricing/widgets/price-menu.php:512
|
6394 |
msgid "HTML Tag"
|
6395 |
msgstr ""
|
6396 |
|
6455 |
#: modules/info-box/widgets/info-box.php:510
|
6456 |
#: modules/info-list/widgets/info-list.php:249
|
6457 |
#: modules/info-table/widgets/info-table.php:318
|
6458 |
+
#: modules/posts/skins/skin-base.php:1725
|
6459 |
msgid "Box"
|
6460 |
msgstr ""
|
6461 |
|
6464 |
#: modules/info-box/widgets/info-box-carousel.php:327
|
6465 |
#: modules/info-list/widgets/info-list.php:260
|
6466 |
#: modules/info-table/widgets/info-table.php:341
|
6467 |
+
#: modules/posts/skins/skin-base.php:1173
|
6468 |
#: modules/pricing/widgets/pricing-table.php:1015
|
6469 |
#: modules/promo-box/widgets/promo-box.php:371
|
6470 |
msgid "Button Text"
|
6491 |
#: modules/info-list/widgets/info-list.php:1171
|
6492 |
#: modules/info-table/widgets/info-table.php:1274
|
6493 |
#: modules/instafeed/widgets/instafeed.php:2592
|
6494 |
+
#: modules/posts/skins/skin-base.php:1188
|
6495 |
+
#: modules/posts/skins/skin-base.php:2794
|
6496 |
msgid "Button Icon"
|
6497 |
msgstr ""
|
6498 |
|
6524 |
|
6525 |
#: modules/flipbox/widgets/flipbox.php:678
|
6526 |
#: modules/flipbox/widgets/flipbox.php:1032
|
6527 |
+
#: modules/pricing/widgets/price-menu.php:996
|
6528 |
#: modules/pricing/widgets/pricing-table.php:1626
|
6529 |
msgid "Vertical Position"
|
6530 |
msgstr ""
|
6602 |
#: modules/gravity-forms/widgets/gravity-forms.php:983
|
6603 |
#: modules/info-box/widgets/info-box-carousel.php:1431
|
6604 |
#: modules/info-box/widgets/info-box.php:1374
|
6605 |
+
#: modules/pricing/widgets/price-menu.php:617
|
6606 |
msgid "Border Height"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
#: modules/gravity-forms/widgets/gravity-forms.php:1044
|
6610 |
+
#: modules/pricing/widgets/price-menu.php:131
|
6611 |
+
#: modules/pricing/widgets/price-menu.php:707
|
6612 |
#: modules/pricing/widgets/pricing-table.php:347
|
6613 |
msgid "Price"
|
6614 |
msgstr ""
|
6631 |
#: modules/gravity-forms/widgets/gravity-forms.php:1564
|
6632 |
#: modules/info-box/widgets/info-box-carousel.php:772
|
6633 |
#: modules/instafeed/widgets/instafeed.php:812
|
6634 |
+
#: modules/posts/skins/skin-base.php:1232
|
6635 |
+
#: modules/posts/skins/skin-base.php:1242
|
6636 |
+
#: modules/posts/skins/skin-base.php:3403
|
6637 |
+
#: modules/posts/skins/skin-base.php:4534
|
6638 |
#: modules/team-member/widgets/team-member-carousel.php:711
|
6639 |
msgid "Pagination"
|
6640 |
msgstr ""
|
7206 |
#: modules/image-accordion/widgets/image-accordion.php:185
|
7207 |
#: modules/info-box/widgets/info-box-carousel.php:312
|
7208 |
#: modules/info-box/widgets/info-box.php:543
|
7209 |
+
#: modules/posts/skins/skin-base.php:1161
|
7210 |
msgid "Show Button"
|
7211 |
msgstr ""
|
7212 |
|
7347 |
#: modules/info-box/widgets/info-box-carousel.php:1368
|
7348 |
#: modules/info-box/widgets/info-box.php:430
|
7349 |
#: modules/info-box/widgets/info-box.php:1311
|
7350 |
+
#: modules/posts/skins/skin-base.php:782
|
7351 |
+
#: modules/pricing/widgets/price-menu.php:323
|
7352 |
+
#: modules/pricing/widgets/price-menu.php:584
|
7353 |
msgid "Title Separator"
|
7354 |
msgstr ""
|
7355 |
|
7397 |
msgstr ""
|
7398 |
|
7399 |
#: modules/info-box/widgets/info-box-carousel.php:663
|
7400 |
+
#: modules/posts/skins/skin-base.php:255
|
7401 |
msgid "Pause on Hover"
|
7402 |
msgstr ""
|
7403 |
|
7420 |
#: modules/instafeed/widgets/instafeed.php:831
|
7421 |
#: modules/logos/widgets/logo-carousel.php:446
|
7422 |
#: modules/logos/widgets/logo-carousel.php:462
|
7423 |
+
#: modules/posts/skins/skin-base.php:209 modules/posts/skins/skin-base.php:3164
|
7424 |
#: modules/team-member/widgets/team-member-carousel.php:727
|
7425 |
msgid "Dots"
|
7426 |
msgstr ""
|
7526 |
#: modules/info-box/widgets/info-box.php:1157
|
7527 |
#: modules/info-box/widgets/info-box.php:1240
|
7528 |
#: modules/info-box/widgets/info-box.php:1516
|
7529 |
+
#: modules/posts/skins/skin-base.php:2072
|
7530 |
msgid "Hover Color"
|
7531 |
msgstr ""
|
7532 |
|
7690 |
msgstr ""
|
7691 |
|
7692 |
#: modules/instafeed/widgets/instafeed.php:350
|
7693 |
+
#: modules/posts/skins/skin-base.php:94
|
7694 |
#: modules/twitter/widgets/twitter-grid.php:74
|
7695 |
msgid "Grid"
|
7696 |
msgstr ""
|
7697 |
|
7698 |
#: modules/instafeed/widgets/instafeed.php:351
|
7699 |
+
#: modules/posts/skins/skin-base.php:95
|
7700 |
msgid "Masonry"
|
7701 |
msgstr ""
|
7702 |
|
7703 |
#: modules/instafeed/widgets/instafeed.php:352
|
7704 |
+
#: modules/posts/skins/skin-base.php:96
|
7705 |
msgid "Carousel"
|
7706 |
msgstr ""
|
7707 |
|
7718 |
msgstr ""
|
7719 |
|
7720 |
#: modules/instafeed/widgets/instafeed.php:419
|
7721 |
+
#: modules/posts/skins/skin-base.php:1565
|
7722 |
msgid "Comments"
|
7723 |
msgstr ""
|
7724 |
|
7910 |
msgstr ""
|
7911 |
|
7912 |
#: modules/instafeed/widgets/instafeed.php:2388
|
7913 |
+
#: modules/posts/skins/skin-base.php:1249
|
7914 |
msgid "Load More Button"
|
7915 |
msgstr ""
|
7916 |
|
8092 |
msgstr ""
|
8093 |
|
8094 |
#: modules/logos/widgets/logo-grid.php:295
|
8095 |
+
#: modules/posts/skins/skin-base.php:105
|
8096 |
msgid "Columns"
|
8097 |
msgstr ""
|
8098 |
|
8112 |
msgid "Saved"
|
8113 |
msgstr ""
|
8114 |
|
8115 |
+
#: modules/posts/skins/skin-base.php:129
|
8116 |
msgid "Equal Height"
|
8117 |
msgstr ""
|
8118 |
|
8119 |
+
#: modules/posts/skins/skin-base.php:149
|
8120 |
msgid "Carousel Options"
|
8121 |
msgstr ""
|
8122 |
|
8123 |
+
#: modules/posts/skins/skin-base.php:164
|
8124 |
msgid "Slides to Scroll"
|
8125 |
msgstr ""
|
8126 |
|
8127 |
+
#: modules/posts/skins/skin-base.php:165
|
8128 |
msgid "Set how many slides are scrolled per swipe."
|
8129 |
msgstr ""
|
8130 |
|
8131 |
+
#: modules/posts/skins/skin-base.php:180
|
8132 |
msgid "Animation Speed"
|
8133 |
msgstr ""
|
8134 |
|
8135 |
+
#: modules/posts/skins/skin-base.php:288
|
8136 |
msgid "Adaptive Height"
|
8137 |
msgstr ""
|
8138 |
|
8139 |
+
#: modules/posts/skins/skin-base.php:304
|
8140 |
+
msgid "Center Mode"
|
8141 |
+
msgstr ""
|
8142 |
+
|
8143 |
+
#: modules/posts/skins/skin-base.php:347
|
8144 |
msgid "Filters"
|
8145 |
msgstr ""
|
8146 |
|
8147 |
+
#: modules/posts/skins/skin-base.php:359
|
8148 |
msgid "Show Filters"
|
8149 |
msgstr ""
|
8150 |
|
8151 |
+
#: modules/posts/skins/skin-base.php:377 modules/posts/skins/skin-base.php:429
|
8152 |
msgid "This feature is available in PowerPack Pro."
|
8153 |
msgstr ""
|
8154 |
|
8155 |
+
#: modules/posts/skins/skin-base.php:401
|
8156 |
msgid "Search Form"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
+
#: modules/posts/skins/skin-base.php:411
|
8160 |
#: modules/posts/widgets/posts-base.php:575
|
8161 |
msgid "Show Search Form"
|
8162 |
msgstr ""
|
8163 |
|
8164 |
+
#: modules/posts/skins/skin-base.php:448 modules/posts/skins/skin-base.php:2249
|
8165 |
msgid "Post Terms"
|
8166 |
msgstr ""
|
8167 |
|
8168 |
+
#: modules/posts/skins/skin-base.php:455
|
8169 |
msgid "Show Post Terms"
|
8170 |
msgstr ""
|
8171 |
|
8172 |
+
#: modules/posts/skins/skin-base.php:486
|
8173 |
msgid "Select Taxonomy"
|
8174 |
msgstr ""
|
8175 |
|
8176 |
+
#: modules/posts/skins/skin-base.php:503
|
8177 |
msgid "Max Terms to Show"
|
8178 |
msgstr ""
|
8179 |
|
8180 |
+
#: modules/posts/skins/skin-base.php:516
|
8181 |
msgid "Link to Taxonomy"
|
8182 |
msgstr ""
|
8183 |
|
8184 |
+
#: modules/posts/skins/skin-base.php:531
|
8185 |
msgid "Terms Separator"
|
8186 |
msgstr ""
|
8187 |
|
8188 |
+
#: modules/posts/skins/skin-base.php:573 modules/posts/skins/skin-base.php:732
|
8189 |
+
#: modules/posts/skins/skin-base.php:1009
|
8190 |
msgid "Link to Post"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
+
#: modules/posts/skins/skin-base.php:588 modules/posts/skins/skin-base.php:747
|
8194 |
+
#: modules/posts/skins/skin-base.php:1217
|
8195 |
+
msgid "Open in a New Tab"
|
8196 |
+
msgstr ""
|
8197 |
+
|
8198 |
+
#: modules/posts/skins/skin-base.php:600
|
8199 |
msgid "Custom Height"
|
8200 |
msgstr ""
|
8201 |
|
8202 |
+
#: modules/posts/skins/skin-base.php:616
|
8203 |
msgid "Image Ratio"
|
8204 |
msgstr ""
|
8205 |
|
8206 |
+
#: modules/posts/skins/skin-base.php:660
|
8207 |
msgid "Image Location"
|
8208 |
msgstr ""
|
8209 |
|
8210 |
+
#: modules/posts/skins/skin-base.php:663
|
8211 |
msgid "Inside Content Container"
|
8212 |
msgstr ""
|
8213 |
|
8214 |
+
#: modules/posts/skins/skin-base.php:664
|
8215 |
msgid "Outside Content Container"
|
8216 |
msgstr ""
|
8217 |
|
8218 |
+
#: modules/posts/skins/skin-base.php:676
|
8219 |
msgid "Fallback Image"
|
8220 |
msgstr ""
|
8221 |
|
8222 |
+
#: modules/posts/skins/skin-base.php:677
|
8223 |
msgid ""
|
8224 |
"If a featured image is not available in post, it will display the first "
|
8225 |
"image from the post or default image placeholder or a custom image. You can "
|
8226 |
"choose None to do not display the fallback image."
|
8227 |
msgstr ""
|
8228 |
|
8229 |
+
#: modules/posts/skins/skin-base.php:694
|
8230 |
msgid "Fallback Image Custom"
|
8231 |
msgstr ""
|
8232 |
|
8233 |
+
#: modules/posts/skins/skin-base.php:720
|
8234 |
msgid "Post Title"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
+
#: modules/posts/skins/skin-base.php:811
|
8238 |
msgid "Show Content"
|
8239 |
msgstr ""
|
8240 |
|
8241 |
+
#: modules/posts/skins/skin-base.php:827 modules/posts/skins/skin-base.php:1491
|
8242 |
msgid "Excerpt"
|
8243 |
msgstr ""
|
8244 |
|
8245 |
+
#: modules/posts/skins/skin-base.php:828
|
8246 |
msgid "Limited Content"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
+
#: modules/posts/skins/skin-base.php:829
|
8250 |
msgid "Full Content"
|
8251 |
msgstr ""
|
8252 |
|
8253 |
+
#: modules/posts/skins/skin-base.php:840
|
8254 |
msgid "Excerpt Length"
|
8255 |
msgstr ""
|
8256 |
|
8257 |
+
#: modules/posts/skins/skin-base.php:855
|
8258 |
msgid "Content Length"
|
8259 |
msgstr ""
|
8260 |
|
8261 |
+
#: modules/posts/skins/skin-base.php:856
|
8262 |
msgid "Words"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
+
#: modules/posts/skins/skin-base.php:857
|
8266 |
msgid "Number of words to be displayed from the post content"
|
8267 |
msgstr ""
|
8268 |
|
8269 |
+
#: modules/posts/skins/skin-base.php:879 modules/posts/skins/skin-base.php:1476
|
8270 |
+
#: modules/posts/skins/skin-base.php:2512
|
8271 |
msgid "Meta"
|
8272 |
msgstr ""
|
8273 |
|
8274 |
+
#: modules/posts/skins/skin-base.php:898
|
8275 |
msgid "Post Meta Separator"
|
8276 |
msgstr ""
|
8277 |
|
8278 |
+
#: modules/posts/skins/skin-base.php:925
|
8279 |
msgid "Show Post Author"
|
8280 |
msgstr ""
|
8281 |
|
8282 |
+
#: modules/posts/skins/skin-base.php:940
|
8283 |
msgid "Link to Author"
|
8284 |
msgstr ""
|
8285 |
|
8286 |
+
#: modules/posts/skins/skin-base.php:982
|
8287 |
msgid "Post Date"
|
8288 |
msgstr ""
|
8289 |
|
8290 |
+
#: modules/posts/skins/skin-base.php:994
|
8291 |
msgid "Show Post Date"
|
8292 |
msgstr ""
|
8293 |
|
8294 |
+
#: modules/posts/skins/skin-base.php:1025
|
8295 |
msgid "Date Format"
|
8296 |
msgstr ""
|
8297 |
|
8298 |
+
#: modules/posts/skins/skin-base.php:1028
|
8299 |
msgid "Published Date"
|
8300 |
msgstr ""
|
8301 |
|
8302 |
+
#: modules/posts/skins/skin-base.php:1029
|
8303 |
msgid "Time Ago"
|
8304 |
msgstr ""
|
8305 |
|
8306 |
+
#: modules/posts/skins/skin-base.php:1031
|
8307 |
+
#: modules/posts/skins/skin-base.php:1045
|
8308 |
msgid "Custom Format"
|
8309 |
msgstr ""
|
8310 |
|
8311 |
+
#: modules/posts/skins/skin-base.php:1032
|
8312 |
+
#: modules/posts/skins/skin-base.php:1064
|
8313 |
msgid "Custom Meta Key"
|
8314 |
msgstr ""
|
8315 |
|
8316 |
+
#: modules/posts/skins/skin-base.php:1046
|
8317 |
msgid "Refer to PHP date formats <a href=\"%s\">here</a>"
|
8318 |
msgstr ""
|
8319 |
|
8320 |
+
#: modules/posts/skins/skin-base.php:1065
|
8321 |
msgid "Display the post date stored in custom meta key."
|
8322 |
msgstr ""
|
8323 |
|
8324 |
+
#: modules/posts/skins/skin-base.php:1083
|
8325 |
msgid "Date Icon"
|
8326 |
msgstr ""
|
8327 |
|
8328 |
+
#: modules/posts/skins/skin-base.php:1109
|
8329 |
msgid "Post Comments"
|
8330 |
msgstr ""
|
8331 |
|
8332 |
+
#: modules/posts/skins/skin-base.php:1121
|
8333 |
msgid "Show Post Comments"
|
8334 |
msgstr ""
|
8335 |
|
8336 |
+
#: modules/posts/skins/skin-base.php:1136
|
8337 |
msgid "Comments Icon"
|
8338 |
msgstr ""
|
8339 |
|
8340 |
+
#: modules/posts/skins/skin-base.php:1154
|
8341 |
+
#: modules/posts/skins/skin-base.php:1506
|
8342 |
+
#: modules/posts/skins/skin-base.php:2639
|
8343 |
msgid "Read More Button"
|
8344 |
msgstr ""
|
8345 |
|
8346 |
+
#: modules/posts/skins/skin-base.php:1247
|
8347 |
+
#: modules/posts/skins/skin-base.php:1248
|
|
|
|
|
|
|
|
|
8348 |
msgid "Numbers"
|
8349 |
msgstr ""
|
8350 |
|
8351 |
+
#: modules/posts/skins/skin-base.php:1248
|
8352 |
msgid "Previous/Next"
|
8353 |
msgstr ""
|
8354 |
|
8355 |
+
#: modules/posts/skins/skin-base.php:1250
|
8356 |
msgid "Infinite"
|
8357 |
msgstr ""
|
8358 |
|
8359 |
+
#: modules/posts/skins/skin-base.php:1263
|
8360 |
msgid "This pagination option is available in PowerPack Pro."
|
8361 |
msgstr ""
|
8362 |
|
8363 |
+
#: modules/posts/skins/skin-base.php:1278
|
8364 |
msgid "Pagination Position"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
+
#: modules/posts/skins/skin-base.php:1299
|
8368 |
msgid "Ajax Pagination"
|
8369 |
msgstr ""
|
8370 |
|
8371 |
+
#: modules/posts/skins/skin-base.php:1315
|
8372 |
msgid "Page Limit"
|
8373 |
msgstr ""
|
8374 |
|
8375 |
+
#: modules/posts/skins/skin-base.php:1331
|
8376 |
msgid "Shorten"
|
8377 |
msgstr ""
|
8378 |
|
8379 |
+
#: modules/posts/skins/skin-base.php:1347
|
8380 |
msgid "Previous Label"
|
8381 |
msgstr ""
|
8382 |
|
8383 |
+
#: modules/posts/skins/skin-base.php:1348
|
8384 |
msgid "« Previous"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: modules/posts/skins/skin-base.php:1359
|
8388 |
msgid "Next Label"
|
8389 |
msgstr ""
|
8390 |
|
8391 |
+
#: modules/posts/skins/skin-base.php:1360
|
8392 |
msgid "Next »"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
+
#: modules/posts/skins/skin-base.php:1422
|
8396 |
msgid "Content Parts"
|
8397 |
msgstr ""
|
8398 |
|
8399 |
+
#: modules/posts/skins/skin-base.php:1430
|
8400 |
msgid "Thumbnail"
|
8401 |
msgstr ""
|
8402 |
|
8403 |
+
#: modules/posts/skins/skin-base.php:1446
|
8404 |
msgid "Terms"
|
8405 |
msgstr ""
|
8406 |
|
8407 |
+
#: modules/posts/skins/skin-base.php:1674
|
8408 |
msgid "Column Spacing"
|
8409 |
msgstr ""
|
8410 |
|
8411 |
+
#: modules/posts/skins/skin-base.php:1695
|
8412 |
msgid "Row Spacing"
|
8413 |
msgstr ""
|
8414 |
|
8415 |
+
#: modules/posts/skins/skin-base.php:1848
|
8416 |
msgid "Content Container"
|
8417 |
msgstr ""
|
8418 |
|
8419 |
+
#: modules/posts/skins/skin-base.php:2157
|
8420 |
msgid "Separator Height"
|
8421 |
msgstr ""
|
8422 |
|
8423 |
+
#: modules/posts/skins/skin-base.php:2184
|
8424 |
msgid "Separator Width"
|
8425 |
msgstr ""
|
8426 |
|
8427 |
+
#: modules/posts/skins/skin-base.php:2297
|
8428 |
msgid "Terms Gap"
|
8429 |
msgstr ""
|
8430 |
|
8431 |
+
#: modules/posts/skins/skin-base.php:2538
|
8432 |
msgid "Links Color"
|
8433 |
msgstr ""
|
8434 |
|
8435 |
+
#: modules/posts/skins/skin-base.php:2553
|
8436 |
msgid "Links Hover Color"
|
8437 |
msgstr ""
|
8438 |
|
8439 |
+
#: modules/posts/skins/skin-base.php:2580
|
8440 |
msgid "Meta Items Spacing"
|
8441 |
msgstr ""
|
8442 |
|
8443 |
+
#: modules/posts/skins/skin-base.php:2978
|
8444 |
msgid "Align Arrows"
|
8445 |
msgstr ""
|
8446 |
|
8447 |
+
#: modules/posts/skins/skin-base.php:3415
|
8448 |
msgid "Gap between Posts & Pagination"
|
8449 |
msgstr ""
|
8450 |
|
8451 |
+
#: modules/posts/skins/skin-base.php:3702
|
8452 |
msgid "Space Between"
|
8453 |
msgstr ""
|
8454 |
|
8455 |
+
#: modules/posts/skins/skin-base.php:3730
|
8456 |
msgid "Loader"
|
8457 |
msgstr ""
|
8458 |
|
|
|
|
|
|
|
|
|
8459 |
#: modules/posts/skins/skin-card.php:45
|
8460 |
msgid "Card"
|
8461 |
msgstr ""
|
8586 |
msgid "Posts Per Page"
|
8587 |
msgstr ""
|
8588 |
|
8589 |
+
#: modules/pricing/widgets/price-menu.php:124
|
8590 |
msgid ""
|
8591 |
"I am item content. Double click here to change this text. Lorem ipsum dolor "
|
8592 |
"sit amet, consectetur adipiscing elit."
|
8593 |
msgstr ""
|
8594 |
|
8595 |
+
#: modules/pricing/widgets/price-menu.php:143
|
8596 |
#: modules/pricing/widgets/pricing-table.php:372
|
8597 |
msgid "Discount"
|
8598 |
msgstr ""
|
8599 |
|
8600 |
+
#: modules/pricing/widgets/price-menu.php:155
|
8601 |
+
#: modules/pricing/widgets/price-menu.php:786
|
8602 |
#: modules/pricing/widgets/pricing-table.php:384
|
8603 |
#: modules/pricing/widgets/pricing-table.php:1725
|
8604 |
msgid "Original Price"
|
8605 |
msgstr ""
|
8606 |
|
8607 |
+
#: modules/pricing/widgets/price-menu.php:229
|
8608 |
msgid "Menu Item #1"
|
8609 |
msgstr ""
|
8610 |
|
8611 |
+
#: modules/pricing/widgets/price-menu.php:233
|
8612 |
msgid "Menu Item #2"
|
8613 |
msgstr ""
|
8614 |
|
8615 |
+
#: modules/pricing/widgets/price-menu.php:237
|
8616 |
msgid "Menu Item #3"
|
8617 |
msgstr ""
|
8618 |
|
8619 |
+
#: modules/pricing/widgets/price-menu.php:259
|
8620 |
msgid "Menu Style"
|
8621 |
msgstr ""
|
8622 |
|
8623 |
+
#: modules/pricing/widgets/price-menu.php:263
|
8624 |
msgid "PowerPack Style"
|
8625 |
msgstr ""
|
8626 |
|
8627 |
+
#: modules/pricing/widgets/price-menu.php:264
|
8628 |
msgid "Style 1"
|
8629 |
msgstr ""
|
8630 |
|
8631 |
+
#: modules/pricing/widgets/price-menu.php:265
|
8632 |
msgid "Style 2"
|
8633 |
msgstr ""
|
8634 |
|
8635 |
+
#: modules/pricing/widgets/price-menu.php:266
|
8636 |
msgid "Style 3"
|
8637 |
msgstr ""
|
8638 |
|
8639 |
+
#: modules/pricing/widgets/price-menu.php:267
|
8640 |
msgid "Style 4"
|
8641 |
msgstr ""
|
8642 |
|
8643 |
+
#: modules/pricing/widgets/price-menu.php:308
|
8644 |
+
#: modules/pricing/widgets/price-menu.php:1034
|
8645 |
msgid "Title-Price Connector"
|
8646 |
msgstr ""
|
8647 |
|
8648 |
+
#: modules/pricing/widgets/price-menu.php:381
|
8649 |
msgid "Menu Items"
|
8650 |
msgstr ""
|
8651 |
|
8652 |
+
#: modules/pricing/widgets/price-menu.php:715
|
8653 |
msgid "Price Badge"
|
8654 |
msgstr ""
|
8655 |
|
8656 |
+
#: modules/pricing/widgets/price-menu.php:795
|
8657 |
msgid "Strikethrough"
|
8658 |
msgstr ""
|
8659 |
|
8660 |
+
#: modules/pricing/widgets/price-menu.php:810
|
8661 |
msgid "Original Price Color"
|
8662 |
msgstr ""
|
8663 |
|
8664 |
+
#: modules/pricing/widgets/price-menu.php:827
|
8665 |
msgid "Original Price Typography"
|
8666 |
msgstr ""
|
8667 |
|
9668 |
msgid "Transition"
|
9669 |
msgstr ""
|
9670 |
|
9671 |
+
#: modules/posts/skins/skin-base.php:4033
|
9672 |
msgctxt "%s = human-readable time difference"
|
9673 |
msgid "%s ago"
|
9674 |
msgstr ""
|
modules/business-hours/widgets/business-hours.php
CHANGED
@@ -1301,18 +1301,4 @@ class Business_Hours extends Powerpack_Widget {
|
|
1301 |
</div>
|
1302 |
<?php
|
1303 |
}
|
1304 |
-
|
1305 |
-
/**
|
1306 |
-
* Render divider widget output in the editor.
|
1307 |
-
*
|
1308 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1309 |
-
*
|
1310 |
-
* Remove this after Elementor v3.3.0
|
1311 |
-
*
|
1312 |
-
* @since 1.0.0
|
1313 |
-
* @access protected
|
1314 |
-
*/
|
1315 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1316 |
-
$this->content_template();
|
1317 |
-
}
|
1318 |
}
|
1301 |
</div>
|
1302 |
<?php
|
1303 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1304 |
}
|
modules/buttons/widgets/buttons.php
CHANGED
@@ -1584,18 +1584,4 @@ class Buttons extends Powerpack_Widget {
|
|
1584 |
</div>
|
1585 |
<?php
|
1586 |
}
|
1587 |
-
|
1588 |
-
/**
|
1589 |
-
* Render divider widget output in the editor.
|
1590 |
-
*
|
1591 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1592 |
-
*
|
1593 |
-
* Remove this after Elementor v3.3.0
|
1594 |
-
*
|
1595 |
-
* @since 1.0.0
|
1596 |
-
* @access protected
|
1597 |
-
*/
|
1598 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1599 |
-
$this->content_template();
|
1600 |
-
}
|
1601 |
}
|
1584 |
</div>
|
1585 |
<?php
|
1586 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1587 |
}
|
modules/content-ticker/widgets/content-ticker.php
CHANGED
@@ -2528,14 +2528,4 @@ class Content_Ticker extends Powerpack_Widget {
|
|
2528 |
|
2529 |
return $args;
|
2530 |
}
|
2531 |
-
|
2532 |
-
/**
|
2533 |
-
* Render content ticker widget output in the editor.
|
2534 |
-
*
|
2535 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
2536 |
-
*
|
2537 |
-
* @access protected
|
2538 |
-
*/
|
2539 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
2540 |
-
}
|
2541 |
}
|
2528 |
|
2529 |
return $args;
|
2530 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2531 |
}
|
modules/counter/widgets/counter.php
CHANGED
@@ -1826,18 +1826,4 @@ class Counter extends Powerpack_Widget {
|
|
1826 |
</div>
|
1827 |
<?php
|
1828 |
}
|
1829 |
-
|
1830 |
-
/**
|
1831 |
-
* Render counter widget output in the editor.
|
1832 |
-
*
|
1833 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1834 |
-
*
|
1835 |
-
* Remove this after Elementor v3.3.0
|
1836 |
-
*
|
1837 |
-
* @since 1.0.0
|
1838 |
-
* @access protected
|
1839 |
-
*/
|
1840 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1841 |
-
$this->content_template();
|
1842 |
-
}
|
1843 |
}
|
1826 |
</div>
|
1827 |
<?php
|
1828 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1829 |
}
|
modules/divider/widgets/divider.php
CHANGED
@@ -1161,18 +1161,4 @@ class Divider extends Powerpack_Widget {
|
|
1161 |
</div>
|
1162 |
<?php
|
1163 |
}
|
1164 |
-
|
1165 |
-
/**
|
1166 |
-
* Render divider widget output in the editor.
|
1167 |
-
*
|
1168 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1169 |
-
*
|
1170 |
-
* Remove this after Elementor v3.3.0
|
1171 |
-
*
|
1172 |
-
* @since 1.0.0
|
1173 |
-
* @access protected
|
1174 |
-
*/
|
1175 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1176 |
-
$this->content_template();
|
1177 |
-
}
|
1178 |
}
|
1161 |
</div>
|
1162 |
<?php
|
1163 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1164 |
}
|
modules/flipbox/widgets/flipbox.php
CHANGED
@@ -2111,17 +2111,4 @@ class Flipbox extends Powerpack_Widget {
|
|
2111 |
</div>
|
2112 |
<?php
|
2113 |
}
|
2114 |
-
|
2115 |
-
/**
|
2116 |
-
* Render flipbox widget output in the editor.
|
2117 |
-
*
|
2118 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
2119 |
-
*
|
2120 |
-
* Remove this after Elementor v3.3.0
|
2121 |
-
*
|
2122 |
-
* @access protected
|
2123 |
-
*/
|
2124 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
2125 |
-
$this->content_template();
|
2126 |
-
}
|
2127 |
}
|
2111 |
</div>
|
2112 |
<?php
|
2113 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2114 |
}
|
modules/headings/widgets/dual-heading.php
CHANGED
@@ -603,18 +603,4 @@ class Dual_Heading extends Powerpack_Widget {
|
|
603 |
</{{{settings.heading_html_tag}}}>
|
604 |
<?php
|
605 |
}
|
606 |
-
|
607 |
-
/**
|
608 |
-
* Render dual heading widget output in the editor.
|
609 |
-
*
|
610 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
611 |
-
*
|
612 |
-
* Remove this after Elementor v3.3.0
|
613 |
-
*
|
614 |
-
* @since 1.0.0
|
615 |
-
* @access protected
|
616 |
-
*/
|
617 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
618 |
-
$this->content_template();
|
619 |
-
}
|
620 |
}
|
603 |
</{{{settings.heading_html_tag}}}>
|
604 |
<?php
|
605 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
606 |
}
|
modules/headings/widgets/fancy-heading.php
CHANGED
@@ -390,18 +390,4 @@ class Fancy_Heading extends Powerpack_Widget {
|
|
390 |
</{{{settings.heading_html_tag}}}>
|
391 |
<?php
|
392 |
}
|
393 |
-
|
394 |
-
/**
|
395 |
-
* Render fancy heading widget output in the editor.
|
396 |
-
*
|
397 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
398 |
-
*
|
399 |
-
* Remove this after Elementor v3.3.0
|
400 |
-
*
|
401 |
-
* @since 1.2.6
|
402 |
-
* @access protected
|
403 |
-
*/
|
404 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
405 |
-
$this->content_template();
|
406 |
-
}
|
407 |
}
|
390 |
</{{{settings.heading_html_tag}}}>
|
391 |
<?php
|
392 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
}
|
modules/hotspots/widgets/hotspots.php
CHANGED
@@ -1314,18 +1314,4 @@ class Hotspots extends Powerpack_Widget {
|
|
1314 |
</div>
|
1315 |
<?php
|
1316 |
}
|
1317 |
-
|
1318 |
-
/**
|
1319 |
-
* Render image hotspots widget output in the editor.
|
1320 |
-
*
|
1321 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1322 |
-
*
|
1323 |
-
* Remove this after Elementor v3.3.0
|
1324 |
-
*
|
1325 |
-
* @since 1.0.0
|
1326 |
-
* @access protected
|
1327 |
-
*/
|
1328 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1329 |
-
$this->content_template();
|
1330 |
-
}
|
1331 |
}
|
1314 |
</div>
|
1315 |
<?php
|
1316 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1317 |
}
|
modules/icon-list/widgets/icon-list.php
CHANGED
@@ -1094,18 +1094,4 @@ class Icon_List extends Powerpack_Widget {
|
|
1094 |
</div>
|
1095 |
<?php
|
1096 |
}
|
1097 |
-
|
1098 |
-
/**
|
1099 |
-
* Render divider widget output in the editor.
|
1100 |
-
*
|
1101 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1102 |
-
*
|
1103 |
-
* Remove this after Elementor v3.3.0
|
1104 |
-
*
|
1105 |
-
* @since 1.0.0
|
1106 |
-
* @access protected
|
1107 |
-
*/
|
1108 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1109 |
-
$this->content_template();
|
1110 |
-
}
|
1111 |
}
|
1094 |
</div>
|
1095 |
<?php
|
1096 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1097 |
}
|
modules/image-comparison/widgets/image-comparison.php
CHANGED
@@ -896,18 +896,4 @@ class Image_Comparison extends Powerpack_Widget {
|
|
896 |
</div>
|
897 |
<?php
|
898 |
}
|
899 |
-
|
900 |
-
/**
|
901 |
-
* Render image comparison widget output in the editor.
|
902 |
-
*
|
903 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
904 |
-
*
|
905 |
-
* Remove this after Elementor v3.3.0
|
906 |
-
*
|
907 |
-
* @since 1.0.0
|
908 |
-
* @access protected
|
909 |
-
*/
|
910 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
911 |
-
$this->content_template();
|
912 |
-
}
|
913 |
}
|
896 |
</div>
|
897 |
<?php
|
898 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
899 |
}
|
modules/info-box/widgets/info-box-carousel.php
CHANGED
@@ -3120,18 +3120,4 @@ class Info_Box_Carousel extends Powerpack_Widget {
|
|
3120 |
</div>
|
3121 |
<?php
|
3122 |
}
|
3123 |
-
|
3124 |
-
/**
|
3125 |
-
* Render info box carousel widget output in the editor.
|
3126 |
-
*
|
3127 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
3128 |
-
*
|
3129 |
-
* Remove this after Elementor v3.3.0
|
3130 |
-
*
|
3131 |
-
* @since 1.0.0
|
3132 |
-
* @access protected
|
3133 |
-
*/
|
3134 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
3135 |
-
$this->content_template();
|
3136 |
-
}
|
3137 |
}
|
3120 |
</div>
|
3121 |
<?php
|
3122 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3123 |
}
|
modules/info-box/widgets/info-box.php
CHANGED
@@ -2255,18 +2255,4 @@ class Info_Box extends Powerpack_Widget {
|
|
2255 |
</{{{pp_if_html_tag}}}>
|
2256 |
<?php
|
2257 |
}
|
2258 |
-
|
2259 |
-
/**
|
2260 |
-
* Render info box widget output in the editor.
|
2261 |
-
*
|
2262 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
2263 |
-
*
|
2264 |
-
* Remove this after Elementor v3.3.0
|
2265 |
-
*
|
2266 |
-
* @since 1.0.0
|
2267 |
-
* @access protected
|
2268 |
-
*/
|
2269 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
2270 |
-
$this->content_template();
|
2271 |
-
}
|
2272 |
}
|
2255 |
</{{{pp_if_html_tag}}}>
|
2256 |
<?php
|
2257 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2258 |
}
|
modules/info-list/widgets/info-list.php
CHANGED
@@ -1652,18 +1652,4 @@ class Info_List extends Powerpack_Widget {
|
|
1652 |
</div>
|
1653 |
<?php
|
1654 |
}
|
1655 |
-
|
1656 |
-
/**
|
1657 |
-
* Render info list widget output in the editor.
|
1658 |
-
*
|
1659 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1660 |
-
*
|
1661 |
-
* Remove this after Elementor v3.3.0
|
1662 |
-
*
|
1663 |
-
* @since 1.0.0
|
1664 |
-
* @access protected
|
1665 |
-
*/
|
1666 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1667 |
-
$this->content_template();
|
1668 |
-
}
|
1669 |
}
|
1652 |
</div>
|
1653 |
<?php
|
1654 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1655 |
}
|
modules/info-table/widgets/info-table.php
CHANGED
@@ -1985,18 +1985,4 @@ class Info_Table extends Powerpack_Widget {
|
|
1985 |
</{{{if_html_tag}}}>
|
1986 |
<?php
|
1987 |
}
|
1988 |
-
|
1989 |
-
/**
|
1990 |
-
* Render divider widget output in the editor.
|
1991 |
-
*
|
1992 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1993 |
-
*
|
1994 |
-
* Remove this after Elementor v3.3.0
|
1995 |
-
*
|
1996 |
-
* @since 1.3.0
|
1997 |
-
* @access protected
|
1998 |
-
*/
|
1999 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
2000 |
-
$this->content_template();
|
2001 |
-
}
|
2002 |
}
|
1985 |
</{{{if_html_tag}}}>
|
1986 |
<?php
|
1987 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1988 |
}
|
modules/link-effects/widgets/link-effects.php
CHANGED
@@ -498,18 +498,4 @@ class Link_Effects extends Powerpack_Widget {
|
|
498 |
</a>
|
499 |
<?php
|
500 |
}
|
501 |
-
|
502 |
-
/**
|
503 |
-
* Render link effects widget output in the editor.
|
504 |
-
*
|
505 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
506 |
-
*
|
507 |
-
* Remove this after Elementor v3.3.0
|
508 |
-
*
|
509 |
-
* @access protected
|
510 |
-
*/
|
511 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
512 |
-
$this->content_template();
|
513 |
-
}
|
514 |
-
|
515 |
}
|
498 |
</a>
|
499 |
<?php
|
500 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
}
|
modules/logos/widgets/logo-carousel.php
CHANGED
@@ -1755,18 +1755,4 @@ class Logo_Carousel extends Powerpack_Widget {
|
|
1755 |
</div>
|
1756 |
<?php
|
1757 |
}
|
1758 |
-
|
1759 |
-
/**
|
1760 |
-
* Render logo carousel widget output in the editor.
|
1761 |
-
*
|
1762 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1763 |
-
*
|
1764 |
-
* Remove this after Elementor v3.3.0
|
1765 |
-
*
|
1766 |
-
* @since 1.0.0
|
1767 |
-
* @access protected
|
1768 |
-
*/
|
1769 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1770 |
-
$this->content_template();
|
1771 |
-
}
|
1772 |
}
|
1755 |
</div>
|
1756 |
<?php
|
1757 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1758 |
}
|
modules/logos/widgets/logo-grid.php
CHANGED
@@ -925,18 +925,4 @@ class Logo_Grid extends Powerpack_Widget {
|
|
925 |
</div>
|
926 |
<?php
|
927 |
}
|
928 |
-
|
929 |
-
/**
|
930 |
-
* Render logo grid widget output in the editor.
|
931 |
-
*
|
932 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
933 |
-
*
|
934 |
-
* Remove this after Elementor v3.3.0
|
935 |
-
*
|
936 |
-
* @since 1.0.0
|
937 |
-
* @access protected
|
938 |
-
*/
|
939 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
940 |
-
$this->content_template();
|
941 |
-
}
|
942 |
}
|
925 |
</div>
|
926 |
<?php
|
927 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
}
|
modules/posts/skins/skin-base.php
CHANGED
@@ -2,6 +2,7 @@
|
|
2 |
namespace PowerpackElementsLite\Modules\Posts\Skins;
|
3 |
|
4 |
use PowerpackElementsLite\Base\Powerpack_Widget;
|
|
|
5 |
use PowerpackElementsLite\Classes\PP_Config;
|
6 |
use PowerpackElementsLite\Modules\Posts\Module;
|
7 |
use PowerpackElementsLite\Classes\PP_Posts_Helper;
|
@@ -297,6 +298,19 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
297 |
)
|
298 |
);
|
299 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
$this->add_control(
|
301 |
'direction',
|
302 |
array(
|
@@ -568,6 +582,18 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
568 |
)
|
569 |
);
|
570 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
$this->add_control(
|
572 |
'thumbnail_custom_height',
|
573 |
array(
|
@@ -715,6 +741,18 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
715 |
)
|
716 |
);
|
717 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
718 |
$this->add_control(
|
719 |
'title_html_tag',
|
720 |
array(
|
@@ -3771,7 +3809,6 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3771 |
* @access public
|
3772 |
*/
|
3773 |
public function get_masonry_classes() {
|
3774 |
-
|
3775 |
$settings = $this->parent->get_settings_for_display();
|
3776 |
|
3777 |
$post_type = $settings['post_type'];
|
@@ -3805,6 +3842,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3805 |
protected function render_terms() {
|
3806 |
$settings = $this->parent->get_settings_for_display();
|
3807 |
$post_terms = $this->get_instance_value( 'post_terms' );
|
|
|
3808 |
|
3809 |
if ( 'yes' !== $post_terms ) {
|
3810 |
return;
|
@@ -3812,7 +3850,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3812 |
|
3813 |
$post_type = $settings['post_type'];
|
3814 |
|
3815 |
-
if ( 'related' === $settings['post_type'] ) {
|
3816 |
$post_type = get_post_type();
|
3817 |
}
|
3818 |
|
@@ -3835,7 +3873,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3835 |
|
3836 |
$max_terms = $this->get_instance_value( 'max_terms' );
|
3837 |
|
3838 |
-
if (
|
3839 |
$terms = array_slice( $terms, 0, $max_terms );
|
3840 |
}
|
3841 |
|
@@ -3854,9 +3892,10 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3854 |
<span class="pp-post-terms">
|
3855 |
<?php
|
3856 |
foreach ( $terms as $term ) {
|
3857 |
-
printf( $format, $term->name, get_term_link( (int) $term->term_id ) );
|
3858 |
}
|
3859 |
-
|
|
|
3860 |
?>
|
3861 |
</span>
|
3862 |
</div>
|
@@ -3872,6 +3911,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3872 |
* @access protected
|
3873 |
*/
|
3874 |
protected function render_meta_item( $item_type = '' ) {
|
|
|
3875 |
$settings = $this->parent->get_settings_for_display();
|
3876 |
|
3877 |
if ( '' === $item_type ) {
|
@@ -3880,31 +3920,38 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3880 |
|
3881 |
$show_item = $this->get_instance_value( 'show_' . $item_type );
|
3882 |
$item_link = $this->get_instance_value( $item_type . '_link' );
|
3883 |
-
$item_icon = $this->get_instance_value( $item_type . '_icon' );
|
3884 |
$item_prefix = $this->get_instance_value( $item_type . '_prefix' );
|
3885 |
|
3886 |
if ( 'yes' !== $show_item ) {
|
3887 |
return;
|
3888 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
3889 |
?>
|
3890 |
<?php do_action( 'ppe_before_single_post_' . $item_type, get_the_ID(), $settings ); ?>
|
3891 |
<span class="pp-post-<?php echo esc_attr( $item_type ); ?>">
|
3892 |
<?php
|
3893 |
-
if (
|
3894 |
-
|
3895 |
-
|
3896 |
-
|
|
|
3897 |
<?php
|
|
|
3898 |
}
|
3899 |
|
3900 |
-
if (
|
3901 |
?>
|
3902 |
-
|
3903 |
-
|
3904 |
-
|
3905 |
-
|
3906 |
-
|
3907 |
-
|
3908 |
}
|
3909 |
?>
|
3910 |
<span class="pp-meta-text">
|
@@ -3912,12 +3959,16 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3912 |
if ( 'author' === $item_type ) {
|
3913 |
echo wp_kses_post( $this->get_post_author( $item_link ) );
|
3914 |
} elseif ( 'date' === $item_type ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
3915 |
if ( 'yes' === $item_link ) {
|
3916 |
-
|
3917 |
-
<a href="<?php echo esc_url( get_permalink() ); ?>"> <?php echo esc_attr( $this->get_post_date() ); ?></a>
|
3918 |
-
<?php
|
3919 |
} else {
|
3920 |
-
echo wp_kses_post( $
|
3921 |
}
|
3922 |
} elseif ( 'comments' === $item_type ) {
|
3923 |
echo wp_kses_post( $this->get_post_comments() );
|
@@ -3936,7 +3987,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3936 |
* @access protected
|
3937 |
*/
|
3938 |
protected function get_post_author( $author_link = '' ) {
|
3939 |
-
if (
|
3940 |
return get_the_author_posts_link();
|
3941 |
} else {
|
3942 |
return get_the_author();
|
@@ -3969,27 +4020,30 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
3969 |
* @access protected
|
3970 |
*/
|
3971 |
protected function get_post_date( $date_link = '' ) {
|
3972 |
-
$
|
3973 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
3974 |
|
3975 |
-
if (
|
3976 |
$date = sprintf( _x( '%s ago', '%s = human-readable time difference', 'powerpack' ), human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) );
|
3977 |
-
} elseif (
|
3978 |
-
$date = get_the_modified_date(
|
3979 |
-
} elseif (
|
3980 |
-
$date_custom_format = $this->get_instance_value( 'date_custom_format' );
|
3981 |
-
$date = ( $date_custom_format ) ? get_the_date( $date_custom_format ) : get_the_date();
|
3982 |
-
} elseif ( $date_format == 'key' ) {
|
3983 |
$date_meta_key = $this->get_instance_value( 'date_meta_key' );
|
3984 |
if ( $date_meta_key ) {
|
3985 |
$date = get_post_meta( get_the_ID(), $date_meta_key, 'true' );
|
3986 |
}
|
3987 |
} else {
|
3988 |
-
$date = get_the_date();
|
3989 |
}
|
3990 |
|
3991 |
-
if ( $date
|
3992 |
-
$date = get_the_date();
|
3993 |
}
|
3994 |
|
3995 |
return apply_filters( 'ppe_posts_date', $date, get_the_ID() );
|
@@ -4003,13 +4057,12 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4003 |
* @access protected
|
4004 |
*/
|
4005 |
protected function get_post_thumbnail() {
|
4006 |
-
|
4007 |
$settings = $this->parent->get_settings_for_display();
|
4008 |
$image = $this->get_instance_value( 'show_thumbnail' );
|
4009 |
$fallback_image = $this->get_instance_value( 'fallback_image' );
|
4010 |
$fallback_image_custom = $this->get_instance_value( 'fallback_image_custom' );
|
4011 |
|
4012 |
-
if (
|
4013 |
return;
|
4014 |
}
|
4015 |
|
@@ -4023,12 +4076,12 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4023 |
);
|
4024 |
$thumbnail_html = Group_Control_Image_Size::get_attachment_image_html( $settings, $setting_key );
|
4025 |
|
4026 |
-
} elseif (
|
4027 |
|
4028 |
$thumbnail_url = Utils::get_placeholder_image_src();
|
4029 |
$thumbnail_html = '<img src="' . $thumbnail_url . '"/>';
|
4030 |
|
4031 |
-
} elseif (
|
4032 |
|
4033 |
$custom_image_id = $fallback_image_custom['id'];
|
4034 |
$setting_key = $this->get_control_id( 'thumbnail' );
|
@@ -4057,11 +4110,13 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4057 |
$settings = $this->parent->get_settings_for_display();
|
4058 |
|
4059 |
$show_post_title = $this->get_instance_value( 'post_title' );
|
4060 |
-
$title_tag = $this->get_instance_value( 'title_html_tag' );
|
4061 |
$title_link = $this->get_instance_value( 'post_title_link' );
|
|
|
|
|
4062 |
$post_title_separator = $this->get_instance_value( 'post_title_separator' );
|
4063 |
|
4064 |
-
if (
|
4065 |
return;
|
4066 |
}
|
4067 |
|
@@ -4080,17 +4135,22 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4080 |
?>
|
4081 |
<?php do_action( 'ppe_before_single_post_title', get_the_ID(), $settings ); ?>
|
4082 |
<<?php echo esc_html( $title_tag ); ?> class="pp-post-title">
|
4083 |
-
<?php
|
4084 |
-
|
4085 |
-
|
4086 |
-
|
4087 |
-
|
4088 |
-
|
4089 |
-
|
|
|
|
|
|
|
|
|
|
|
4090 |
?>
|
4091 |
</<?php echo esc_html( $title_tag ); ?>>
|
4092 |
<?php
|
4093 |
-
if (
|
4094 |
?>
|
4095 |
<div class="pp-post-separator-wrap">
|
4096 |
<div class="pp-post-separator"></div>
|
@@ -4112,7 +4172,9 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4112 |
protected function render_post_thumbnail() {
|
4113 |
$settings = $this->parent->get_settings_for_display();
|
4114 |
|
4115 |
-
$image_link
|
|
|
|
|
4116 |
|
4117 |
$thumbnail_html = $this->get_post_thumbnail();
|
4118 |
|
@@ -4120,9 +4182,14 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4120 |
return;
|
4121 |
}
|
4122 |
|
4123 |
-
if (
|
|
|
4124 |
|
4125 |
-
|
|
|
|
|
|
|
|
|
4126 |
|
4127 |
}
|
4128 |
do_action( 'ppe_before_single_post_thumbnail', get_the_ID(), $settings );
|
@@ -4176,22 +4243,23 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4176 |
$content_type = $this->get_instance_value( 'content_type' );
|
4177 |
$content_length = $this->get_instance_value( 'content_length' );
|
4178 |
|
4179 |
-
if (
|
4180 |
return;
|
4181 |
}
|
4182 |
|
4183 |
-
if (
|
4184 |
return;
|
4185 |
}
|
4186 |
?>
|
4187 |
<?php do_action( 'ppe_before_single_post_excerpt', get_the_ID(), $settings ); ?>
|
4188 |
<div class="pp-post-excerpt">
|
4189 |
<?php
|
4190 |
-
if (
|
4191 |
the_content();
|
4192 |
-
} elseif (
|
4193 |
$more = '...';
|
4194 |
-
|
|
|
4195 |
} else {
|
4196 |
add_filter( 'excerpt_length', array( $this, 'pp_excerpt_length_filter' ), 20 );
|
4197 |
add_filter( 'excerpt_more', array( $this, 'pp_excerpt_more_filter' ), 20 );
|
@@ -4224,7 +4292,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4224 |
$button_icon = $this->get_instance_value( 'button_icon' );
|
4225 |
$select_button_icon = $this->get_instance_value( 'select_button_icon' );
|
4226 |
$button_icon_position = $this->get_instance_value( 'button_icon_position' );
|
4227 |
-
$button_icon_align
|
4228 |
|
4229 |
$migrated = isset( $settings['__fa4_migrated'][ $skin . '_select_button_icon' ] );
|
4230 |
$is_new = empty( $settings[ $skin . '_button_icon' ] ) && Icons_Manager::is_migration_allowed();
|
@@ -4303,8 +4371,8 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4303 |
$this->render_button_icon();
|
4304 |
} ?>
|
4305 |
<?php if ( $button_text ) { ?>
|
4306 |
-
<span class="pp-button-text
|
4307 |
-
<?php echo
|
4308 |
</span>
|
4309 |
<?php } ?>
|
4310 |
<?php if ( 'after' === $button_icon_position ) {
|
@@ -4353,6 +4421,25 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4353 |
return ob_get_clean();
|
4354 |
}
|
4355 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4356 |
/**
|
4357 |
* Get Pagination.
|
4358 |
*
|
@@ -4362,12 +4449,13 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4362 |
* @access public
|
4363 |
*/
|
4364 |
public function render_pagination() {
|
|
|
4365 |
|
4366 |
$pagination_type = $this->get_instance_value( 'pagination_type' );
|
4367 |
$page_limit = $this->get_instance_value( 'pagination_page_limit' );
|
4368 |
$pagination_shorten = $this->get_instance_value( 'pagination_numbers_shorten' );
|
4369 |
|
4370 |
-
if ( 'none'
|
4371 |
return;
|
4372 |
}
|
4373 |
|
@@ -4383,8 +4471,8 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4383 |
}
|
4384 |
|
4385 |
$has_numbers = in_array( $pagination_type, array( 'numbers', 'numbers_and_prev_next' ) );
|
4386 |
-
$has_prev_next = (
|
4387 |
-
$is_load_more = (
|
4388 |
|
4389 |
$links = array();
|
4390 |
|
@@ -4420,7 +4508,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4420 |
|
4421 |
if ( $has_numbers || $has_prev_next ) {
|
4422 |
|
4423 |
-
if ( is_singular() && ! is_front_page() ) {
|
4424 |
global $wp_rewrite;
|
4425 |
if ( $wp_rewrite->using_permalinks() ) {
|
4426 |
$paginate_args['base'] = trailingslashit( get_permalink() ) . '%_%';
|
@@ -4436,21 +4524,18 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4436 |
|
4437 |
if ( ! $is_load_more ) {
|
4438 |
$pagination_ajax = $this->get_instance_value( 'pagination_ajax' );
|
|
|
|
|
4439 |
|
4440 |
-
if ( $pagination_ajax
|
4441 |
$pagination_type = 'ajax';
|
4442 |
-
} else {
|
4443 |
-
$pagination_type = 'standard';
|
4444 |
}
|
4445 |
?>
|
4446 |
-
<nav class="pp-posts-pagination pp-posts-pagination-<?php echo esc_attr( $pagination_type ); ?> elementor-pagination" role="navigation" aria-label="<?php
|
4447 |
-
<?php echo
|
4448 |
</nav>
|
4449 |
<?php
|
4450 |
}
|
4451 |
-
|
4452 |
-
if ( $is_load_more ) {
|
4453 |
-
}
|
4454 |
}
|
4455 |
|
4456 |
public function get_posts_outer_wrap_classes() {
|
@@ -4460,6 +4545,10 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4460 |
'pp-posts-container',
|
4461 |
);
|
4462 |
|
|
|
|
|
|
|
|
|
4463 |
return apply_filters( 'ppe_posts_outer_wrap_classes', $classes );
|
4464 |
}
|
4465 |
|
@@ -4471,7 +4560,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4471 |
'pp-posts-skin-' . $this->get_id(),
|
4472 |
);
|
4473 |
|
4474 |
-
if (
|
4475 |
$classes[] = 'pp-posts-carousel';
|
4476 |
$classes[] = 'pp-slick-slider';
|
4477 |
} else {
|
@@ -4487,7 +4576,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4487 |
|
4488 |
$classes = array( 'pp-post-wrap' );
|
4489 |
|
4490 |
-
if (
|
4491 |
$classes[] = 'pp-carousel-item-wrap';
|
4492 |
} else {
|
4493 |
$classes[] = 'pp-grid-item-wrap';
|
@@ -4503,7 +4592,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4503 |
|
4504 |
$classes[] = 'pp-post';
|
4505 |
|
4506 |
-
if (
|
4507 |
$classes[] = 'pp-carousel-item';
|
4508 |
} else {
|
4509 |
$classes[] = 'pp-grid-item';
|
@@ -4544,7 +4633,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4544 |
$settings = $this->parent->get_settings_for_display();
|
4545 |
$post_meta = $this->get_instance_value( 'post_meta' );
|
4546 |
|
4547 |
-
if (
|
4548 |
?>
|
4549 |
<?php do_action( 'ppe_before_single_post_meta', get_the_ID(), $settings ); ?>
|
4550 |
<div class="pp-post-meta">
|
@@ -4552,17 +4641,17 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4552 |
$meta_items = $this->get_ordered_items( Module::get_meta_items() );
|
4553 |
|
4554 |
foreach ( $meta_items as $meta_item => $index ) {
|
4555 |
-
if (
|
4556 |
// Post Author
|
4557 |
$this->render_meta_item( 'author' );
|
4558 |
}
|
4559 |
|
4560 |
-
if (
|
4561 |
// Post Date
|
4562 |
$this->render_meta_item( 'date' );
|
4563 |
}
|
4564 |
|
4565 |
-
if (
|
4566 |
// Post Comments
|
4567 |
$this->render_meta_item( 'comments' );
|
4568 |
}
|
@@ -4590,11 +4679,11 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4590 |
|
4591 |
do_action( 'ppe_before_single_post_wrap', get_the_ID(), $settings );
|
4592 |
?>
|
4593 |
-
<div
|
4594 |
<?php do_action( 'ppe_before_single_post', get_the_ID(), $settings ); ?>
|
4595 |
<div class="<?php echo esc_attr( $this->get_item_classes() ); ?>">
|
4596 |
<?php
|
4597 |
-
if (
|
4598 |
$this->render_post_thumbnail();
|
4599 |
}
|
4600 |
?>
|
@@ -4606,35 +4695,35 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4606 |
$content_parts = $this->get_ordered_items( Module::get_post_parts() );
|
4607 |
|
4608 |
foreach ( $content_parts as $part => $index ) {
|
4609 |
-
if (
|
4610 |
-
if (
|
4611 |
$this->render_post_thumbnail();
|
4612 |
}
|
4613 |
}
|
4614 |
|
4615 |
-
if (
|
4616 |
$this->render_terms();
|
4617 |
}
|
4618 |
|
4619 |
-
if (
|
4620 |
$this->render_post_title();
|
4621 |
}
|
4622 |
|
4623 |
-
if (
|
4624 |
$this->render_post_meta();
|
4625 |
}
|
4626 |
|
4627 |
-
if (
|
4628 |
$this->render_excerpt();
|
4629 |
}
|
4630 |
|
4631 |
-
if (
|
4632 |
$this->render_button();
|
4633 |
}
|
4634 |
}
|
4635 |
?>
|
4636 |
</div>
|
4637 |
-
|
4638 |
<?php do_action( 'ppe_after_single_post_content', get_the_ID(), $settings ); ?>
|
4639 |
</div>
|
4640 |
<?php do_action( 'ppe_after_single_post', get_the_ID(), $settings ); ?>
|
@@ -4656,10 +4745,10 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4656 |
?>
|
4657 |
<div class="pp-posts-empty">
|
4658 |
<?php if ( $settings['nothing_found_message'] ) { ?>
|
4659 |
-
<p><?php echo
|
4660 |
<?php } ?>
|
4661 |
|
4662 |
-
<?php if ( $settings['show_search_form']
|
4663 |
<?php get_search_form(); ?>
|
4664 |
<?php } ?>
|
4665 |
</div>
|
@@ -4672,10 +4761,12 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4672 |
* @access public
|
4673 |
*/
|
4674 |
public function slider_settings() {
|
|
|
4675 |
$autoplay = $this->get_instance_value( 'autoplay' );
|
4676 |
$autoplay_speed = $this->get_instance_value( 'autoplay_speed' );
|
4677 |
$arrows = $this->get_instance_value( 'arrows' );
|
4678 |
$arrow = $this->get_instance_value( 'arrow' );
|
|
|
4679 |
$dots = $this->get_instance_value( 'dots' );
|
4680 |
$animation_speed = $this->get_instance_value( 'animation_speed' );
|
4681 |
$infinite_loop = $this->get_instance_value( 'infinite_loop' );
|
@@ -4693,21 +4784,38 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4693 |
$slider_options = array(
|
4694 |
'slidesToShow' => $slides_to_show,
|
4695 |
'slidesToScroll' => $slides_to_scroll,
|
4696 |
-
'autoplay' => (
|
4697 |
-
'autoplaySpeed' => ( $autoplay_speed
|
4698 |
-
'arrows' => (
|
4699 |
-
'dots' => (
|
4700 |
-
'speed' => ( $animation_speed
|
4701 |
-
'infinite' => (
|
4702 |
-
'pauseOnHover' => (
|
4703 |
-
'adaptiveHeight' => (
|
4704 |
);
|
4705 |
|
4706 |
-
if (
|
4707 |
$slider_options['rtl'] = true;
|
4708 |
}
|
4709 |
|
4710 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4711 |
if ( $arrow ) {
|
4712 |
$pa_next_arrow = $arrow;
|
4713 |
$pa_prev_arrow = str_replace( 'right', 'left', $arrow );
|
@@ -4720,12 +4828,21 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4720 |
$slider_options['nextArrow'] = '<div class="pp-slider-arrow pp-arrow pp-arrow-next"><i class="' . $pa_next_arrow . '"></i></div>';
|
4721 |
}
|
4722 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4723 |
$slider_options['responsive'] = array(
|
4724 |
array(
|
4725 |
'breakpoint' => 1024,
|
4726 |
'settings' => array(
|
4727 |
'slidesToShow' => $slides_to_show_tablet,
|
4728 |
'slidesToScroll' => $slides_to_scroll_tablet,
|
|
|
4729 |
),
|
4730 |
),
|
4731 |
array(
|
@@ -4733,6 +4850,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4733 |
'settings' => array(
|
4734 |
'slidesToShow' => $slides_to_show_mobile,
|
4735 |
'slidesToScroll' => $slides_to_scroll_mobile,
|
|
|
4736 |
),
|
4737 |
),
|
4738 |
);
|
@@ -4765,7 +4883,7 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4765 |
$posts_outer_wrap = $this->get_posts_outer_wrap_classes();
|
4766 |
$posts_wrap = $this->get_posts_wrap_classes();
|
4767 |
$page_id = '';
|
4768 |
-
if ( null
|
4769 |
$page_id = \Elementor\Plugin::$instance->documents->get_current()->get_main_id();
|
4770 |
}
|
4771 |
|
@@ -4773,11 +4891,11 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4773 |
|
4774 |
$this->parent->add_render_attribute( 'posts-wrap', 'class', $posts_wrap );
|
4775 |
|
4776 |
-
if (
|
4777 |
-
if (
|
4778 |
$this->parent->add_render_attribute( 'posts-wrap', 'data-equal-height', 'yes' );
|
4779 |
}
|
4780 |
-
if (
|
4781 |
$this->parent->add_render_attribute( 'posts-wrap', 'dir', 'rtl' );
|
4782 |
}
|
4783 |
}
|
@@ -4794,55 +4912,51 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4794 |
|
4795 |
$this->parent->add_render_attribute( 'post-categories', 'class', 'pp-post-categories' );
|
4796 |
|
4797 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
4798 |
$this->slider_settings();
|
4799 |
}
|
4800 |
-
?>
|
4801 |
|
4802 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4803 |
|
|
|
|
|
4804 |
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'posts-container' ) ); ?>>
|
4805 |
<?php
|
4806 |
-
|
4807 |
|
4808 |
-
|
4809 |
-
|
4810 |
-
$enable_active_filter = $this->get_instance_value( 'enable_active_filter' );
|
4811 |
-
if ( $enable_active_filter == 'yes' ) {
|
4812 |
-
$filter_active = $this->get_instance_value( 'filter_active' );
|
4813 |
-
$filters = $this->get_filter_values();
|
4814 |
-
$taxonomy = $filters[ $filter_active ]->taxonomy;
|
4815 |
-
$filter = $filters[ $filter_active ]->slug;
|
4816 |
-
} else {
|
4817 |
-
$filter = '';
|
4818 |
-
$taxonomy = '';
|
4819 |
-
}
|
4820 |
-
$this->parent->query_posts( $filter, $taxonomy );
|
4821 |
-
$query = $this->parent->get_query();
|
4822 |
-
|
4823 |
-
if ( ! $query->found_posts ) {
|
4824 |
-
|
4825 |
-
$this->render_search();
|
4826 |
-
|
4827 |
-
return;
|
4828 |
-
}
|
4829 |
|
4830 |
-
|
4831 |
?>
|
4832 |
-
|
4833 |
-
<?php if ( 'carousel'
|
4834 |
-
<?php if ( ( 'numbers'
|
4835 |
<div class="pp-posts-pagination-wrap pp-posts-pagination-top">
|
4836 |
<?php
|
4837 |
$this->render_pagination();
|
4838 |
?>
|
4839 |
</div>
|
|
|
4840 |
<?php } ?>
|
4841 |
-
|
4842 |
-
|
4843 |
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'posts-wrap' ) ); ?>>
|
4844 |
<?php
|
4845 |
-
|
4846 |
|
4847 |
if ( $query->have_posts() ) :
|
4848 |
while ( $query->have_posts() ) :
|
@@ -4853,42 +4967,41 @@ abstract class Skin_Base extends Elementor_Skin_Base {
|
|
4853 |
$i++;
|
4854 |
|
4855 |
endwhile;
|
4856 |
-
endif;
|
4857 |
wp_reset_postdata();
|
4858 |
?>
|
4859 |
</div>
|
4860 |
-
|
4861 |
<?php do_action( 'ppe_after_posts_wrap', $settings ); ?>
|
4862 |
-
|
4863 |
-
<?php if ( 'load_more'
|
4864 |
<div class="pp-posts-loader"></div>
|
4865 |
<?php } ?>
|
4866 |
-
|
4867 |
<?php
|
4868 |
-
if ( 'load_more'
|
4869 |
$pagination_bottom = true;
|
4870 |
-
} elseif ( ( 'numbers'
|
4871 |
$pagination_bottom = true;
|
4872 |
} else {
|
4873 |
$pagination_bottom = false;
|
4874 |
}
|
4875 |
?>
|
4876 |
-
|
4877 |
-
<?php if ( 'carousel'
|
4878 |
<?php if ( $pagination_bottom ) { ?>
|
4879 |
<div class="pp-posts-pagination-wrap pp-posts-pagination-bottom">
|
4880 |
<?php
|
4881 |
$this->render_pagination();
|
4882 |
?>
|
4883 |
</div>
|
4884 |
-
|
4885 |
<?php } ?>
|
4886 |
</div>
|
4887 |
|
4888 |
<?php do_action( 'ppe_after_posts_outer_wrap', $settings ); ?>
|
4889 |
|
4890 |
<?php
|
4891 |
-
|
4892 |
if ( \Elementor\Plugin::instance()->editor->is_edit_mode() ) {
|
4893 |
|
4894 |
if ( 'masonry' === $layout ) {
|
@@ -4897,27 +5010,6 @@ endif;
|
|
4897 |
}
|
4898 |
}
|
4899 |
|
4900 |
-
public function get_active_filter_taxonomies() {
|
4901 |
-
// $settings = $this->parent->get_settings();
|
4902 |
-
// $post_type = $settings['post_type'];
|
4903 |
-
$taxonomy = PP_Posts_Helper::get_post_taxonomies( 'post' );
|
4904 |
-
|
4905 |
-
$options[-1] = __( 'Select', 'powerpack' );
|
4906 |
-
|
4907 |
-
if ( ! empty( $taxonomy ) ) {
|
4908 |
-
|
4909 |
-
// Get all taxonomy values under the taxonomy.
|
4910 |
-
foreach ( $taxonomy as $index => $tax ) {
|
4911 |
-
|
4912 |
-
// $terms = get_terms( $index );
|
4913 |
-
|
4914 |
-
$options[ $index ] = $tax->label;
|
4915 |
-
}
|
4916 |
-
}
|
4917 |
-
|
4918 |
-
return $options;
|
4919 |
-
}
|
4920 |
-
|
4921 |
/**
|
4922 |
* Get masonry script.
|
4923 |
*
|
@@ -4927,12 +5019,10 @@ endif;
|
|
4927 |
* @access public
|
4928 |
*/
|
4929 |
public function render_editor_script() {
|
4930 |
-
|
4931 |
$settings = $this->parent->get_settings_for_display();
|
|
|
4932 |
|
4933 |
-
|
4934 |
-
|
4935 |
-
if ( 'masonry' != $layout ) {
|
4936 |
return;
|
4937 |
}
|
4938 |
|
2 |
namespace PowerpackElementsLite\Modules\Posts\Skins;
|
3 |
|
4 |
use PowerpackElementsLite\Base\Powerpack_Widget;
|
5 |
+
use PowerpackElementsLite\Classes\PP_Helper;
|
6 |
use PowerpackElementsLite\Classes\PP_Config;
|
7 |
use PowerpackElementsLite\Modules\Posts\Module;
|
8 |
use PowerpackElementsLite\Classes\PP_Posts_Helper;
|
298 |
)
|
299 |
);
|
300 |
|
301 |
+
$this->add_control(
|
302 |
+
'center_mode',
|
303 |
+
[
|
304 |
+
'label' => __( 'Center Mode', 'powerpack' ),
|
305 |
+
'type' => Controls_Manager::SWITCHER,
|
306 |
+
'default' => '',
|
307 |
+
'label_on' => __( 'Yes', 'powerpack' ),
|
308 |
+
'label_off' => __( 'No', 'powerpack' ),
|
309 |
+
'return_value' => 'yes',
|
310 |
+
'frontend_available' => true,
|
311 |
+
]
|
312 |
+
);
|
313 |
+
|
314 |
$this->add_control(
|
315 |
'direction',
|
316 |
array(
|
582 |
)
|
583 |
);
|
584 |
|
585 |
+
$this->add_control(
|
586 |
+
'thumbnail_link_target',
|
587 |
+
array(
|
588 |
+
'label' => __( 'Open in a New Tab', 'powerpack' ),
|
589 |
+
'type' => Controls_Manager::SWITCHER,
|
590 |
+
'condition' => array(
|
591 |
+
$this->get_control_id( 'show_thumbnail' ) => 'yes',
|
592 |
+
$this->get_control_id( 'thumbnail_link' ) => 'yes',
|
593 |
+
),
|
594 |
+
)
|
595 |
+
);
|
596 |
+
|
597 |
$this->add_control(
|
598 |
'thumbnail_custom_height',
|
599 |
array(
|
741 |
)
|
742 |
);
|
743 |
|
744 |
+
$this->add_control(
|
745 |
+
'post_title_link_target',
|
746 |
+
array(
|
747 |
+
'label' => __( 'Open in a New Tab', 'powerpack' ),
|
748 |
+
'type' => Controls_Manager::SWITCHER,
|
749 |
+
'condition' => array(
|
750 |
+
$this->get_control_id( 'post_title' ) => 'yes',
|
751 |
+
$this->get_control_id( 'post_title_link' ) => 'yes',
|
752 |
+
),
|
753 |
+
)
|
754 |
+
);
|
755 |
+
|
756 |
$this->add_control(
|
757 |
'title_html_tag',
|
758 |
array(
|
3809 |
* @access public
|
3810 |
*/
|
3811 |
public function get_masonry_classes() {
|
|
|
3812 |
$settings = $this->parent->get_settings_for_display();
|
3813 |
|
3814 |
$post_type = $settings['post_type'];
|
3842 |
protected function render_terms() {
|
3843 |
$settings = $this->parent->get_settings_for_display();
|
3844 |
$post_terms = $this->get_instance_value( 'post_terms' );
|
3845 |
+
$query_type = $settings['query_type'];
|
3846 |
|
3847 |
if ( 'yes' !== $post_terms ) {
|
3848 |
return;
|
3850 |
|
3851 |
$post_type = $settings['post_type'];
|
3852 |
|
3853 |
+
if ( 'related' === $settings['post_type'] || 'main' === $query_type ) {
|
3854 |
$post_type = get_post_type();
|
3855 |
}
|
3856 |
|
3873 |
|
3874 |
$max_terms = $this->get_instance_value( 'max_terms' );
|
3875 |
|
3876 |
+
if ( $max_terms ) {
|
3877 |
$terms = array_slice( $terms, 0, $max_terms );
|
3878 |
}
|
3879 |
|
3892 |
<span class="pp-post-terms">
|
3893 |
<?php
|
3894 |
foreach ( $terms as $term ) {
|
3895 |
+
printf( wp_kses_post( $format ), esc_attr( $term->name ), esc_url( get_term_link( (int) $term->term_id ) ) );
|
3896 |
}
|
3897 |
+
|
3898 |
+
do_action( 'ppe_single_post_terms', get_the_ID(), $settings );
|
3899 |
?>
|
3900 |
</span>
|
3901 |
</div>
|
3911 |
* @access protected
|
3912 |
*/
|
3913 |
protected function render_meta_item( $item_type = '' ) {
|
3914 |
+
$skin = $this->get_id();
|
3915 |
$settings = $this->parent->get_settings_for_display();
|
3916 |
|
3917 |
if ( '' === $item_type ) {
|
3920 |
|
3921 |
$show_item = $this->get_instance_value( 'show_' . $item_type );
|
3922 |
$item_link = $this->get_instance_value( $item_type . '_link' );
|
|
|
3923 |
$item_prefix = $this->get_instance_value( $item_type . '_prefix' );
|
3924 |
|
3925 |
if ( 'yes' !== $show_item ) {
|
3926 |
return;
|
3927 |
}
|
3928 |
+
|
3929 |
+
$item_icon = $this->get_instance_value( $item_type . '_icon' );
|
3930 |
+
$select_item_icon = $this->get_instance_value( 'select_' . $item_type . '_icon' );
|
3931 |
+
|
3932 |
+
$migrated = isset( $settings['__fa4_migrated'][ $skin . '_select_' . $item_type . '_icon' ] );
|
3933 |
+
$is_new = empty( $settings[ $skin . '_' . $item_type . '_icon' ] ) && Icons_Manager::is_migration_allowed();
|
3934 |
?>
|
3935 |
<?php do_action( 'ppe_before_single_post_' . $item_type, get_the_ID(), $settings ); ?>
|
3936 |
<span class="pp-post-<?php echo esc_attr( $item_type ); ?>">
|
3937 |
<?php
|
3938 |
+
if ( $item_icon || $select_item_icon ) {
|
3939 |
+
if ( $is_new || $migrated ) {
|
3940 |
+
Icons_Manager::render_icon( $select_item_icon, array( 'class' => 'pp-meta-icon', 'aria-hidden' => 'true' ) );
|
3941 |
+
} else { ?>
|
3942 |
+
<span class="pp-meta-icon <?php echo esc_attr( $item_icon ); ?>" aria-hidden="true"></span>
|
3943 |
<?php
|
3944 |
+
}
|
3945 |
}
|
3946 |
|
3947 |
+
if ( $item_prefix ) {
|
3948 |
?>
|
3949 |
+
<span class="pp-meta-prefix">
|
3950 |
+
<?php
|
3951 |
+
echo esc_attr( $item_prefix );
|
3952 |
+
?>
|
3953 |
+
</span>
|
3954 |
+
<?php
|
3955 |
}
|
3956 |
?>
|
3957 |
<span class="pp-meta-text">
|
3959 |
if ( 'author' === $item_type ) {
|
3960 |
echo wp_kses_post( $this->get_post_author( $item_link ) );
|
3961 |
} elseif ( 'date' === $item_type ) {
|
3962 |
+
if ( PP_Helper::is_tribe_events_post( get_the_ID() ) && function_exists( 'tribe_get_start_date' ) ) {
|
3963 |
+
$post_date = tribe_get_start_time( get_the_ID(), 'F d, Y' );
|
3964 |
+
} else {
|
3965 |
+
$post_date = $this->get_post_date();
|
3966 |
+
}
|
3967 |
+
|
3968 |
if ( 'yes' === $item_link ) {
|
3969 |
+
echo '<a href="' . esc_url( get_permalink() ) . '">' . wp_kses_post( $post_date ) . '</a>';
|
|
|
|
|
3970 |
} else {
|
3971 |
+
echo wp_kses_post( $post_date );
|
3972 |
}
|
3973 |
} elseif ( 'comments' === $item_type ) {
|
3974 |
echo wp_kses_post( $this->get_post_comments() );
|
3987 |
* @access protected
|
3988 |
*/
|
3989 |
protected function get_post_author( $author_link = '' ) {
|
3990 |
+
if ( 'yes' === $author_link ) {
|
3991 |
return get_the_author_posts_link();
|
3992 |
} else {
|
3993 |
return get_the_author();
|
4020 |
* @access protected
|
4021 |
*/
|
4022 |
protected function get_post_date( $date_link = '' ) {
|
4023 |
+
$date_type = $this->get_instance_value( 'date_format' );
|
4024 |
+
$date_format = $this->get_instance_value( 'date_format_select' );
|
4025 |
+
$date_custom_format = $this->get_instance_value( 'date_custom_format' );
|
4026 |
+
$date = '';
|
4027 |
+
|
4028 |
+
if ( 'custom' === $date_format && $date_custom_format ) {
|
4029 |
+
$date_format = $date_custom_format;
|
4030 |
+
}
|
4031 |
|
4032 |
+
if ( 'ago' === $date_type ) {
|
4033 |
$date = sprintf( _x( '%s ago', '%s = human-readable time difference', 'powerpack' ), human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) );
|
4034 |
+
} elseif ( 'modified' === $date_type ) {
|
4035 |
+
$date = get_the_modified_date( $date_format, get_the_ID() );
|
4036 |
+
} elseif ( 'key' === $date_type ) {
|
|
|
|
|
|
|
4037 |
$date_meta_key = $this->get_instance_value( 'date_meta_key' );
|
4038 |
if ( $date_meta_key ) {
|
4039 |
$date = get_post_meta( get_the_ID(), $date_meta_key, 'true' );
|
4040 |
}
|
4041 |
} else {
|
4042 |
+
$date = get_the_date( $date_format );
|
4043 |
}
|
4044 |
|
4045 |
+
if ( '' === $date ) {
|
4046 |
+
$date = get_the_date( $date_format );
|
4047 |
}
|
4048 |
|
4049 |
return apply_filters( 'ppe_posts_date', $date, get_the_ID() );
|
4057 |
* @access protected
|
4058 |
*/
|
4059 |
protected function get_post_thumbnail() {
|
|
|
4060 |
$settings = $this->parent->get_settings_for_display();
|
4061 |
$image = $this->get_instance_value( 'show_thumbnail' );
|
4062 |
$fallback_image = $this->get_instance_value( 'fallback_image' );
|
4063 |
$fallback_image_custom = $this->get_instance_value( 'fallback_image_custom' );
|
4064 |
|
4065 |
+
if ( 'yes' !== $image ) {
|
4066 |
return;
|
4067 |
}
|
4068 |
|
4076 |
);
|
4077 |
$thumbnail_html = Group_Control_Image_Size::get_attachment_image_html( $settings, $setting_key );
|
4078 |
|
4079 |
+
} elseif ( 'default' === $fallback_image ) {
|
4080 |
|
4081 |
$thumbnail_url = Utils::get_placeholder_image_src();
|
4082 |
$thumbnail_html = '<img src="' . $thumbnail_url . '"/>';
|
4083 |
|
4084 |
+
} elseif ( 'custom' === $fallback_image ) {
|
4085 |
|
4086 |
$custom_image_id = $fallback_image_custom['id'];
|
4087 |
$setting_key = $this->get_control_id( 'thumbnail' );
|
4110 |
$settings = $this->parent->get_settings_for_display();
|
4111 |
|
4112 |
$show_post_title = $this->get_instance_value( 'post_title' );
|
4113 |
+
$title_tag = PP_Helper::validate_html_tag( $this->get_instance_value( 'title_html_tag' ) );
|
4114 |
$title_link = $this->get_instance_value( 'post_title_link' );
|
4115 |
+
$title_link_key = 'title-link-' . get_the_ID();
|
4116 |
+
$title_link_target = $this->get_instance_value( 'post_title_link_target' );
|
4117 |
$post_title_separator = $this->get_instance_value( 'post_title_separator' );
|
4118 |
|
4119 |
+
if ( 'yes' !== $show_post_title ) {
|
4120 |
return;
|
4121 |
}
|
4122 |
|
4135 |
?>
|
4136 |
<?php do_action( 'ppe_before_single_post_title', get_the_ID(), $settings ); ?>
|
4137 |
<<?php echo esc_html( $title_tag ); ?> class="pp-post-title">
|
4138 |
+
<?php
|
4139 |
+
if ( 'yes' === $title_link ) {
|
4140 |
+
$this->parent->add_render_attribute( $title_link_key, 'href', apply_filters( 'ppe_posts_title_link', get_the_permalink(), get_the_ID() ) );
|
4141 |
+
|
4142 |
+
if ( 'yes' === $title_link_target ) {
|
4143 |
+
$this->parent->add_render_attribute( $title_link_key, 'target', '_blank' );
|
4144 |
+
}
|
4145 |
+
|
4146 |
+
$post_title = '<a ' . $this->parent->get_render_attribute_string( $title_link_key ) . '>' . $post_title . '</a>';
|
4147 |
+
}
|
4148 |
+
|
4149 |
+
echo wp_kses_post( $post_title );
|
4150 |
?>
|
4151 |
</<?php echo esc_html( $title_tag ); ?>>
|
4152 |
<?php
|
4153 |
+
if ( 'yes' === $post_title_separator ) {
|
4154 |
?>
|
4155 |
<div class="pp-post-separator-wrap">
|
4156 |
<div class="pp-post-separator"></div>
|
4172 |
protected function render_post_thumbnail() {
|
4173 |
$settings = $this->parent->get_settings_for_display();
|
4174 |
|
4175 |
+
$image_link = $this->get_instance_value( 'thumbnail_link' );
|
4176 |
+
$image_link_key = 'image-link-' . get_the_ID();
|
4177 |
+
$image_link_target = $this->get_instance_value( 'thumbnail_link_target' );
|
4178 |
|
4179 |
$thumbnail_html = $this->get_post_thumbnail();
|
4180 |
|
4182 |
return;
|
4183 |
}
|
4184 |
|
4185 |
+
if ( 'yes' === $image_link ) {
|
4186 |
+
$this->parent->add_render_attribute( $image_link_key, 'href', apply_filters( 'ppe_posts_image_link', get_the_permalink(), get_the_ID() ) );
|
4187 |
|
4188 |
+
if ( 'yes' === $image_link_target ) {
|
4189 |
+
$this->parent->add_render_attribute( $image_link_key, 'target', '_blank' );
|
4190 |
+
}
|
4191 |
+
|
4192 |
+
$thumbnail_html = '<a ' . $this->parent->get_render_attribute_string( $image_link_key ) . '>' . $thumbnail_html . '</a>';
|
4193 |
|
4194 |
}
|
4195 |
do_action( 'ppe_before_single_post_thumbnail', get_the_ID(), $settings );
|
4243 |
$content_type = $this->get_instance_value( 'content_type' );
|
4244 |
$content_length = $this->get_instance_value( 'content_length' );
|
4245 |
|
4246 |
+
if ( 'yes' !== $show_excerpt ) {
|
4247 |
return;
|
4248 |
}
|
4249 |
|
4250 |
+
if ( 'excerpt' === $content_type && 0 === $excerpt_length ) {
|
4251 |
return;
|
4252 |
}
|
4253 |
?>
|
4254 |
<?php do_action( 'ppe_before_single_post_excerpt', get_the_ID(), $settings ); ?>
|
4255 |
<div class="pp-post-excerpt">
|
4256 |
<?php
|
4257 |
+
if ( 'full' === $content_type ) {
|
4258 |
the_content();
|
4259 |
+
} elseif ( 'content' === $content_type ) {
|
4260 |
$more = '...';
|
4261 |
+
$post_content = wp_trim_words( get_the_content(), $content_length, apply_filters( 'pp_posts_content_limit_more', $more ) );
|
4262 |
+
echo wp_kses_post( $post_content );
|
4263 |
} else {
|
4264 |
add_filter( 'excerpt_length', array( $this, 'pp_excerpt_length_filter' ), 20 );
|
4265 |
add_filter( 'excerpt_more', array( $this, 'pp_excerpt_more_filter' ), 20 );
|
4292 |
$button_icon = $this->get_instance_value( 'button_icon' );
|
4293 |
$select_button_icon = $this->get_instance_value( 'select_button_icon' );
|
4294 |
$button_icon_position = $this->get_instance_value( 'button_icon_position' );
|
4295 |
+
$button_icon_align = ( 'before' === $button_icon_position ) ? 'left' : 'right';
|
4296 |
|
4297 |
$migrated = isset( $settings['__fa4_migrated'][ $skin . '_select_button_icon' ] );
|
4298 |
$is_new = empty( $settings[ $skin . '_button_icon' ] ) && Icons_Manager::is_migration_allowed();
|
4371 |
$this->render_button_icon();
|
4372 |
} ?>
|
4373 |
<?php if ( $button_text ) { ?>
|
4374 |
+
<span class="pp-button-text">
|
4375 |
+
<?php echo wp_kses_post( $button_text ); ?>
|
4376 |
</span>
|
4377 |
<?php } ?>
|
4378 |
<?php if ( 'after' === $button_icon_position ) {
|
4421 |
return ob_get_clean();
|
4422 |
}
|
4423 |
|
4424 |
+
/**
|
4425 |
+
* Render post body output on the frontend.
|
4426 |
+
*
|
4427 |
+
* Written in PHP and used to generate the final HTML.
|
4428 |
+
*
|
4429 |
+
* @access protected
|
4430 |
+
*/
|
4431 |
+
public function render_ajax_not_found( $filter = '', $taxonomy = '', $search = '' ) {
|
4432 |
+
ob_start();
|
4433 |
+
$this->parent->query_posts( $filter, $taxonomy, $search );
|
4434 |
+
|
4435 |
+
$query = $this->parent->get_query();
|
4436 |
+
|
4437 |
+
if ( ! $query->found_posts ) {
|
4438 |
+
$this->render_search();
|
4439 |
+
}
|
4440 |
+
return ob_get_clean();
|
4441 |
+
}
|
4442 |
+
|
4443 |
/**
|
4444 |
* Get Pagination.
|
4445 |
*
|
4449 |
* @access public
|
4450 |
*/
|
4451 |
public function render_pagination() {
|
4452 |
+
$settings = $this->parent->get_settings_for_display();
|
4453 |
|
4454 |
$pagination_type = $this->get_instance_value( 'pagination_type' );
|
4455 |
$page_limit = $this->get_instance_value( 'pagination_page_limit' );
|
4456 |
$pagination_shorten = $this->get_instance_value( 'pagination_numbers_shorten' );
|
4457 |
|
4458 |
+
if ( 'none' === $pagination_type ) {
|
4459 |
return;
|
4460 |
}
|
4461 |
|
4471 |
}
|
4472 |
|
4473 |
$has_numbers = in_array( $pagination_type, array( 'numbers', 'numbers_and_prev_next' ) );
|
4474 |
+
$has_prev_next = ( 'numbers_and_prev_next' === $pagination_type );
|
4475 |
+
$is_load_more = ( 'load_more' === $pagination_type );
|
4476 |
|
4477 |
$links = array();
|
4478 |
|
4508 |
|
4509 |
if ( $has_numbers || $has_prev_next ) {
|
4510 |
|
4511 |
+
if ( is_singular() && ! is_front_page() && ! is_singular( 'page' ) ) {
|
4512 |
global $wp_rewrite;
|
4513 |
if ( $wp_rewrite->using_permalinks() ) {
|
4514 |
$paginate_args['base'] = trailingslashit( get_permalink() ) . '%_%';
|
4524 |
|
4525 |
if ( ! $is_load_more ) {
|
4526 |
$pagination_ajax = $this->get_instance_value( 'pagination_ajax' );
|
4527 |
+
$query_type = $settings['query_type'];
|
4528 |
+
$pagination_type = 'standard';
|
4529 |
|
4530 |
+
if ( 'yes' === $pagination_ajax && 'main' !== $query_type ) {
|
4531 |
$pagination_type = 'ajax';
|
|
|
|
|
4532 |
}
|
4533 |
?>
|
4534 |
+
<nav class="pp-posts-pagination pp-posts-pagination-<?php echo esc_attr( $pagination_type ); ?> elementor-pagination" role="navigation" aria-label="<?php esc_attr_e( 'Pagination', 'powerpack' ); ?>" data-total="<?php echo esc_html( $total_pages_pagination ); ?>">
|
4535 |
+
<?php echo implode( PHP_EOL, $links ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
4536 |
</nav>
|
4537 |
<?php
|
4538 |
}
|
|
|
|
|
|
|
4539 |
}
|
4540 |
|
4541 |
public function get_posts_outer_wrap_classes() {
|
4545 |
'pp-posts-container',
|
4546 |
);
|
4547 |
|
4548 |
+
if ( 'infinite' === $pagination_type ) {
|
4549 |
+
$classes[] = 'pp-posts-infinite-scroll';
|
4550 |
+
}
|
4551 |
+
|
4552 |
return apply_filters( 'ppe_posts_outer_wrap_classes', $classes );
|
4553 |
}
|
4554 |
|
4560 |
'pp-posts-skin-' . $this->get_id(),
|
4561 |
);
|
4562 |
|
4563 |
+
if ( 'carousel' === $layout ) {
|
4564 |
$classes[] = 'pp-posts-carousel';
|
4565 |
$classes[] = 'pp-slick-slider';
|
4566 |
} else {
|
4576 |
|
4577 |
$classes = array( 'pp-post-wrap' );
|
4578 |
|
4579 |
+
if ( 'carousel' === $layout ) {
|
4580 |
$classes[] = 'pp-carousel-item-wrap';
|
4581 |
} else {
|
4582 |
$classes[] = 'pp-grid-item-wrap';
|
4592 |
|
4593 |
$classes[] = 'pp-post';
|
4594 |
|
4595 |
+
if ( 'carousel' === $layout ) {
|
4596 |
$classes[] = 'pp-carousel-item';
|
4597 |
} else {
|
4598 |
$classes[] = 'pp-grid-item';
|
4633 |
$settings = $this->parent->get_settings_for_display();
|
4634 |
$post_meta = $this->get_instance_value( 'post_meta' );
|
4635 |
|
4636 |
+
if ( 'yes' === $post_meta ) {
|
4637 |
?>
|
4638 |
<?php do_action( 'ppe_before_single_post_meta', get_the_ID(), $settings ); ?>
|
4639 |
<div class="pp-post-meta">
|
4641 |
$meta_items = $this->get_ordered_items( Module::get_meta_items() );
|
4642 |
|
4643 |
foreach ( $meta_items as $meta_item => $index ) {
|
4644 |
+
if ( 'author' === $meta_item ) {
|
4645 |
// Post Author
|
4646 |
$this->render_meta_item( 'author' );
|
4647 |
}
|
4648 |
|
4649 |
+
if ( 'date' === $meta_item ) {
|
4650 |
// Post Date
|
4651 |
$this->render_meta_item( 'date' );
|
4652 |
}
|
4653 |
|
4654 |
+
if ( 'comments' === $meta_item ) {
|
4655 |
// Post Comments
|
4656 |
$this->render_meta_item( 'comments' );
|
4657 |
}
|
4679 |
|
4680 |
do_action( 'ppe_before_single_post_wrap', get_the_ID(), $settings );
|
4681 |
?>
|
4682 |
+
<div <?php post_class( $this->get_item_wrap_classes() ); ?>>
|
4683 |
<?php do_action( 'ppe_before_single_post', get_the_ID(), $settings ); ?>
|
4684 |
<div class="<?php echo esc_attr( $this->get_item_classes() ); ?>">
|
4685 |
<?php
|
4686 |
+
if ( 'outside' === $thumbnail_location ) {
|
4687 |
$this->render_post_thumbnail();
|
4688 |
}
|
4689 |
?>
|
4695 |
$content_parts = $this->get_ordered_items( Module::get_post_parts() );
|
4696 |
|
4697 |
foreach ( $content_parts as $part => $index ) {
|
4698 |
+
if ( 'thumbnail' === $part ) {
|
4699 |
+
if ( 'inside' === $thumbnail_location ) {
|
4700 |
$this->render_post_thumbnail();
|
4701 |
}
|
4702 |
}
|
4703 |
|
4704 |
+
if ( 'terms' === $part ) {
|
4705 |
$this->render_terms();
|
4706 |
}
|
4707 |
|
4708 |
+
if ( 'title' === $part ) {
|
4709 |
$this->render_post_title();
|
4710 |
}
|
4711 |
|
4712 |
+
if ( 'meta' === $part ) {
|
4713 |
$this->render_post_meta();
|
4714 |
}
|
4715 |
|
4716 |
+
if ( 'excerpt' === $part ) {
|
4717 |
$this->render_excerpt();
|
4718 |
}
|
4719 |
|
4720 |
+
if ( 'button' === $part ) {
|
4721 |
$this->render_button();
|
4722 |
}
|
4723 |
}
|
4724 |
?>
|
4725 |
</div>
|
4726 |
+
|
4727 |
<?php do_action( 'ppe_after_single_post_content', get_the_ID(), $settings ); ?>
|
4728 |
</div>
|
4729 |
<?php do_action( 'ppe_after_single_post', get_the_ID(), $settings ); ?>
|
4745 |
?>
|
4746 |
<div class="pp-posts-empty">
|
4747 |
<?php if ( $settings['nothing_found_message'] ) { ?>
|
4748 |
+
<p><?php echo wp_kses_post( $settings['nothing_found_message'] ); ?></p>
|
4749 |
<?php } ?>
|
4750 |
|
4751 |
+
<?php if ( 'yes' === $settings['show_search_form'] ) { ?>
|
4752 |
<?php get_search_form(); ?>
|
4753 |
<?php } ?>
|
4754 |
</div>
|
4761 |
* @access public
|
4762 |
*/
|
4763 |
public function slider_settings() {
|
4764 |
+
$skin = $this->get_id();
|
4765 |
$autoplay = $this->get_instance_value( 'autoplay' );
|
4766 |
$autoplay_speed = $this->get_instance_value( 'autoplay_speed' );
|
4767 |
$arrows = $this->get_instance_value( 'arrows' );
|
4768 |
$arrow = $this->get_instance_value( 'arrow' );
|
4769 |
+
$select_arrow = $this->get_instance_value( 'select_arrow' );
|
4770 |
$dots = $this->get_instance_value( 'dots' );
|
4771 |
$animation_speed = $this->get_instance_value( 'animation_speed' );
|
4772 |
$infinite_loop = $this->get_instance_value( 'infinite_loop' );
|
4784 |
$slider_options = array(
|
4785 |
'slidesToShow' => $slides_to_show,
|
4786 |
'slidesToScroll' => $slides_to_scroll,
|
4787 |
+
'autoplay' => ( 'yes' === $autoplay ),
|
4788 |
+
'autoplaySpeed' => ( $autoplay_speed ) ? $autoplay_speed : 3000,
|
4789 |
+
'arrows' => ( 'yes' === $arrows ),
|
4790 |
+
'dots' => ( 'yes' === $dots ),
|
4791 |
+
'speed' => ( $animation_speed ) ? $animation_speed : 600,
|
4792 |
+
'infinite' => ( 'yes' === $infinite_loop ),
|
4793 |
+
'pauseOnHover' => ( 'yes' === $pause_on_hover ),
|
4794 |
+
'adaptiveHeight' => ( 'yes' === $adaptive_height ),
|
4795 |
);
|
4796 |
|
4797 |
+
if ( 'right' === $direction ) {
|
4798 |
$slider_options['rtl'] = true;
|
4799 |
}
|
4800 |
|
4801 |
+
if ( 'yes' === $arrows ) {
|
4802 |
+
if ( ! isset( $settings[ $skin . '_arrow' ] ) && ! Icons_Manager::is_migration_allowed() ) {
|
4803 |
+
// add old default.
|
4804 |
+
$settings[ $skin . '_arrow' ] = 'fa fa-angle-right';
|
4805 |
+
}
|
4806 |
+
|
4807 |
+
$has_icon = ! empty( $settings[ $skin . '_arrow' ] );
|
4808 |
+
|
4809 |
+
if ( ! $has_icon && ! empty( $select_arrow['value'] ) ) {
|
4810 |
+
$has_icon = true;
|
4811 |
+
}
|
4812 |
+
$migrated = isset( $settings['__fa4_migrated'][ $skin . '_select_arrow' ] );
|
4813 |
+
$is_new = ! isset( $settings[ $skin . '_arrow' ] ) && Icons_Manager::is_migration_allowed();
|
4814 |
+
|
4815 |
+
if ( $is_new || $migrated ) {
|
4816 |
+
$arrow = $select_arrow['value'];
|
4817 |
+
}
|
4818 |
+
|
4819 |
if ( $arrow ) {
|
4820 |
$pa_next_arrow = $arrow;
|
4821 |
$pa_prev_arrow = str_replace( 'right', 'left', $arrow );
|
4828 |
$slider_options['nextArrow'] = '<div class="pp-slider-arrow pp-arrow pp-arrow-next"><i class="' . $pa_next_arrow . '"></i></div>';
|
4829 |
}
|
4830 |
|
4831 |
+
if ( 'yes' === $this->get_instance_value( 'center_mode' ) ) {
|
4832 |
+
$center_mode = true;
|
4833 |
+
|
4834 |
+
$slider_options['centerMode'] = $center_mode;
|
4835 |
+
} else {
|
4836 |
+
$center_mode = false;
|
4837 |
+
}
|
4838 |
+
|
4839 |
$slider_options['responsive'] = array(
|
4840 |
array(
|
4841 |
'breakpoint' => 1024,
|
4842 |
'settings' => array(
|
4843 |
'slidesToShow' => $slides_to_show_tablet,
|
4844 |
'slidesToScroll' => $slides_to_scroll_tablet,
|
4845 |
+
'centerMode' => $center_mode,
|
4846 |
),
|
4847 |
),
|
4848 |
array(
|
4850 |
'settings' => array(
|
4851 |
'slidesToShow' => $slides_to_show_mobile,
|
4852 |
'slidesToScroll' => $slides_to_scroll_mobile,
|
4853 |
+
'centerMode' => $center_mode,
|
4854 |
),
|
4855 |
),
|
4856 |
);
|
4883 |
$posts_outer_wrap = $this->get_posts_outer_wrap_classes();
|
4884 |
$posts_wrap = $this->get_posts_wrap_classes();
|
4885 |
$page_id = '';
|
4886 |
+
if ( null !== \Elementor\Plugin::$instance->documents->get_current() ) {
|
4887 |
$page_id = \Elementor\Plugin::$instance->documents->get_current()->get_main_id();
|
4888 |
}
|
4889 |
|
4891 |
|
4892 |
$this->parent->add_render_attribute( 'posts-wrap', 'class', $posts_wrap );
|
4893 |
|
4894 |
+
if ( 'carousel' === $layout ) {
|
4895 |
+
if ( 'yes' === $equal_height ) {
|
4896 |
$this->parent->add_render_attribute( 'posts-wrap', 'data-equal-height', 'yes' );
|
4897 |
}
|
4898 |
+
if ( 'right' === $direction ) {
|
4899 |
$this->parent->add_render_attribute( 'posts-wrap', 'dir', 'rtl' );
|
4900 |
}
|
4901 |
}
|
4912 |
|
4913 |
$this->parent->add_render_attribute( 'post-categories', 'class', 'pp-post-categories' );
|
4914 |
|
4915 |
+
$filter = '';
|
4916 |
+
$taxonomy = '';
|
4917 |
+
|
4918 |
+
$this->parent->query_posts( $filter, $taxonomy );
|
4919 |
+
$query = $this->parent->get_query();
|
4920 |
+
|
4921 |
+
if ( 'carousel' === $layout ) {
|
4922 |
$this->slider_settings();
|
4923 |
}
|
|
|
4924 |
|
4925 |
+
if ( ! $query->found_posts ) {
|
4926 |
+
?>
|
4927 |
+
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'posts-container' ) ); ?>>
|
4928 |
+
<?php
|
4929 |
+
$this->render_search();
|
4930 |
+
?>
|
4931 |
+
</div>
|
4932 |
+
<?php
|
4933 |
+
return;
|
4934 |
+
}
|
4935 |
|
4936 |
+
do_action( 'ppe_before_posts_outer_wrap', $settings );
|
4937 |
+
?>
|
4938 |
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'posts-container' ) ); ?>>
|
4939 |
<?php
|
4940 |
+
do_action( 'ppe_before_posts_wrap', $settings );
|
4941 |
|
4942 |
+
$i = 1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4943 |
|
4944 |
+
$total_pages = $query->max_num_pages;
|
4945 |
?>
|
4946 |
+
|
4947 |
+
<?php if ( 'carousel' !== $layout ) { ?>
|
4948 |
+
<?php if ( ( 'numbers' === $pagination_type || 'numbers_and_prev_next' === $pagination_type ) && ( 'top' === $pagination_position || 'top-bottom' === $pagination_position ) ) { ?>
|
4949 |
<div class="pp-posts-pagination-wrap pp-posts-pagination-top">
|
4950 |
<?php
|
4951 |
$this->render_pagination();
|
4952 |
?>
|
4953 |
</div>
|
4954 |
+
<?php } ?>
|
4955 |
<?php } ?>
|
4956 |
+
|
|
|
4957 |
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'posts-wrap' ) ); ?>>
|
4958 |
<?php
|
4959 |
+
$i = 1;
|
4960 |
|
4961 |
if ( $query->have_posts() ) :
|
4962 |
while ( $query->have_posts() ) :
|
4967 |
$i++;
|
4968 |
|
4969 |
endwhile;
|
4970 |
+
endif;
|
4971 |
wp_reset_postdata();
|
4972 |
?>
|
4973 |
</div>
|
4974 |
+
|
4975 |
<?php do_action( 'ppe_after_posts_wrap', $settings ); ?>
|
4976 |
+
|
4977 |
+
<?php if ( 'load_more' === $pagination_type || 'infinite' === $pagination_type ) { ?>
|
4978 |
<div class="pp-posts-loader"></div>
|
4979 |
<?php } ?>
|
4980 |
+
|
4981 |
<?php
|
4982 |
+
if ( 'load_more' === $pagination_type || 'infinite' === $pagination_type ) {
|
4983 |
$pagination_bottom = true;
|
4984 |
+
} elseif ( ( 'numbers' === $pagination_type || 'numbers_and_prev_next' === $pagination_type ) && ( '' === $pagination_position || 'bottom' === $pagination_position || 'top-bottom' === $pagination_position ) ) {
|
4985 |
$pagination_bottom = true;
|
4986 |
} else {
|
4987 |
$pagination_bottom = false;
|
4988 |
}
|
4989 |
?>
|
4990 |
+
|
4991 |
+
<?php if ( 'carousel' !== $layout ) { ?>
|
4992 |
<?php if ( $pagination_bottom ) { ?>
|
4993 |
<div class="pp-posts-pagination-wrap pp-posts-pagination-bottom">
|
4994 |
<?php
|
4995 |
$this->render_pagination();
|
4996 |
?>
|
4997 |
</div>
|
4998 |
+
<?php } ?>
|
4999 |
<?php } ?>
|
5000 |
</div>
|
5001 |
|
5002 |
<?php do_action( 'ppe_after_posts_outer_wrap', $settings ); ?>
|
5003 |
|
5004 |
<?php
|
|
|
5005 |
if ( \Elementor\Plugin::instance()->editor->is_edit_mode() ) {
|
5006 |
|
5007 |
if ( 'masonry' === $layout ) {
|
5010 |
}
|
5011 |
}
|
5012 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5013 |
/**
|
5014 |
* Get masonry script.
|
5015 |
*
|
5019 |
* @access public
|
5020 |
*/
|
5021 |
public function render_editor_script() {
|
|
|
5022 |
$settings = $this->parent->get_settings_for_display();
|
5023 |
+
$layout = $this->get_instance_value( 'layout' );
|
5024 |
|
5025 |
+
if ( 'masonry' !== $layout ) {
|
|
|
|
|
5026 |
return;
|
5027 |
}
|
5028 |
|
modules/posts/widgets/posts-base.php
CHANGED
@@ -611,7 +611,7 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
611 |
);
|
612 |
|
613 |
if ( ! $posts_count ) {
|
614 |
-
$posts_per_page = ( $posts_count_var ) ? $settings[ $posts_count_var ] : $settings['posts_per_page'];
|
615 |
} else {
|
616 |
$posts_per_page = $posts_count;
|
617 |
}
|
@@ -629,11 +629,11 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
629 |
$query_args['post_type'] = get_post_type();
|
630 |
|
631 |
if ( ! empty( $settings['related_include_by'] ) ) {
|
632 |
-
if ( in_array( 'authors', $settings['related_include_by'] ) ) {
|
633 |
$query_args['author'] = get_the_author_meta( 'ID' );
|
634 |
}
|
635 |
|
636 |
-
if ( in_array( 'terms', $settings['related_include_by'] ) ) {
|
637 |
if ( ! empty( $related_terms ) && ! is_wp_error( $related_terms ) ) {
|
638 |
|
639 |
foreach ( $related_terms as $index => $tax ) {
|
@@ -650,11 +650,11 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
650 |
}
|
651 |
|
652 |
if ( ! empty( $settings['related_exclude_by'] ) ) {
|
653 |
-
if ( in_array( 'current_post', $settings['related_exclude_by'] ) ) {
|
654 |
$query_args['post__not_in'] = array( get_the_ID() );
|
655 |
}
|
656 |
|
657 |
-
if ( in_array( 'authors', $settings['related_exclude_by'] ) ) {
|
658 |
$query_args['author'] = '-' . get_the_author_meta( 'ID' );
|
659 |
}
|
660 |
}
|
@@ -703,6 +703,11 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
703 |
// Taxonomy Filter.
|
704 |
$taxonomy = PP_Posts_Helper::get_post_taxonomies( $post_type );
|
705 |
|
|
|
|
|
|
|
|
|
|
|
706 |
if ( ! empty( $taxonomy ) && ! is_wp_error( $taxonomy ) ) {
|
707 |
|
708 |
foreach ( $taxonomy as $index => $tax ) {
|
@@ -710,10 +715,10 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
710 |
$tax_control_key = $index . '_' . $post_type;
|
711 |
|
712 |
if ( 'yes' === $old_code ) {
|
713 |
-
if (
|
714 |
-
if (
|
715 |
$tax_control_key = 'tags';
|
716 |
-
} elseif (
|
717 |
$tax_control_key = 'categories';
|
718 |
}
|
719 |
}
|
@@ -729,15 +734,105 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
729 |
'terms' => $settings[ $tax_control_key ],
|
730 |
'operator' => $operator,
|
731 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
}
|
733 |
}
|
734 |
}
|
735 |
|
736 |
if ( '' !== $filter && '*' !== $filter ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
737 |
$query_args['tax_query'][ $tax_count ]['taxonomy'] = $taxonomy_filter;
|
738 |
$query_args['tax_query'][ $tax_count ]['field'] = 'slug';
|
739 |
$query_args['tax_query'][ $tax_count ]['terms'] = $filter;
|
740 |
$query_args['tax_query'][ $tax_count ]['operator'] = 'IN';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
741 |
}
|
742 |
|
743 |
if ( '' !== $search ) {
|
@@ -779,12 +874,15 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
779 |
if ( 'yes' === $settings['sticky_posts'] && 'yes' === $settings['all_sticky_posts'] ) {
|
780 |
$post__in = get_option( 'sticky_posts' );
|
781 |
|
|
|
782 |
$query_args['post__in'] = $post__in;
|
783 |
}
|
784 |
|
785 |
// Exclude current post.
|
786 |
if ( 'yes' === $settings['exclude_current'] ) {
|
787 |
-
|
|
|
|
|
788 |
}
|
789 |
|
790 |
return apply_filters( "ppe_{$widget_type}_query_args", $query_args, $settings );
|
@@ -810,21 +908,33 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
810 |
*
|
811 |
* @param \WP_Query $wp_query
|
812 |
*/
|
813 |
-
do_action_deprecated( "pp_query_{$query_id}", [ $wp_query ], '2.3.
|
814 |
do_action( "powerpack/query/{$query_id}", $wp_query );
|
815 |
|
816 |
}
|
817 |
|
818 |
-
public function query_posts( $filter = '', $taxonomy = '', $search = '' ) {
|
819 |
$settings = $this->get_settings_for_display();
|
820 |
$query_id = $settings['query_id'];
|
821 |
|
822 |
if ( ! empty( $query_id ) ) {
|
823 |
add_action( 'pre_get_posts', array( $this, 'pre_get_posts_query_filter' ) );
|
824 |
}
|
825 |
-
$query_args
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
$this->query = new \WP_Query( $query_args );
|
|
|
827 |
remove_action( 'pre_get_posts', array( $this, 'pre_get_posts_query_filter' ) );
|
|
|
|
|
828 |
}
|
829 |
|
830 |
public function query_filters_posts( $filter = '', $taxonomy = '', $search = '' ) {
|
@@ -872,9 +982,14 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
872 |
|
873 |
global $wp_the_query, $paged;
|
874 |
|
875 |
-
|
876 |
-
|
877 |
-
|
|
|
|
|
|
|
|
|
|
|
878 |
|
879 |
if ( 'yes' === $pagination_ajax || 'load_more' === $pagination_type || 'infinite' === $pagination_type ) {
|
880 |
if ( isset( $_POST['nonce'] ) && wp_verify_nonce( $_POST['nonce'], 'pp-posts-widget-nonce' ) ) {
|
@@ -954,7 +1069,7 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
954 |
$url = get_permalink();
|
955 |
|
956 |
if ( $i > 1 ) {
|
957 |
-
if ( '' === get_option( 'permalink_structure' ) || in_array( $post->post_status, array( 'draft', 'pending' ) ) ) {
|
958 |
$url = add_query_arg( 'page', $i, $url );
|
959 |
} elseif ( get_option( 'show_on_front' ) === 'page' && (int) get_option( 'page_on_front' ) === $post->ID ) {
|
960 |
$url = trailingslashit( $url ) . user_trailingslashit( "$wp_rewrite->pagination_base/" . $i, 'single_paged' );
|
@@ -964,9 +1079,9 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
964 |
}
|
965 |
|
966 |
if ( is_preview() ) {
|
967 |
-
if ( ( 'draft' !== $post->post_status ) && isset( $_GET['preview_id'], $_GET['preview_nonce'] ) ) {
|
968 |
-
$query_args['preview_id'] = wp_unslash( $_GET['preview_id'] );
|
969 |
-
$query_args['preview_nonce'] = wp_unslash( $_GET['preview_nonce'] );
|
970 |
}
|
971 |
|
972 |
$url = get_preview_post_link( $post, $query_args, $url );
|
@@ -974,4 +1089,39 @@ abstract class Posts_Base extends Powerpack_Widget {
|
|
974 |
|
975 |
return $url;
|
976 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
977 |
}
|
611 |
);
|
612 |
|
613 |
if ( ! $posts_count ) {
|
614 |
+
$posts_per_page = ( $posts_count_var ) ? $settings[ $posts_count_var ] : ( isset( $settings['posts_per_page'] ) ? $settings['posts_per_page'] : '' );
|
615 |
} else {
|
616 |
$posts_per_page = $posts_count;
|
617 |
}
|
629 |
$query_args['post_type'] = get_post_type();
|
630 |
|
631 |
if ( ! empty( $settings['related_include_by'] ) ) {
|
632 |
+
if ( in_array( 'authors', $settings['related_include_by'], true ) ) {
|
633 |
$query_args['author'] = get_the_author_meta( 'ID' );
|
634 |
}
|
635 |
|
636 |
+
if ( in_array( 'terms', $settings['related_include_by'], true ) ) {
|
637 |
if ( ! empty( $related_terms ) && ! is_wp_error( $related_terms ) ) {
|
638 |
|
639 |
foreach ( $related_terms as $index => $tax ) {
|
650 |
}
|
651 |
|
652 |
if ( ! empty( $settings['related_exclude_by'] ) ) {
|
653 |
+
if ( in_array( 'current_post', $settings['related_exclude_by'], true ) ) {
|
654 |
$query_args['post__not_in'] = array( get_the_ID() );
|
655 |
}
|
656 |
|
657 |
+
if ( in_array( 'authors', $settings['related_exclude_by'], true ) ) {
|
658 |
$query_args['author'] = '-' . get_the_author_meta( 'ID' );
|
659 |
}
|
660 |
}
|
703 |
// Taxonomy Filter.
|
704 |
$taxonomy = PP_Posts_Helper::get_post_taxonomies( $post_type );
|
705 |
|
706 |
+
$tax_cat_in = '';
|
707 |
+
$tax_cat_not_in = '';
|
708 |
+
$tax_tag_in = '';
|
709 |
+
$tax_tag_not_in = '';
|
710 |
+
|
711 |
if ( ! empty( $taxonomy ) && ! is_wp_error( $taxonomy ) ) {
|
712 |
|
713 |
foreach ( $taxonomy as $index => $tax ) {
|
715 |
$tax_control_key = $index . '_' . $post_type;
|
716 |
|
717 |
if ( 'yes' === $old_code ) {
|
718 |
+
if ( 'post' === $post_type ) {
|
719 |
+
if ( 'post_tag' === $index ) {
|
720 |
$tax_control_key = 'tags';
|
721 |
+
} elseif ( 'category' === $index ) {
|
722 |
$tax_control_key = 'categories';
|
723 |
}
|
724 |
}
|
734 |
'terms' => $settings[ $tax_control_key ],
|
735 |
'operator' => $operator,
|
736 |
);
|
737 |
+
|
738 |
+
switch ( $index ) {
|
739 |
+
case 'category':
|
740 |
+
if ( 'IN' === $operator ) {
|
741 |
+
$tax_cat_in = $settings[ $tax_control_key ];
|
742 |
+
} elseif ( 'NOT IN' === $operator ) {
|
743 |
+
$tax_cat_not_in = $settings[ $tax_control_key ];
|
744 |
+
}
|
745 |
+
break;
|
746 |
+
|
747 |
+
case 'post_tag':
|
748 |
+
if ( 'IN' === $operator ) {
|
749 |
+
$tax_tag_in = $settings[ $tax_control_key ];
|
750 |
+
} elseif ( 'NOT IN' === $operator ) {
|
751 |
+
$tax_tag_not_in = $settings[ $tax_control_key ];
|
752 |
+
}
|
753 |
+
break;
|
754 |
+
}
|
755 |
}
|
756 |
}
|
757 |
}
|
758 |
|
759 |
if ( '' !== $filter && '*' !== $filter ) {
|
760 |
+
// Taxonomy Filter.
|
761 |
+
$taxonomy = PP_Posts_Helper::get_post_taxonomies( $post_type );
|
762 |
+
|
763 |
+
$tax_cat_in = '';
|
764 |
+
$tax_cat_not_in = '';
|
765 |
+
$tax_tag_in = '';
|
766 |
+
$tax_tag_not_in = '';
|
767 |
+
|
768 |
+
if ( ! empty( $taxonomy ) && ! is_wp_error( $taxonomy ) ) {
|
769 |
+
|
770 |
+
foreach ( $taxonomy as $index => $tax ) {
|
771 |
+
|
772 |
+
$tax_control_key = $index . '_' . $post_type;
|
773 |
+
|
774 |
+
if ( 'yes' === $old_code ) {
|
775 |
+
if ( 'post' === $post_type ) {
|
776 |
+
if ( 'post_tag' === $index ) {
|
777 |
+
$tax_control_key = 'tags';
|
778 |
+
} elseif ( 'category' === $index ) {
|
779 |
+
$tax_control_key = 'categories';
|
780 |
+
}
|
781 |
+
}
|
782 |
+
}
|
783 |
+
|
784 |
+
if ( ! empty( $settings[ $tax_control_key ] ) ) {
|
785 |
+
|
786 |
+
$operator = $settings[ $index . '_' . $post_type . '_filter_type' ];
|
787 |
+
|
788 |
+
$query_args['tax_query'][] = array(
|
789 |
+
'taxonomy' => $index,
|
790 |
+
'field' => 'term_id',
|
791 |
+
'terms' => $settings[ $tax_control_key ],
|
792 |
+
'operator' => $operator,
|
793 |
+
);
|
794 |
+
|
795 |
+
switch ( $index ) {
|
796 |
+
case 'category':
|
797 |
+
if ( 'IN' === $operator ) {
|
798 |
+
$tax_cat_in = $settings[ $tax_control_key ];
|
799 |
+
} elseif ( 'NOT IN' === $operator ) {
|
800 |
+
$tax_cat_not_in = $settings[ $tax_control_key ];
|
801 |
+
}
|
802 |
+
break;
|
803 |
+
|
804 |
+
case 'post_tag':
|
805 |
+
if ( 'IN' === $operator ) {
|
806 |
+
$tax_tag_in = $settings[ $tax_control_key ];
|
807 |
+
} elseif ( 'NOT IN' === $operator ) {
|
808 |
+
$tax_tag_not_in = $settings[ $tax_control_key ];
|
809 |
+
}
|
810 |
+
break;
|
811 |
+
}
|
812 |
+
}
|
813 |
+
}
|
814 |
+
}
|
815 |
+
|
816 |
$query_args['tax_query'][ $tax_count ]['taxonomy'] = $taxonomy_filter;
|
817 |
$query_args['tax_query'][ $tax_count ]['field'] = 'slug';
|
818 |
$query_args['tax_query'][ $tax_count ]['terms'] = $filter;
|
819 |
$query_args['tax_query'][ $tax_count ]['operator'] = 'IN';
|
820 |
+
|
821 |
+
/* if ( ! empty( $tax_cat_in ) ) {
|
822 |
+
$query_args['category__in'] = $tax_cat_in;
|
823 |
+
}
|
824 |
+
|
825 |
+
if ( ! empty( $tax_cat_not_in ) ) {
|
826 |
+
$query_args['category__not_in'] = $tax_cat_not_in;
|
827 |
+
}
|
828 |
+
|
829 |
+
if ( ! empty( $tax_tag_in ) ) {
|
830 |
+
$query_args['tag__in'] = $tax_tag_in;
|
831 |
+
}
|
832 |
+
|
833 |
+
if ( ! empty( $tax_tag_not_in ) ) {
|
834 |
+
$query_args['tag__not_in'] = $tax_tag_not_in;
|
835 |
+
} */
|
836 |
}
|
837 |
|
838 |
if ( '' !== $search ) {
|
874 |
if ( 'yes' === $settings['sticky_posts'] && 'yes' === $settings['all_sticky_posts'] ) {
|
875 |
$post__in = get_option( 'sticky_posts' );
|
876 |
|
877 |
+
$query_args['ignore_sticky_posts'] = 1;
|
878 |
$query_args['post__in'] = $post__in;
|
879 |
}
|
880 |
|
881 |
// Exclude current post.
|
882 |
if ( 'yes' === $settings['exclude_current'] ) {
|
883 |
+
if ( is_singular() ) {
|
884 |
+
$query_args['post__not_in'] = array( get_queried_object_id() );
|
885 |
+
}
|
886 |
}
|
887 |
|
888 |
return apply_filters( "ppe_{$widget_type}_query_args", $query_args, $settings );
|
908 |
*
|
909 |
* @param \WP_Query $wp_query
|
910 |
*/
|
911 |
+
do_action_deprecated( "pp_query_{$query_id}", [ $wp_query ], '2.3.7', "powerpack/query/{$query_id}" );
|
912 |
do_action( "powerpack/query/{$query_id}", $wp_query );
|
913 |
|
914 |
}
|
915 |
|
916 |
+
public function query_posts( $filter = '', $taxonomy = '', $search = '', $all_posts = '', $paged_args = '', $widget_type = 'posts', $old_code = '', $posts_count_var = '', $posts_count = '' ) {
|
917 |
$settings = $this->get_settings_for_display();
|
918 |
$query_id = $settings['query_id'];
|
919 |
|
920 |
if ( ! empty( $query_id ) ) {
|
921 |
add_action( 'pre_get_posts', array( $this, 'pre_get_posts_query_filter' ) );
|
922 |
}
|
923 |
+
$query_args = $this->query_posts_args( $filter, $taxonomy, $search, '', 'yes', $widget_type, $old_code, $posts_count_var, $posts_count );
|
924 |
+
|
925 |
+
$post_type = $settings['post_type'];
|
926 |
+
$offset_control = $settings['offset'];
|
927 |
+
|
928 |
+
if ( 'related' !== $post_type && 0 < $offset_control ) {
|
929 |
+
add_action( 'pre_get_posts', [ $this, 'fix_query_offset' ], 1 );
|
930 |
+
add_filter( 'found_posts', [ $this, 'fix_query_found_posts' ], 1, 2 );
|
931 |
+
}
|
932 |
+
|
933 |
$this->query = new \WP_Query( $query_args );
|
934 |
+
|
935 |
remove_action( 'pre_get_posts', array( $this, 'pre_get_posts_query_filter' ) );
|
936 |
+
remove_action( 'pre_get_posts', [ $this, 'fix_query_offset' ], 1 );
|
937 |
+
remove_filter( 'found_posts', [ $this, 'fix_query_found_posts' ], 1 );
|
938 |
}
|
939 |
|
940 |
public function query_filters_posts( $filter = '', $taxonomy = '', $search = '' ) {
|
982 |
|
983 |
global $wp_the_query, $paged;
|
984 |
|
985 |
+
if ( isset( $settings['_skin'] ) ) {
|
986 |
+
$skin_id = $settings['_skin'];
|
987 |
+
$pagination_ajax = $settings[ $skin_id . '_pagination_ajax' ];
|
988 |
+
$pagination_type = $settings[ $skin_id . '_pagination_type' ];
|
989 |
+
} else {
|
990 |
+
$pagination_ajax = '';
|
991 |
+
$pagination_type = '';
|
992 |
+
}
|
993 |
|
994 |
if ( 'yes' === $pagination_ajax || 'load_more' === $pagination_type || 'infinite' === $pagination_type ) {
|
995 |
if ( isset( $_POST['nonce'] ) && wp_verify_nonce( $_POST['nonce'], 'pp-posts-widget-nonce' ) ) {
|
1069 |
$url = get_permalink();
|
1070 |
|
1071 |
if ( $i > 1 ) {
|
1072 |
+
if ( '' === get_option( 'permalink_structure' ) || in_array( $post->post_status, array( 'draft', 'pending' ), true ) ) {
|
1073 |
$url = add_query_arg( 'page', $i, $url );
|
1074 |
} elseif ( get_option( 'show_on_front' ) === 'page' && (int) get_option( 'page_on_front' ) === $post->ID ) {
|
1075 |
$url = trailingslashit( $url ) . user_trailingslashit( "$wp_rewrite->pagination_base/" . $i, 'single_paged' );
|
1079 |
}
|
1080 |
|
1081 |
if ( is_preview() ) {
|
1082 |
+
if ( ( 'draft' !== $post->post_status ) && isset( $_GET['preview_id'], $_GET['preview_nonce'] ) ) { //phpcs:ignore
|
1083 |
+
$query_args['preview_id'] = wp_unslash( $_GET['preview_id'] ); //phpcs:ignore
|
1084 |
+
$query_args['preview_nonce'] = wp_unslash( $_GET['preview_nonce'] ); //phpcs:ignore
|
1085 |
}
|
1086 |
|
1087 |
$url = get_preview_post_link( $post, $query_args, $url );
|
1089 |
|
1090 |
return $url;
|
1091 |
}
|
1092 |
+
|
1093 |
+
/**
|
1094 |
+
* @param \WP_Query $query
|
1095 |
+
*
|
1096 |
+
* @since 2.3.6
|
1097 |
+
*/
|
1098 |
+
public function fix_query_offset( &$query ) {
|
1099 |
+
$settings = $this->get_settings_for_display();
|
1100 |
+
$offset = $settings['offset'];
|
1101 |
+
|
1102 |
+
if ( $offset && $query->is_paged ) {
|
1103 |
+
$query->query_vars['offset'] = $offset + ( ( $query->query_vars['paged'] - 1 ) * $query->query_vars['posts_per_page'] );
|
1104 |
+
} else {
|
1105 |
+
$query->query_vars['offset'] = $offset;
|
1106 |
+
}
|
1107 |
+
}
|
1108 |
+
|
1109 |
+
/**
|
1110 |
+
* @param int $found_posts
|
1111 |
+
* @param \WP_Query $query
|
1112 |
+
*
|
1113 |
+
* @since 2.3.6
|
1114 |
+
*
|
1115 |
+
* @return int
|
1116 |
+
*/
|
1117 |
+
public function fix_query_found_posts( $found_posts, $query ) {
|
1118 |
+
$settings = $this->get_settings_for_display();
|
1119 |
+
$offset = $settings['offset'];
|
1120 |
+
|
1121 |
+
if ( $offset ) {
|
1122 |
+
$found_posts -= $offset;
|
1123 |
+
}
|
1124 |
+
|
1125 |
+
return $found_posts;
|
1126 |
+
}
|
1127 |
}
|
modules/pricing/widgets/price-menu.php
CHANGED
@@ -1406,18 +1406,4 @@ class Price_Menu extends Powerpack_Widget {
|
|
1406 |
</div>
|
1407 |
<?php
|
1408 |
}
|
1409 |
-
|
1410 |
-
/**
|
1411 |
-
* Render price menu widget output in the editor.
|
1412 |
-
*
|
1413 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1414 |
-
*
|
1415 |
-
* Remove this after Elementor v3.3.0
|
1416 |
-
*
|
1417 |
-
* @since 1.0.0
|
1418 |
-
* @access protected
|
1419 |
-
*/
|
1420 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1421 |
-
$this->content_template();
|
1422 |
-
}
|
1423 |
}
|
1406 |
</div>
|
1407 |
<?php
|
1408 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1409 |
}
|
modules/pricing/widgets/pricing-table.php
CHANGED
@@ -3453,18 +3453,4 @@ class Pricing_Table extends Powerpack_Widget {
|
|
3453 |
</div>
|
3454 |
<?php
|
3455 |
}
|
3456 |
-
|
3457 |
-
/**
|
3458 |
-
* Render pricing table widget output in the editor.
|
3459 |
-
*
|
3460 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
3461 |
-
*
|
3462 |
-
* Remove this after Elementor v3.3.0
|
3463 |
-
*
|
3464 |
-
* @since 1.0.0
|
3465 |
-
* @access protected
|
3466 |
-
*/
|
3467 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
3468 |
-
$this->content_template();
|
3469 |
-
}
|
3470 |
}
|
3453 |
</div>
|
3454 |
<?php
|
3455 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3456 |
}
|
modules/promo-box/widgets/promo-box.php
CHANGED
@@ -1963,18 +1963,4 @@ class Promo_Box extends Powerpack_Widget {
|
|
1963 |
</div>
|
1964 |
<?php
|
1965 |
}
|
1966 |
-
|
1967 |
-
/**
|
1968 |
-
* Render promo box widget output in the editor.
|
1969 |
-
*
|
1970 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
1971 |
-
*
|
1972 |
-
* Remove this after Elementor v3.3.0
|
1973 |
-
*
|
1974 |
-
* @since 1.0.0
|
1975 |
-
* @access protected
|
1976 |
-
*/
|
1977 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1978 |
-
$this->content_template();
|
1979 |
-
}
|
1980 |
}
|
1963 |
</div>
|
1964 |
<?php
|
1965 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1966 |
}
|
modules/random-image/widgets/random-image.php
CHANGED
@@ -1269,7 +1269,4 @@ class Random_Image extends Powerpack_Widget {
|
|
1269 |
|
1270 |
return '<div ' . $this->get_render_attribute_string( $pp_overlay_key ) . '></div>';
|
1271 |
}
|
1272 |
-
|
1273 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
1274 |
-
}
|
1275 |
}
|
1269 |
|
1270 |
return '<div ' . $this->get_render_attribute_string( $pp_overlay_key ) . '></div>';
|
1271 |
}
|
|
|
|
|
|
|
1272 |
}
|
modules/scroll-image/widgets/scroll-image.php
CHANGED
@@ -563,7 +563,7 @@ class Scroll_Image extends Powerpack_Widget {
|
|
563 |
<?php
|
564 |
}
|
565 |
|
566 |
-
protected function
|
567 |
?>
|
568 |
<#
|
569 |
var direction = settings.direction_type,
|
563 |
<?php
|
564 |
}
|
565 |
|
566 |
+
protected function content_template() {
|
567 |
?>
|
568 |
<#
|
569 |
var direction = settings.direction_type,
|
modules/team-member/widgets/team-member-carousel.php
CHANGED
@@ -3120,17 +3120,4 @@ class Team_Member_Carousel extends Powerpack_Widget {
|
|
3120 |
</div>
|
3121 |
<?php
|
3122 |
}
|
3123 |
-
|
3124 |
-
/**
|
3125 |
-
* Render team member carousel widget output in the editor.
|
3126 |
-
*
|
3127 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
3128 |
-
*
|
3129 |
-
* Remove this after Elementor v3.3.0
|
3130 |
-
*
|
3131 |
-
* @access protected
|
3132 |
-
*/
|
3133 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
3134 |
-
$this->content_template();
|
3135 |
-
}
|
3136 |
}
|
3120 |
</div>
|
3121 |
<?php
|
3122 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3123 |
}
|
modules/team-member/widgets/team-member.php
CHANGED
@@ -2150,17 +2150,4 @@ class Team_Member extends Powerpack_Widget {
|
|
2150 |
</div>
|
2151 |
<?php
|
2152 |
}
|
2153 |
-
|
2154 |
-
/**
|
2155 |
-
* Render team member widget output in the editor.
|
2156 |
-
*
|
2157 |
-
* Written as a Backbone JavaScript template and used to generate the live preview.
|
2158 |
-
*
|
2159 |
-
* Remove this after Elementor v3.3.0
|
2160 |
-
*
|
2161 |
-
* @access protected
|
2162 |
-
*/
|
2163 |
-
protected function _content_template() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
|
2164 |
-
$this->content_template();
|
2165 |
-
}
|
2166 |
}
|
2150 |
</div>
|
2151 |
<?php
|
2152 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2153 |
}
|
modules/twitter/widgets/twitter-buttons.php
CHANGED
@@ -309,7 +309,7 @@ class Twitter_Buttons extends Powerpack_Widget {
|
|
309 |
*
|
310 |
* @access protected
|
311 |
*/
|
312 |
-
protected function
|
313 |
?>
|
314 |
<#
|
315 |
var text = ( settings.default_text ) ? '&text='+settings.default_text : '';
|
309 |
*
|
310 |
* @access protected
|
311 |
*/
|
312 |
+
protected function content_template() {
|
313 |
?>
|
314 |
<#
|
315 |
var text = ( settings.default_text ) ? '&text='+settings.default_text : '';
|
modules/twitter/widgets/twitter-grid.php
CHANGED
@@ -195,7 +195,7 @@ class Twitter_Grid extends Powerpack_Widget {
|
|
195 |
*
|
196 |
* @access protected
|
197 |
*/
|
198 |
-
protected function
|
199 |
?>
|
200 |
<#
|
201 |
view.addRenderAttribute( 'atts', {
|
195 |
*
|
196 |
* @access protected
|
197 |
*/
|
198 |
+
protected function content_template() {
|
199 |
?>
|
200 |
<#
|
201 |
view.addRenderAttribute( 'atts', {
|
modules/twitter/widgets/twitter-timeline.php
CHANGED
@@ -281,7 +281,7 @@ class Twitter_Timeline extends Powerpack_Widget {
|
|
281 |
*
|
282 |
* @access protected
|
283 |
*/
|
284 |
-
protected function
|
285 |
?>
|
286 |
<#
|
287 |
view.addRenderAttribute( 'atts', {
|
281 |
*
|
282 |
* @access protected
|
283 |
*/
|
284 |
+
protected function content_template() {
|
285 |
?>
|
286 |
<#
|
287 |
view.addRenderAttribute( 'atts', {
|
package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "powerpack-lite-for-elementor",
|
3 |
-
"version": "2.5.
|
4 |
"description": "Extend Elementor Page Builder with 50+ Creative Widgets.",
|
5 |
"keywords": [],
|
6 |
"author": "IdeaBox Creations",
|
1 |
{
|
2 |
"name": "powerpack-lite-for-elementor",
|
3 |
+
"version": "2.5.3",
|
4 |
"description": "Extend Elementor Page Builder with 50+ Creative Widgets.",
|
5 |
"keywords": [],
|
6 |
"author": "IdeaBox Creations",
|
powerpack-lite-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: PowerPack Lite for Elementor
|
4 |
* Plugin URI: https://powerpackelements.com
|
5 |
* Description: Extend Elementor Page Builder with 30+ Creative Widgets and exciting extensions.
|
6 |
-
* Version: 2.5.
|
7 |
* Author: IdeaBox Creations
|
8 |
* Author URI: http://ideabox.io/
|
9 |
* License: GNU General Public License v2.0
|
@@ -20,7 +20,7 @@ if ( defined( 'POWERPACK_ELEMENTS_VER' ) ) {
|
|
20 |
return;
|
21 |
}
|
22 |
|
23 |
-
define( 'POWERPACK_ELEMENTS_LITE_VER', '2.5.
|
24 |
define( 'POWERPACK_ELEMENTS_LITE_PATH', plugin_dir_path( __FILE__ ) );
|
25 |
define( 'POWERPACK_ELEMENTS_LITE_BASE', plugin_basename( __FILE__ ) );
|
26 |
define( 'POWERPACK_ELEMENTS_LITE_URL', plugins_url( '/', __FILE__ ) );
|
3 |
* Plugin Name: PowerPack Lite for Elementor
|
4 |
* Plugin URI: https://powerpackelements.com
|
5 |
* Description: Extend Elementor Page Builder with 30+ Creative Widgets and exciting extensions.
|
6 |
+
* Version: 2.5.3
|
7 |
* Author: IdeaBox Creations
|
8 |
* Author URI: http://ideabox.io/
|
9 |
* License: GNU General Public License v2.0
|
20 |
return;
|
21 |
}
|
22 |
|
23 |
+
define( 'POWERPACK_ELEMENTS_LITE_VER', '2.5.3' );
|
24 |
define( 'POWERPACK_ELEMENTS_LITE_PATH', plugin_dir_path( __FILE__ ) );
|
25 |
define( 'POWERPACK_ELEMENTS_LITE_BASE', plugin_basename( __FILE__ ) );
|
26 |
define( 'POWERPACK_ELEMENTS_LITE_URL', plugins_url( '/', __FILE__ ) );
|
readme.txt
CHANGED
@@ -76,9 +76,15 @@ PowerPack Addon for Elementor comes from our team of experts, who always deliver
|
|
76 |
32. [Buttons](https://powerpackelements.com/button-widget/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create call-to-action button or multiple buttons with this widget.
|
77 |
33. [Scroll Image](https://powerpackelements.com/demo/image-scroll/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Vertical and Horizontal scroll effect on image.
|
78 |
34. [Twitter](https://powerpackelements.com/demo/twitter-widget/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Embed Twitter tweet and follow buttons, embedded grid and timeline.
|
79 |
-
35. [Fancy
|
80 |
36. [Posts](https://powerpackelements.com/elementor-widgets/posts/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Display blog posts beautifully on your Elementor websites.
|
81 |
37. [Content Reveal](https://powerpackelements.com/elementor-widgets/content-reveal/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Organize the layout of your page by displaying more content in less area. Content Reveal widget allows you to display the extra information with a simple click of button.
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
### SEE, WHAT OUR USERS HAVE GOT TO SAY ABOUT POWERPACK FOR ELEMENTOR
|
84 |
**Here are some testimonials from our Happy Customers and Elementor experts**
|
@@ -151,7 +157,7 @@ https://www.youtube.com/watch?v=IoSvG1-0f4M&t=1s
|
|
151 |
### CREATIVE EXTENSIONS
|
152 |
|
153 |
- **ADVANCED DISPLAY CONDITIONS FUNCTIONALITY**
|
154 |
-
|
155 |
|
156 |
https://www.youtube.com/watch?v=blCGxZujnJg
|
157 |
|
@@ -171,6 +177,9 @@ https://www.youtube.com/watch?v=-VPXg2L1sew&feature=youtu.be
|
|
171 |
- **[BACKGROUND EFFECTS](https://powerpackelements.com/elementor-widgets/background-effects/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)**
|
172 |
Add stylish & animated backgrounds on your website.
|
173 |
|
|
|
|
|
|
|
174 |
### LEARN FROM EXTENSIVE DOCUMENTATION
|
175 |
We have [Extensive Documentation](https://powerpackelements.com/docs/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) which includes all types of docs that support users to understand [PowerPack for Elementor](https://powerpackelements.com/docs/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) better.
|
176 |
|
@@ -218,6 +227,13 @@ Not at all! All the widgets and settings are easy to use with drag & drop interf
|
|
218 |
|
219 |
== Changelog ==
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
= 2.5.2 - July 22, 2021 =
|
222 |
* Fixed: Price Menu - PHP error
|
223 |
|
76 |
32. [Buttons](https://powerpackelements.com/button-widget/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Create call-to-action button or multiple buttons with this widget.
|
77 |
33. [Scroll Image](https://powerpackelements.com/demo/image-scroll/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Vertical and Horizontal scroll effect on image.
|
78 |
34. [Twitter](https://powerpackelements.com/demo/twitter-widget/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) – Embed Twitter tweet and follow buttons, embedded grid and timeline.
|
79 |
+
35. [Fancy Heading](https://powerpackelements.com/elementor-widgets/fancy-heading?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Setup stylish headings on your Elementor website with gradient fill and background clipping options.
|
80 |
36. [Posts](https://powerpackelements.com/elementor-widgets/posts/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Display blog posts beautifully on your Elementor websites.
|
81 |
37. [Content Reveal](https://powerpackelements.com/elementor-widgets/content-reveal/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Organize the layout of your page by displaying more content in less area. Content Reveal widget allows you to display the extra information with a simple click of button.
|
82 |
+
38. [Random Image] (https://powerpackelements.com/elementor-widgets/random-image/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Display Random Images from a set of the images on your webpage.
|
83 |
+
|
84 |
+
## CREATIVE EXTENSIONS - FREE
|
85 |
+
|
86 |
+
1. [Display Conditions] (https://powerpackelements.com/elementor-widgets/display-conditions/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Use Elementor to display timed-content, content for logged in users, special content based on user's browser. Also, display content based on page, post, archive rules, and much more.
|
87 |
+
2. [Wrapper Link] (https://powerpackelements.com/elementor-widgets/wrapper-link/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link) - Add links to any widget, column, or section of your elementor page easily with the Wrapper Link extension.
|
88 |
|
89 |
### SEE, WHAT OUR USERS HAVE GOT TO SAY ABOUT POWERPACK FOR ELEMENTOR
|
90 |
**Here are some testimonials from our Happy Customers and Elementor experts**
|
157 |
### CREATIVE EXTENSIONS
|
158 |
|
159 |
- **ADVANCED DISPLAY CONDITIONS FUNCTIONALITY**
|
160 |
+
Our Advanced Display Conditions have in-built support for Advanced Custom Fields which allows you to display content from custom fields based on user's browser, operating system, date, time, login status, and much more. The most UNIQUE solution for Elementor widgets and sections.
|
161 |
|
162 |
https://www.youtube.com/watch?v=blCGxZujnJg
|
163 |
|
177 |
- **[BACKGROUND EFFECTS](https://powerpackelements.com/elementor-widgets/background-effects/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)**
|
178 |
Add stylish & animated backgrounds on your website.
|
179 |
|
180 |
+
- **[CUSTOM CURSOR] (https://powerpackelements.com/elementor-widgets/custom-cursor/?utm_source=repo-readme&utm_medium=powerpack-lite&utm_campaign=repo-demo-link)**
|
181 |
+
Change default mouse cursor and display icon, image, or text cursor styles on a section or a page of your website.
|
182 |
+
|
183 |
### LEARN FROM EXTENSIVE DOCUMENTATION
|
184 |
We have [Extensive Documentation](https://powerpackelements.com/docs/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) which includes all types of docs that support users to understand [PowerPack for Elementor](https://powerpackelements.com/docs/?utm_medium=powerpack-lite&utm_source=repo-readme&utm_campaign=repo-demo-link) better.
|
185 |
|
227 |
|
228 |
== Changelog ==
|
229 |
|
230 |
+
= 2.5.3 - August 4, 2021 =
|
231 |
+
* Added: Posts – Link target option for title and thumbnail
|
232 |
+
* Added: Posts – Center Mode option for Carousel layout
|
233 |
+
* Added: Posts – Integration for The Events Calendar plugin
|
234 |
+
* Fixed: Posts - Non-Ajax Pagination was not working
|
235 |
+
* Fixed: JS file was not loading through wrapper link extension
|
236 |
+
|
237 |
= 2.5.2 - July 22, 2021 =
|
238 |
* Fixed: Price Menu - PHP error
|
239 |
|