Version Description
- Fixed - Bug fixes.
Download this release
Release Info
Developer | livemesh |
Plugin | ![]() |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.4 to 2.2.1
- admin/admin-init.php +2 -49
- admin/assets/css/lsow-admin-page.css +0 -9
- admin/assets/css/lsow-admin-page.css.map +1 -1
- admin/assets/css/lsow-admin-page.scss +0 -11
- admin/assets/css/lsow-admin.css +8 -2
- admin/assets/css/lsow-admin.css.map +1 -1
- admin/assets/css/lsow-admin.scss +7 -2
- admin/assets/js/documentation.js +0 -54
- admin/assets/js/documentation.min.js +1 -1
- admin/views/admin-banner3.php +0 -16
- admin/views/documentation.php +177 -83
- admin/views/premium-upgrade.php +0 -619
- admin/views/settings.php +38 -28
- assets/css/_grid-settings.scss +2 -32
- assets/css/animate.css +3449 -0
- assets/css/icomoon.css +22 -1
- assets/css/lsow-frontend.css +355 -265
- assets/css/lsow-frontend.css.map +1 -1
- assets/css/lsow-frontend.scss +506 -216
- assets/images/bricks-loader.gif +0 -0
- assets/images/loader.gif +0 -0
- assets/images/loading.gif +0 -0
- assets/js/isotope.pkgd.js +3032 -3014
- assets/js/lsow-frontend.js +18 -0
- assets/js/lsow-frontend.min.js +1 -1
- freemius/LICENSE.txt +674 -0
- freemius/README.md +253 -0
- freemius/assets/css/admin/account.css +2 -0
- freemius/assets/css/admin/add-ons.css +3 -0
- freemius/assets/css/admin/affiliation.css +2 -0
- freemius/assets/css/admin/checkout.css +2 -0
- freemius/assets/css/admin/common.css +3 -0
- freemius/assets/css/admin/connect.css +2 -0
- freemius/assets/css/admin/deactivation-feedback.css +2 -0
- freemius/assets/css/admin/debug.css +2 -0
- freemius/assets/css/admin/dialog-boxes.css +3 -0
- freemius/assets/css/admin/gdpr-optin-notice.css +2 -0
- freemius/assets/css/admin/index.php +3 -0
- freemius/assets/css/admin/license-activation.css +2 -0
- freemius/assets/css/customizer.css +2 -0
- freemius/assets/css/index.php +3 -0
- freemius/assets/img/addons-for-elementor.png +0 -0
- freemius/assets/img/index.php +3 -0
- freemius/assets/img/livemesh-siteorigin-widgets.png +0 -0
- freemius/assets/img/plugin-icon.png +0 -0
- freemius/assets/img/theme-icon.png +0 -0
- freemius/assets/index.php +3 -0
- freemius/assets/js/index.php +3 -0
- freemius/assets/js/nojquery.ba-postmessage.js +140 -0
- freemius/assets/js/nojquery.ba-postmessage.min.js +12 -0
- freemius/assets/js/postmessage.js +135 -0
- freemius/assets/scss/_colors.scss +68 -0
- freemius/assets/scss/_functions.scss +0 -0
- freemius/assets/scss/_load.scss +4 -0
- freemius/assets/scss/_mixins.scss +270 -0
- freemius/assets/scss/_start.scss +4 -0
- freemius/assets/scss/_vars.scss +6 -0
- freemius/assets/scss/admin/_ajax-loader.scss +49 -0
- freemius/assets/scss/admin/_auto-install.scss +33 -0
- freemius/assets/scss/admin/_deactivation-feedback.scss +55 -0
- freemius/assets/scss/admin/_gdpr-consent.scss +81 -0
- freemius/assets/scss/admin/_license-activation.scss +47 -0
- freemius/assets/scss/admin/_license-key-resend.scss +68 -0
- freemius/assets/scss/admin/_modal-common.scss +194 -0
- freemius/assets/scss/admin/_multisite-options.scss +40 -0
- freemius/assets/scss/admin/_themes.scss +21 -0
- freemius/assets/scss/admin/_tooltip.scss +66 -0
- freemius/assets/scss/admin/account.scss +302 -0
- freemius/assets/scss/admin/add-ons.scss +449 -0
- freemius/assets/scss/admin/affiliation.scss +97 -0
- freemius/assets/scss/admin/checkout.scss +5 -0
- freemius/assets/scss/admin/common.scss +218 -0
- freemius/assets/scss/admin/connect.scss +548 -0
- freemius/assets/scss/admin/debug.scss +135 -0
- freemius/assets/scss/admin/dialog-boxes.scss +8 -0
- freemius/assets/scss/admin/gdpr-optin-notice.scss +17 -0
- freemius/assets/scss/admin/index.php +3 -0
- freemius/assets/scss/customizer.scss +125 -0
- freemius/assets/scss/index.php +3 -0
- freemius/config.php +388 -0
- freemius/includes/class-freemius-abstract.php +597 -0
- freemius/includes/class-freemius.php +20822 -0
- freemius/includes/class-fs-admin-notices.php +321 -0
- freemius/includes/class-fs-api.php +615 -0
- freemius/includes/class-fs-logger.php +691 -0
- freemius/includes/class-fs-options.php +431 -0
- freemius/includes/class-fs-plugin-updater.php +935 -0
- freemius/includes/class-fs-security.php +85 -0
- freemius/includes/class-fs-storage.php +524 -0
- freemius/includes/class-fs-user-lock.php +126 -0
- freemius/includes/customizer/class-fs-customizer-support-section.php +102 -0
- freemius/includes/customizer/class-fs-customizer-upsell-control.php +157 -0
- freemius/includes/customizer/index.php +3 -0
- freemius/includes/debug/class-fs-debug-bar-panel.php +64 -0
- freemius/includes/debug/debug-bar-start.php +52 -0
- freemius/includes/debug/index.php +3 -0
- freemius/includes/entities/class-fs-affiliate-terms.php +128 -0
- freemius/includes/entities/class-fs-affiliate.php +84 -0
- freemius/includes/entities/class-fs-billing.php +95 -0
- freemius/includes/entities/class-fs-entity.php +149 -0
- freemius/includes/entities/class-fs-payment.php +110 -0
- freemius/includes/entities/class-fs-plugin-info.php +34 -0
- freemius/includes/entities/class-fs-plugin-license.php +269 -0
- freemius/includes/entities/class-fs-plugin-plan.php +145 -0
- freemius/includes/entities/class-fs-plugin-tag.php +50 -0
- freemius/includes/entities/class-fs-plugin.php +120 -0
- freemius/includes/entities/class-fs-pricing.php +141 -0
- freemius/includes/entities/class-fs-scope-entity.php +29 -0
- freemius/includes/entities/class-fs-site.php +225 -0
- freemius/includes/entities/class-fs-subscription.php +125 -0
- freemius/includes/entities/class-fs-user.php +62 -0
- freemius/includes/entities/index.php +3 -0
- freemius/includes/fs-core-functions.php +1298 -0
- freemius/includes/fs-essential-functions.php +477 -0
- freemius/includes/fs-plugin-info-dialog.php +1110 -0
- freemius/includes/i18n.php +603 -0
- freemius/includes/index.php +3 -0
- freemius/includes/l10n.php +48 -0
- freemius/includes/managers/class-fs-admin-menu-manager.php +957 -0
- freemius/includes/managers/class-fs-admin-notice-manager.php +398 -0
- freemius/includes/managers/class-fs-cache-manager.php +326 -0
- freemius/includes/managers/class-fs-gdpr-manager.php +202 -0
- freemius/includes/managers/class-fs-key-value-storage.php +392 -0
- freemius/includes/managers/class-fs-license-manager.php +104 -0
- freemius/includes/managers/class-fs-option-manager.php +490 -0
- freemius/includes/managers/class-fs-plan-manager.php +162 -0
- freemius/includes/managers/class-fs-plugin-manager.php +220 -0
- freemius/includes/managers/index.php +3 -0
- freemius/includes/sdk/Exceptions/ArgumentNotExistException.php +9 -0
- freemius/includes/sdk/Exceptions/EmptyArgumentException.php +9 -0
- freemius/includes/sdk/Exceptions/Exception.php +74 -0
- freemius/includes/sdk/Exceptions/InvalidArgumentException.php +8 -0
- freemius/includes/sdk/Exceptions/OAuthException.php +12 -0
- freemius/includes/sdk/Exceptions/index.php +3 -0
- freemius/includes/sdk/FreemiusBase.php +215 -0
- freemius/includes/sdk/FreemiusWordPress.php +704 -0
- freemius/includes/sdk/LICENSE.txt +340 -0
- freemius/includes/sdk/index.php +3 -0
- freemius/includes/supplements/fs-essential-functions-1.1.7.1.php +47 -0
- freemius/includes/supplements/index.php +3 -0
- freemius/index.php +3 -0
- freemius/languages/freemius-da_DK.mo +0 -0
- freemius/languages/freemius-da_DK.po +12 -0
- freemius/languages/freemius-en.mo +0 -0
- freemius/languages/freemius-en.po +2205 -0
- freemius/languages/freemius-es_ES.mo +0 -0
- freemius/languages/freemius-es_ES.po +2299 -0
- freemius/languages/freemius-fr_FR.mo +0 -0
- freemius/languages/freemius-fr_FR.po +2299 -0
- freemius/languages/freemius-he_IL.mo +0 -0
- freemius/languages/freemius-he_IL.po +2300 -0
- freemius/languages/freemius-it_IT.mo +0 -0
- freemius/languages/freemius-it_IT.po +2302 -0
- freemius/languages/freemius-ja_JP.mo +0 -0
- freemius/languages/freemius-ja_JP.po +2302 -0
- freemius/languages/freemius-nl_NL.mo +0 -0
- freemius/languages/freemius-nl_NL.po +2299 -0
- freemius/languages/freemius-ru_RU.mo +0 -0
- freemius/languages/freemius-ru_RU.po +2298 -0
- freemius/languages/freemius.pot +2202 -0
- freemius/languages/index.php +3 -0
- freemius/package.json +27 -0
- freemius/require.php +49 -0
- freemius/start.php +511 -0
- freemius/templates/account.php +739 -0
- freemius/templates/account/billing.php +431 -0
- freemius/templates/account/index.php +3 -0
- freemius/templates/account/partials/activate-license-button.php +54 -0
- freemius/templates/account/partials/addon.php +345 -0
- freemius/templates/account/partials/deactivate-license-button.php +36 -0
- freemius/templates/account/partials/index.php +3 -0
- freemius/templates/account/partials/site.php +331 -0
- freemius/templates/account/payments.php +59 -0
- freemius/templates/add-ons.php +193 -0
- freemius/templates/add-trial-to-pricing.php +31 -0
- freemius/templates/admin-notice.php +48 -0
- freemius/templates/ajax-loader.php +1 -0
- freemius/templates/auto-installation.php +249 -0
- freemius/templates/checkout.php +329 -0
- freemius/templates/connect.php +916 -0
- freemius/templates/contact.php +128 -0
- freemius/templates/debug.php +714 -0
- freemius/templates/debug/api-calls.php +155 -0
- freemius/templates/debug/index.php +3 -0
- freemius/templates/debug/logger.php +66 -0
- freemius/templates/debug/plugins-themes-sync.php +76 -0
- freemius/templates/debug/scheduled-crons.php +136 -0
- freemius/templates/email.php +49 -0
- freemius/templates/firewall-issues-js.php +59 -0
- freemius/templates/forms/affiliation.php +486 -0
- freemius/templates/forms/deactivation/contact.php +23 -0
- freemius/templates/forms/deactivation/form.php +430 -0
- freemius/templates/forms/deactivation/index.php +3 -0
- freemius/templates/forms/deactivation/retry-skip.php +24 -0
- freemius/templates/forms/index.php +3 -0
- freemius/templates/forms/license-activation.php +700 -0
- freemius/templates/forms/optout.php +267 -0
- freemius/templates/forms/premium-versions-upgrade-handler.php +183 -0
- freemius/templates/forms/premium-versions-upgrade-metadata.php +29 -0
- freemius/templates/forms/resend-key.php +247 -0
- freemius/templates/forms/trial-start.php +181 -0
- freemius/templates/gdpr-optin-js.php +66 -0
- freemius/templates/index.php +3 -0
- freemius/templates/js/index.php +3 -0
- freemius/templates/js/jquery.content-change.php +58 -0
- freemius/templates/js/open-license-activation.php +37 -0
- freemius/templates/js/style-premium-theme.php +45 -0
- freemius/templates/partials/network-activation.php +81 -0
- freemius/templates/plugin-icon.php +20 -0
- freemius/templates/plugin-info/description.php +78 -0
- freemius/templates/plugin-info/features.php +114 -0
- freemius/templates/plugin-info/index.php +3 -0
- freemius/templates/plugin-info/screenshots.php +34 -0
- freemius/templates/powered-by.php +58 -0
- freemius/templates/pricing.php +171 -0
- freemius/templates/secure-https-header.php +39 -0
- freemius/templates/sticky-admin-notice-js.php +39 -0
- freemius/templates/tabs-capture-js.php +63 -0
- freemius/templates/tabs.php +182 -0
- includes/class-lsow-setup.php +204 -172
- includes/fields/js/jquery-ui-timepicker-addon.min.js +2 -5
- includes/helper-functions.php +273 -279
- includes/widgets/lsow-accordion-widget/css/style.css +2 -2
- includes/widgets/lsow-accordion-widget/css/style.css.map +1 -1
- includes/widgets/lsow-accordion-widget/css/style.scss +1 -1
- includes/widgets/lsow-accordion-widget/js/accordion.js +43 -7
- includes/widgets/lsow-accordion-widget/js/accordion.min.js +1 -1
- includes/widgets/lsow-accordion-widget/lsow-accordion-widget.php +80 -87
- includes/widgets/lsow-accordion-widget/tpl/default.php +34 -11
- includes/widgets/lsow-button-widget/assets/banner.svg +1 -1
- includes/widgets/lsow-button-widget/lsow-button-widget.php +18 -42
- includes/widgets/lsow-button-widget/styles/default.less +14 -0
- includes/widgets/lsow-button-widget/tpl/default.php +3 -1
- includes/widgets/lsow-carousel-widget/lsow-carousel-widget.php +2 -2
- includes/widgets/lsow-clients-widget/css/style.css +77 -32
- includes/widgets/lsow-clients-widget/css/style.css.map +1 -1
- includes/widgets/lsow-clients-widget/css/style.scss +146 -38
- includes/widgets/lsow-clients-widget/lsow-clients-widget.php +26 -3
- includes/widgets/lsow-clients-widget/tpl/default.php +25 -20
- includes/widgets/lsow-heading-widget/css/style.css.map +1 -1
- includes/widgets/lsow-heading-widget/css/style.scss +11 -11
- includes/widgets/lsow-heading-widget/lsow-heading-widget.php +50 -3
- includes/widgets/lsow-heading-widget/styles/default.less +12 -0
- includes/widgets/lsow-heading-widget/tpl/default.php +4 -1
- includes/widgets/lsow-hero-image-widget/css/style.css +4 -4
- includes/widgets/lsow-hero-image-widget/css/style.css.map +1 -1
- includes/widgets/lsow-hero-image-widget/css/style.scss +2 -2
- includes/widgets/lsow-hero-image-widget/lsow-hero-image-widget.php +37 -12
- includes/widgets/lsow-hero-image-widget/styles/default.less +8 -1
- includes/widgets/lsow-icon-list-widget/css/style.css +4 -4
- includes/widgets/lsow-icon-list-widget/css/style.css.map +1 -1
- includes/widgets/lsow-icon-list-widget/css/style.scss +2 -2
- includes/widgets/lsow-icon-list-widget/lsow-icon-list-widget.php +9 -2
- includes/widgets/lsow-icon-list-widget/tpl/default.php +3 -1
- includes/widgets/lsow-odometers-widget/lsow-odometers-widget.php +22 -3
- includes/widgets/lsow-odometers-widget/tpl/default.php +3 -4
- includes/widgets/lsow-piecharts-widget/lsow-piecharts-widget.php +23 -4
- includes/widgets/lsow-piecharts-widget/tpl/default.php +3 -4
- includes/widgets/lsow-portfolio-widget/js/portfolio.min.min.js +1 -0
- includes/widgets/lsow-portfolio-widget/lsow-portfolio-widget.php +229 -258
- includes/widgets/lsow-portfolio-widget/tpl/default.php +7 -8
- includes/widgets/lsow-posts-carousel-widget/css/style.css +21 -21
- includes/widgets/lsow-posts-carousel-widget/css/style.css.map +1 -1
- includes/widgets/lsow-posts-carousel-widget/css/style.scss +12 -11
- includes/widgets/lsow-posts-carousel-widget/lsow-posts-carousel-widget.php +229 -212
- includes/widgets/lsow-posts-carousel-widget/tpl/default.php +9 -5
- includes/widgets/lsow-pricing-table-widget/lsow-pricing-table-widget.php +29 -4
- includes/widgets/lsow-pricing-table-widget/tpl/default.php +3 -3
- includes/widgets/lsow-services-widget/css/style.css +78 -5
- includes/widgets/lsow-services-widget/css/style.css.map +1 -1
- includes/widgets/lsow-services-widget/css/style.scss +78 -3
- includes/widgets/lsow-services-widget/lsow-services-widget.php +101 -16
- includes/widgets/lsow-services-widget/styles/default.less +27 -0
- includes/widgets/lsow-services-widget/tpl/default.php +59 -14
- includes/widgets/lsow-stats-bar-widget/lsow-stats-bar-widget.php +2 -2
- includes/widgets/lsow-tabs-widget/css/style.css +20 -17
- includes/widgets/lsow-tabs-widget/css/style.css.map +1 -1
- includes/widgets/lsow-tabs-widget/css/style.scss +13 -10
- includes/widgets/lsow-tabs-widget/js/tabs.js +30 -21
- includes/widgets/lsow-tabs-widget/js/tabs.min.js +1 -1
- includes/widgets/lsow-tabs-widget/lsow-tabs-widget.php +132 -149
- includes/widgets/lsow-tabs-widget/tpl/default.php +63 -75
- includes/widgets/lsow-team-members-widget/css/style.css +6 -8
- includes/widgets/lsow-team-members-widget/css/style.css.map +1 -1
- includes/widgets/lsow-team-members-widget/css/style.scss +3 -5
- includes/widgets/lsow-team-members-widget/lsow-team-members-widget.php +48 -8
- includes/widgets/lsow-team-members-widget/tpl/default.php +9 -8
- includes/widgets/lsow-testimonials-slider-widget/lsow-testimonials-slider-widget.php +2 -2
- includes/widgets/lsow-testimonials-widget/lsow-testimonials-widget.php +30 -4
- includes/widgets/lsow-testimonials-widget/tpl/default.php +4 -4
- languages/livemesh-so-widgets-en_US.mo +0 -0
- languages/livemesh-so-widgets-en_US.po +505 -315
- languages/livemesh-so-widgets-he_IL.mo +0 -0
- languages/livemesh-so-widgets-he_IL.po +665 -360
- languages/livemesh-so-widgets.pot +506 -316
- livemesh-siteorigin-widgets.php +101 -0
- livemesh-so-widgets.php +0 -261
- plugin.php +219 -0
- readme.txt +20 -7
- sample-data.xml +0 -5126
admin/admin-init.php
CHANGED
@@ -20,13 +20,7 @@ class LSOW_Admin {
|
|
20 |
public function includes() {
|
21 |
|
22 |
// load class admin ajax function
|
23 |
-
require_once(LSOW_PLUGIN_DIR .
|
24 |
-
|
25 |
-
/**
|
26 |
-
* Classes responsible for displaying admin notices.
|
27 |
-
*/
|
28 |
-
require_once LSOW_PLUGIN_DIR . 'admin/notices/admin-notice.php';
|
29 |
-
require_once LSOW_PLUGIN_DIR . 'admin/notices/admin-notice-rate.php';
|
30 |
|
31 |
}
|
32 |
|
@@ -40,16 +34,6 @@ class LSOW_Admin {
|
|
40 |
|
41 |
add_action('current_screen', array($this, 'remove_admin_notices'));
|
42 |
|
43 |
-
|
44 |
-
/**
|
45 |
-
* Notice: Rate plugin
|
46 |
-
*/
|
47 |
-
$rate = new LSOW_Notice_Rate('rate', LSOW_PLUGIN_DIR . 'admin/notices/templates/rate.php');
|
48 |
-
|
49 |
-
add_action('load-plugins.php', array($rate, 'defer_first_time'));
|
50 |
-
add_action('admin_notices', array($rate, 'display_notice'));
|
51 |
-
add_action('admin_post_lsow_dismiss_notice', array($rate, 'dismiss_notice'));
|
52 |
-
|
53 |
}
|
54 |
|
55 |
public function remove_admin_notices($screen) {
|
@@ -107,16 +91,6 @@ class LSOW_Admin {
|
|
107 |
array($this, 'display_plugin_documentation')
|
108 |
);
|
109 |
|
110 |
-
// add global settings submenu page
|
111 |
-
add_submenu_page(
|
112 |
-
$this->plugin_slug,
|
113 |
-
'Upgrade to Pro Version',
|
114 |
-
__('Upgrade to Pro', 'livemesh-so-widgets'),
|
115 |
-
'manage_options',
|
116 |
-
$this->plugin_slug . '_pro_upgrade',
|
117 |
-
array($this, 'display_plugin_premium_upgrade')
|
118 |
-
);
|
119 |
-
|
120 |
}
|
121 |
|
122 |
public function display_settings_page() {
|
@@ -138,16 +112,6 @@ class LSOW_Admin {
|
|
138 |
|
139 |
}
|
140 |
|
141 |
-
public function display_plugin_premium_upgrade() {
|
142 |
-
|
143 |
-
|
144 |
-
require_once('views/admin-header.php');
|
145 |
-
require_once('views/admin-banner3.php');
|
146 |
-
require_once('views/premium-upgrade.php');
|
147 |
-
require_once('views/admin-footer.php');
|
148 |
-
|
149 |
-
}
|
150 |
-
|
151 |
public function enqueue_admin_scripts() {
|
152 |
|
153 |
// Use minified libraries if LSOW_SCRIPT_DEBUG is turned off
|
@@ -174,7 +138,7 @@ class LSOW_Admin {
|
|
174 |
wp_enqueue_style('lsow-admin-page-styles');
|
175 |
}
|
176 |
|
177 |
-
if (strpos($screen->id, $this->plugin_slug . '_documentation') !== false
|
178 |
|
179 |
// Load scripts and styles for documentation
|
180 |
wp_register_script('lsow-doc-scripts', LSOW_PLUGIN_URL . 'admin/assets/js/documentation' . $suffix . '.js', array(), LSOW_VERSION, true);
|
@@ -188,17 +152,6 @@ class LSOW_Admin {
|
|
188 |
|
189 |
}
|
190 |
|
191 |
-
if (strpos($screen->id, $this->plugin_slug . '_pro_upgrade') !== false) {
|
192 |
-
|
193 |
-
// Load scripts and styles for premium upgrade
|
194 |
-
wp_register_script('lsow-pro-upgrade-scripts', LSOW_PLUGIN_URL . 'admin/assets/js/premium-upgrade' . $suffix . '.js', array(), LSOW_VERSION, true);
|
195 |
-
wp_enqueue_script('lsow-pro-upgrade-scripts');
|
196 |
-
|
197 |
-
wp_register_style('lsow-pro-upgrade-styles', LSOW_PLUGIN_URL . 'admin/assets/css/premium-upgrade.css', array(), LSOW_VERSION);
|
198 |
-
wp_enqueue_style('lsow-pro-upgrade-styles');
|
199 |
-
|
200 |
-
}
|
201 |
-
|
202 |
}
|
203 |
|
204 |
}
|
20 |
public function includes() {
|
21 |
|
22 |
// load class admin ajax function
|
23 |
+
require_once(LSOW_PLUGIN_DIR . '/admin/admin-ajax.php');
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
}
|
26 |
|
34 |
|
35 |
add_action('current_screen', array($this, 'remove_admin_notices'));
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
}
|
38 |
|
39 |
public function remove_admin_notices($screen) {
|
91 |
array($this, 'display_plugin_documentation')
|
92 |
);
|
93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
|
96 |
public function display_settings_page() {
|
112 |
|
113 |
}
|
114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
public function enqueue_admin_scripts() {
|
116 |
|
117 |
// Use minified libraries if LSOW_SCRIPT_DEBUG is turned off
|
138 |
wp_enqueue_style('lsow-admin-page-styles');
|
139 |
}
|
140 |
|
141 |
+
if (strpos($screen->id, $this->plugin_slug . '_documentation') !== false) {
|
142 |
|
143 |
// Load scripts and styles for documentation
|
144 |
wp_register_script('lsow-doc-scripts', LSOW_PLUGIN_URL . 'admin/assets/js/documentation' . $suffix . '.js', array(), LSOW_VERSION, true);
|
152 |
|
153 |
}
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
}
|
156 |
|
157 |
}
|
admin/assets/css/lsow-admin-page.css
CHANGED
@@ -1,13 +1,4 @@
|
|
1 |
/* ================= Wrapper DIVs ============================== */
|
2 |
-
.wrap > *,
|
3 |
-
#wpbody-content > * {
|
4 |
-
display: none; }
|
5 |
-
|
6 |
-
#wpbody-content > .wrap,
|
7 |
-
.wrap > form {
|
8 |
-
display: block;
|
9 |
-
overflow: hidden; }
|
10 |
-
|
11 |
#wpbody-content .lsow-wrap {
|
12 |
position: relative;
|
13 |
display: block;
|
1 |
/* ================= Wrapper DIVs ============================== */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
#wpbody-content .lsow-wrap {
|
3 |
position: relative;
|
4 |
display: block;
|
admin/assets/css/lsow-admin-page.css.map
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["lsow-admin-page.scss"],"names":[],"mappings":"
|
1 |
+
{"version":3,"sources":["lsow-admin-page.scss"],"names":[],"mappings":"AAMA,mEAAmE;AAEnE;EACE,mBAAkB;EAClB,eAAc;EACd,oBAAmB,EAAA;;AAGrB;EACE,aAAY,EAAA;;AAEd;EACE,kBAAiB,EAAA;;AAEnB;EACE,mBAAkB,EAAA;;AAGpB,oDAAoD;AAEpD;EACE,mBAAkB;EAClB,eAAc;EACd,WAAU;EACV,yBAAwB;EACxB,iBAAgB;EAChB,kBAAiB;EACjB,gCAAuB;UAAvB,wBAAuB,EAAA;;AAEzB;EACE,mBAAkB;EAClB,eAAc;EACd,OAAM;EACN,YAAW;EACX,WAAU;EACV,UAAS;EACT,iBAAgB;EAChB,iBAAgB;EAChB,kBAAiB;EACjB,oBAAmB;EACnB,mDAAsC;UAAtC,2CAAsC,EAAA;;AAExC;EACE,iBAAgB;EAChB,UAAS;EACT,WAAU;EACV,kBAAiB;EACjB,oBAAmB;EACnB,YAAW;EACX,eAAc;EACd,iBAAgB;EAChB,gBAAe,EAAA;;AAEjB;EACE,mBAAkB;EAClB,sBAAqB;EACrB,aAAY;EACZ,gBAAe;EACf,mBAAkB;EAClB,iBAAgB;EAChB,0BAAyB;EACzB,aAAY;EACZ,oBAAmB;EACnB,YAAW;EACX,mBAAkB;EAClB,iDAAgD;EAChD,qBAAoB;EACpB,6BAA4B;EAC5B,6BAA4B;EAC5B,qBAAoB,EAAA;;AAEtB;EACE,gBAAe;EACf,UAAS;EACT,aAAY,EAAA;;AAGd,qEAAqE;AAErE;EACE,mBAAkB;EAClB,iBAAgB;EAChB,6BAA4B;EAC5B,iCAAgC;EAChC,0BAAyB;EACzB,0BAAyB;EACzB,oBAAmB;EACnB,gBAAe;EACf,yBAAwB;EACxB,aAAY;EACZ,sBAAqB;EACrB,iDAAgD;EAIhD,yCAAwC,EAAA;;AAE1C;EACE,sBAAqB;EACrB,uBAAsB;EACtB,WAAU,EAAA;;AAEZ;EACE,WAAU,EAAA;;AAGZ;;EAEE,oBAAmB,EAAA;;AAErB;EACE,sBAAqB;EACrB,sBAAqB;EACrB,kBAAiB,EAAA;;AAEnB;EACE,8BAA6B,EAAA;;AAG/B;;EAEE,oBAAmB,EAAA;;AAErB;EACE,mBAAkB;EAClB,gBAAe;EACf,kBAAiB;EACjB,qBAAoB,EAAA;;AAEtB;EACE,iDAAgD;EAEhD,yCAAwC,EAAA;;AAE1C;EACE;IAAK,4CAAyC,EAAA;EAC9C;IAAK,WAAU;IAAC,2CAAwC,EAAA;EACxD;IAAK,WAAU,EAAA,EAAA;AAOjB;EACE;IAAK,4CAAiC;YAAjC,oCAAiC,EAAA;EACtC;IAAK,WAAU;IAAC,2CAAgC;YAAhC,mCAAgC,EAAA;EAChD;IAAK,WAAU,EAAA,EAAA;AAGjB,2DAA2D;AAE3D;EACE,gBAAe;EACf,eAAc;EACd,OAAM;EACN,UAAS;EACT,QAAO;EACP,SAAQ;EACR,WAAU;EACV,mBAAkB;EAClB,sCAAqC;EAIrC,8BAA6B,EAAA;;AAE/B;EACE,WAAU;EACV,oBAAmB,EAAA;;AAErB;EACE,mBAAkB;EAClB,OAAM;EACN,UAAS;EACT,QAAO;EACP,SAAQ;EACR,oBAAmB;EACnB,cAAa,EAAA;;AAEf;EACE,mBAAkB;EAClB,eAAc;EACd,SAAQ;EACR,YAAW;EACX,WAAU;EACV,eAAc;EACd,eAAc;EACd,mBAAkB;EAClB,oCAAmC;EAInC,4BAA2B,EAAA;;AAE7B;EACE,mBAAkB;EAClB,sBAAqB;EACrB,iBAAgB;EAChB,mBAAkB;EAClB,oBAAmB;EACnB,mBAAkB;EAClB,kBAAiB;EACjB,gBAAe;EACf,iBAAgB;EAChB,eAAc;EACd,+BAA8B;EAE9B,uBAAsB;EACtB,gDAA4C;EAE5C,wCAAoC;EACpC,qCAAoC;EAIpC,6BAA4B;EAC5B,sCAAqC;EAIrC,8BAA6B,EAAA;;AAE/B;EACE,iCAAgC;EAIhC,yBAAwB,EAAA;;AAE1B;EACE,mBAAkB;EAClB,sBAAqB;EACrB,gBAAe;EACf,gBAAe;EACf,0BAAyB,EAAA;;AAE3B;EACE,yBAAwB,EAAA;;AAE1B;EACE,gBAAe;EACf,mBAAkB,EAAA;;AAEpB;EACE,eAAc,EAAA;;AAEhB;EACE,eAAc,EAAA;;AAEhB;EACE,eAAc,EAAA;;AAEhB;EACE,eAAc;EACd,gBAAe;EACf,iBAAgB,EAAA;;AAGlB;EACE,6BAA4B;EAC5B,mCAAkC;EAClC,4CAA2C;EAC3C,0CAAyC;EACzC,0BAAyB;EACzB,gCAA+B;EAC/B,yCAAwC;EACxC,uCAAsC;EACtC,yBAAwB;EACxB,+BAA8B;EAC9B,wCAAuC;EACvC,sCAAqC;EACrC,qBAAoB;EACpB,2BAA0B;EAC1B,oCAAmC;EACnC,kCAAiC,EAAA;;AAEnC;EACE,iBAAgB;EAChB,mBAAkB;EAClB,eAAc;EACd,mBAAkB;EAClB,aAAY;EACZ,YAAW;EACX,UAAS;EACT,WAAU,EAAA;AAUZ;EACE;IAAO,gCAA+B,EAAA;EACtC;IAAK,kCAAiC,EAAA,EAAA;AAExC;EACE;IACE,gCAAsB;YAAtB,wBAAsB,EAAA;EAExB;IACE,kCAAwB;YAAxB,0BAAwB,EAAA,EAAA;AAK5B,8DAA8D;AAG9D;EACE,kBAAiB,EAAA;;AAEnB;EACE,UAAS,EAAA;;AAEX;EACE,oBAAmB,EAAA;;AAErB;EACE,eAAc,EAAA;;AAEhB;EACE,oBAAmB;EACnB,oBAAmB;EACnB,iBAAgB;EAChB,oBAAmB,EAAA;;AAErB;EACE,iCAAgC,EAAA;;AAElC;EACE,UAAS;EACT,wCAAuC;EACvC,gBAAe;EACf,iBAAgB;EAChB,0BAAyB;EACzB,oBAAmB;EACnB,oBAAmB,EAAA;;AAErB;EACE,wCAAuC;EACvC,gBAAe,EAAA;;AAEjB;EACE,oBAAmB;EACnB,uBAAsB;EACtB,uCAAsC;EACtC,oBAAmB;EACnB,YAAW;EACX,iBAAgB,EAAA;;AAElB;EACE,8BAA6B,EAAA;;AAE/B;EACE,+BAA8B,EAAA;;AAEhC;EACE,YAAW;EACX,mBAAkB;EAClB,iBAAgB,EAAA;;AAElB;EACE,2BAA0B;EAC1B,4BAA2B;EAC3B,gBAAe;EACf,kBAAiB,EAAA;;AAEnB;EACE,oBAAmB,EAAA;;AAErB;EACE,mBAAkB;EAClB,sBAAqB;EACrB,SAAQ;EACR,gCAAuB;UAAvB,wBAAuB,EAAA;;AAEzB;EACE,SAAQ,EAAA;;AAEV;EACE,gBAAe;EACf,kBAAiB;EACjB,iBAAgB,EAAA;;AAIhB;EACE,oBAAmB;EACnB,wBAAuB,EAAA;AAEzB;EACE,sBAAqB;EACrB,YAAW;EACX,iBAAgB;EAChB,mBAAkB,EAAA;AAGpB;EACE,YAAW,EAAA;AAGb;EACE,oBAAmB;EACnB,8BAA6B,EAAA","file":"lsow-admin-page.css"}
|
admin/assets/css/lsow-admin-page.scss
CHANGED
@@ -1,22 +1,11 @@
|
|
1 |
@import "bourbon";
|
2 |
@import "neat";
|
3 |
|
4 |
-
|
5 |
@import "../../../assets/css/lsow-lib";
|
6 |
|
7 |
|
8 |
/* ================= Wrapper DIVs ============================== */
|
9 |
|
10 |
-
|
11 |
-
.wrap > *,
|
12 |
-
#wpbody-content > * {
|
13 |
-
display: none;
|
14 |
-
}
|
15 |
-
#wpbody-content >.wrap,
|
16 |
-
.wrap > form {
|
17 |
-
display: block;
|
18 |
-
overflow: hidden;
|
19 |
-
}
|
20 |
#wpbody-content .lsow-wrap {
|
21 |
position: relative;
|
22 |
display: block;
|
1 |
@import "bourbon";
|
2 |
@import "neat";
|
3 |
|
|
|
4 |
@import "../../../assets/css/lsow-lib";
|
5 |
|
6 |
|
7 |
/* ================= Wrapper DIVs ============================== */
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
#wpbody-content .lsow-wrap {
|
10 |
position: relative;
|
11 |
display: block;
|
admin/assets/css/lsow-admin.css
CHANGED
@@ -98,8 +98,8 @@ label.lsow-inline {
|
|
98 |
border-top-right-radius: 4px;
|
99 |
border-bottom-width: 0;
|
100 |
white-space: nowrap;
|
101 |
-
-webkit-transition: all .4s ease-in-out
|
102 |
-
transition: all .4s ease-in-out
|
103 |
|
104 |
.lsow-menu-options .lsow-tab {
|
105 |
padding: 15px;
|
@@ -319,4 +319,10 @@ input.lsow-checkbox:checked + label:after {
|
|
319 |
-webkit-box-sizing: content-box;
|
320 |
box-sizing: content-box; }
|
321 |
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
/*# sourceMappingURL=lsow-admin.css.map */
|
98 |
border-top-right-radius: 4px;
|
99 |
border-bottom-width: 0;
|
100 |
white-space: nowrap;
|
101 |
+
-webkit-transition: all 0.4s ease-in-out;
|
102 |
+
transition: all 0.4s ease-in-out; }
|
103 |
|
104 |
.lsow-menu-options .lsow-tab {
|
105 |
padding: 15px;
|
319 |
-webkit-box-sizing: content-box;
|
320 |
box-sizing: content-box; }
|
321 |
|
322 |
+
.wrap.lsow-license-wrap form.lsow-license-box {
|
323 |
+
max-width: 700px;
|
324 |
+
background: white;
|
325 |
+
margin: 20px 0;
|
326 |
+
padding: 20px 30px; }
|
327 |
+
|
328 |
/*# sourceMappingURL=lsow-admin.css.map */
|
admin/assets/css/lsow-admin.css.map
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["lsow-admin.scss","../../../assets/css/_lsow-lib.scss"],"names":[],"mappings":"
|
1 |
+
{"version":3,"sources":["lsow-admin.scss","../../../assets/css/_lsow-lib.scss"],"names":[],"mappings":"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","file":"lsow-admin.css"}
|
admin/assets/css/lsow-admin.scss
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
@import "bourbon";
|
2 |
@import "neat";
|
3 |
|
4 |
-
|
5 |
@import "../../../assets/css/lsow-lib";
|
6 |
|
7 |
|
@@ -110,7 +109,7 @@ label.lsow-inline {
|
|
110 |
border-top-right-radius: 4px;
|
111 |
border-bottom-width: 0;
|
112 |
white-space: nowrap;
|
113 |
-
transition: all .4s ease-in-out
|
114 |
}
|
115 |
.lsow-menu-options .lsow-tab {
|
116 |
padding: 15px;
|
@@ -356,3 +355,9 @@ input.lsow-checkbox:checked + label:after {
|
|
356 |
box-sizing: content-box;
|
357 |
}
|
358 |
|
|
|
|
|
|
|
|
|
|
|
|
1 |
@import "bourbon";
|
2 |
@import "neat";
|
3 |
|
|
|
4 |
@import "../../../assets/css/lsow-lib";
|
5 |
|
6 |
|
109 |
border-top-right-radius: 4px;
|
110 |
border-bottom-width: 0;
|
111 |
white-space: nowrap;
|
112 |
+
transition: all 0.4s ease-in-out;
|
113 |
}
|
114 |
.lsow-menu-options .lsow-tab {
|
115 |
padding: 15px;
|
355 |
box-sizing: content-box;
|
356 |
}
|
357 |
|
358 |
+
.wrap.lsow-license-wrap form.lsow-license-box {
|
359 |
+
max-width: 700px;
|
360 |
+
background: white;
|
361 |
+
margin: 20px 0;
|
362 |
+
padding: 20px 30px;
|
363 |
+
}
|
admin/assets/js/documentation.js
CHANGED
@@ -40,58 +40,4 @@ jQuery(document).ready(function ($) {
|
|
40 |
$( this ).attr( "href", imgUrl );
|
41 |
} );
|
42 |
|
43 |
-
// Sticky sidebar for upgrade to pro window
|
44 |
-
$(window).on("resize load", function () {
|
45 |
-
var current_width = $(window).width();
|
46 |
-
|
47 |
-
// Above tablet size
|
48 |
-
if (current_width > 768) {
|
49 |
-
|
50 |
-
// Calculate the offset due to padding on the sidebar
|
51 |
-
var paddingTop = $("#panel").css("padding-top");
|
52 |
-
|
53 |
-
var paddingTopInteger = parseInt(paddingTop, 10);
|
54 |
-
|
55 |
-
// While we're scrolling let's do this stuff
|
56 |
-
$(window).scroll(function () {
|
57 |
-
|
58 |
-
// Get current height of sticky sidebar
|
59 |
-
var height = $(".panel-right .panel-inner").height();
|
60 |
-
|
61 |
-
// Get desired width of sticky sidebar from the parent of sticky sidebar
|
62 |
-
var width = $(".panel-right").width();
|
63 |
-
|
64 |
-
// Get height of viewport
|
65 |
-
viewportHeight = $(window).height();
|
66 |
-
|
67 |
-
// Get amount already scolled
|
68 |
-
var scroll = $(this).scrollTop();
|
69 |
-
|
70 |
-
if (scroll < $("#panel").offset().top) {
|
71 |
-
// If amount scolled from top is less than the position of panel (sidebar container) relative to document
|
72 |
-
$(".panel-right .panel-inner").css({
|
73 |
-
'position': 'absolute',
|
74 |
-
'top': '0',
|
75 |
-
'width': '100%'
|
76 |
-
});
|
77 |
-
|
78 |
-
} else if (height > viewportHeight || $(window).width() <= 768 ) {
|
79 |
-
// If the sidebar is taller than the viewport, don't stick the sidebar or remove stickiness if already stuck
|
80 |
-
$(".panel-right .panel-inner").css({
|
81 |
-
'position': 'relative',
|
82 |
-
'width': '100%',
|
83 |
-
'top': 'initial'
|
84 |
-
});
|
85 |
-
} else {
|
86 |
-
// Make the sidebar fixed while scrolling, if scroll position is past the panel containing sidebar
|
87 |
-
$(".panel-right .panel-inner").css({
|
88 |
-
'position': 'fixed',
|
89 |
-
'top': paddingTopInteger,
|
90 |
-
'width': width + 'px'
|
91 |
-
});
|
92 |
-
}
|
93 |
-
});
|
94 |
-
}
|
95 |
-
});
|
96 |
-
|
97 |
});
|
40 |
$( this ).attr( "href", imgUrl );
|
41 |
} );
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
});
|
admin/assets/js/documentation.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(
|
1 |
+
jQuery(document).ready(function(t){t(".inline-list").each(function(){t(this).find("li").each(function(a){t(this).click(function(){return t(this).addClass("current").siblings().removeClass("current").parents("#wpbody").find("div.panel-left").removeClass("visible").end().find("div.panel-left:eq("+a+")").addClass("visible"),!1})})}),t(".anchor-nav a, .toc a").click(function(a){a.preventDefault();var e=t(this).attr("href");t("html, body").animate({scrollTop:t(e).offset().top-50},"slow","swing")}),t(".livemesh-doc .panel-left h3").append(t("<a class='back-to-top' href='#panel'><span class='dashicons dashicons-arrow-up-alt2'></span> Back to top</a>")),t("a[href*='cl.ly']:not(.direct-link)").each(function(){t(this).addClass("thickbox");var a=t(this).attr("href")+"?TB_iframe=true&width=1200&height=700";t(this).attr("href",a)})});
|
admin/views/admin-banner3.php
DELETED
@@ -1,16 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Exit if accessed directly
|
4 |
-
if (!defined('ABSPATH')) {
|
5 |
-
exit;
|
6 |
-
}
|
7 |
-
|
8 |
-
?>
|
9 |
-
|
10 |
-
<div id="lsow-banner-wrap">
|
11 |
-
|
12 |
-
<div id="lsow-banner" class="lsow-banner-sticky">
|
13 |
-
<h2><span><?php echo __('Livemesh SiteOrigin Widgets', 'livemesh-so-widgets'); ?></span><?php echo __('Premium Upgrade', 'livemesh-so-widgets') ?></h2>
|
14 |
-
</div>
|
15 |
-
|
16 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/views/documentation.php
CHANGED
@@ -78,7 +78,7 @@ else {
|
|
78 |
<li><a href="#testimonials-widgets">Testimonials Widgets</a></li>
|
79 |
<li><a href="#posts-carousel">Posts Carousel</a></li>
|
80 |
<li><a href="#carousel-widget">Carousel Widget</a></li>
|
81 |
-
<li><a href="#grid-widget">
|
82 |
<li><a href="#clients-widget">Clients</a></li>
|
83 |
<li><a href="#pricing-table">Pricing Table</a></li>
|
84 |
<li><a href="#button-widget">Buttons</a></li>
|
@@ -102,6 +102,9 @@ else {
|
|
102 |
Widgets
|
103 |
Bundle</a>.
|
104 |
</li>
|
|
|
|
|
|
|
105 |
<li>Unzip the downloaded livemesh-siteorigin-widgets-pro.zip file and upload to the <code>/wp-content/plugins/</code>
|
106 |
directory or upload the plugin zip with the help of Plugins→Installed Plugins→Add New button.<br>
|
107 |
Activate the plugin through the 'Plugins' menu in WordPress. If you are viewing this help page
|
@@ -124,14 +127,14 @@ else {
|
|
124 |
SiteOrigin</a>. To get most of this plugin, we highly recommend you install the page
|
125 |
builder.
|
126 |
</li>
|
127 |
-
<li>If you plan to build a portfolio site and plan to use
|
128 |
and activate the optional plugin <a
|
129 |
href="https://wordpress.org/plugins/portfolio-post-type/" rel="nofollow" target="_blank">Portfolio
|
130 |
Post Type</a>.
|
131 |
-
The portfolio examples of
|
132 |
this plugin.
|
133 |
</li>
|
134 |
-
<li>Optionally, if you have <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin installed, you can import the sample data
|
135 |
that replicates the demo site for you by importing the
|
136 |
file sample-data.xml file located in the plugin directory. The import option is available under
|
137 |
<strong> <a href="<?php echo admin_url() . 'import.php'; ?>"
|
@@ -147,7 +150,7 @@ else {
|
|
147 |
<p>Below is a list of recommended plugins to install that will help you get the most out of this plugin.
|
148 |
Although many of these plugins are optional, we recommend that you install these popular plugins if
|
149 |
you plan to install the demo data and get most out of this plugin. The demo site and the sample data
|
150 |
-
provided with the <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin utilizes all of these plugins including the
|
151 |
SiteOrigin Page Builder and the Portfolio Post type plugin.</p>
|
152 |
<p>These plugins are also listed in the Plugins tab of this help file under Livemesh Widgets →
|
153 |
Documentation, and you can install the plugins directly from there.</p>
|
@@ -179,7 +182,7 @@ else {
|
|
179 |
<hr>
|
180 |
<h3 id="demo-data">Installing Demo Data<a class="back-to-top" href="#panel"><span
|
181 |
class="dashicons dashicons-arrow-up-alt2"></span> Back to top</a></h3>
|
182 |
-
<p>If you have <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin installed, you can install the demo data to replicate the
|
183 |
plugin demo site to get a head start on building your site. Installing demo data reduces the
|
184 |
learning curve associated with trying out the powerful widgets part of this plugin.</p>
|
185 |
<p>The sample data imports the pages part of the demo site. Once you are done with playing around the
|
@@ -298,7 +301,7 @@ else {
|
|
298 |
allow you to input a subtitle which is usually displayed on top of the main heading title.</p>
|
299 |
<p>You can choose to align the heading left, right or center with center being the default
|
300 |
alignment.</p>
|
301 |
-
<p>The <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin allows selection of a custom font for the heading title. You may
|
302 |
choose one of 500+ custom fonts hosted in the Google Fonts library. By default, the heading font
|
303 |
used by the theme is used for main heading title.</p>
|
304 |
|
@@ -311,7 +314,7 @@ else {
|
|
311 |
<p>Many agencies, freelancers, corporates, products/apps require capturing the services provided by the
|
312 |
agency or the features of a product. The services widget is designed to help users capture these
|
313 |
services or features in a multi-column grid.</p>
|
314 |
-
<p>The widget supports about 3 different styles (with 2 additional styles in <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the
|
315 |
plugin) and each of these styles can be customized further by choosing the type of icon desired to
|
316 |
represent the service – a font icon or an custom image icon. While the choice of font icons is huge
|
317 |
in number and perhaps sufficient for most common services, the icon images can help present the
|
@@ -319,7 +322,7 @@ else {
|
|
319 |
<p>Each of the service requires you to input a title for the service/feature and a short description of
|
320 |
the service offered or the product feature. Additionally, each service allows you to enter a font
|
321 |
icon or an icon image file to represent that service.</p>
|
322 |
-
<p>The <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin allows you specify a custom font size, font color and and hover
|
323 |
color for the font icon along with providing two additional styles of services/features.</p>
|
324 |
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/services-widget-edit.png" alt="Services Widget Edit Window"></p>
|
325 |
|
@@ -341,7 +344,7 @@ else {
|
|
341 |
<p>This widget provides an easy way to capture the team members of your organization or an agency. The
|
342 |
details captured include team member name, position, a short description and the email plus social
|
343 |
profile of the individual team members.</p>
|
344 |
-
<p>Two different styles are provided with more styles planned in the <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin. Most
|
345 |
of the styles display the team members in a multi-column grid. The option to specify the number of
|
346 |
columns is provided that helps to control the number of team members displayed per row of the team
|
347 |
members.</p>
|
@@ -352,7 +355,7 @@ else {
|
|
352 |
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/statsbars-piecharts.png" alt="Statistics Widgets"></p>
|
353 |
|
354 |
<p>The plugin features a number of widgets that help display statistical information in the form of
|
355 |
-
odometers, piecharts and stats bars. The <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin also includes a countdown
|
356 |
widget that displays a countdown timer for planned events such as product launches or website going
|
357 |
live.</p>
|
358 |
<p>Most of these widgets are designed to animate the display of the statistical information or numbers
|
@@ -458,7 +461,7 @@ else {
|
|
458 |
<li><strong>Posts Per Page</strong> – Set the number of posts you wish you display in the widget. If
|
459 |
the widget does not support pagination, the number of posts chosen by the limited by the number
|
460 |
specified here. This is also the number of posts to display per page when the widget supports
|
461 |
-
pagination as is the case with
|
462 |
all the selected posts.
|
463 |
</li>
|
464 |
<li><strong>Sticky Posts</strong> – Tell the widget to ignore, exclude or include the sticky posts.
|
@@ -544,26 +547,26 @@ else {
|
|
544 |
for carousel, number of columns or items to display before making the user to scroll for additional
|
545 |
items etc. The carousel settings are explained in the help section above for Posts Carousel.</p>
|
546 |
<hr>
|
547 |
-
<h3 id="grid-widget">
|
548 |
-
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid.jpg" alt="
|
549 |
|
550 |
<p>Perhaps the most popular and most important of all widgets part of all widgets part of this plugin,
|
551 |
-
|
552 |
are filterable by taxonomy terms.</p>
|
553 |
|
554 |
-
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid2.jpg" alt="
|
555 |
<p>Using the Grid widget, you can construct a portfolio of your work/services/products. We recommend you
|
556 |
use the popular plugin – <a title="Portfolio Post Type Plugin"
|
557 |
href="https://wordpress.org/plugins/portfolio-post-type/">https://wordpress.org/plugins/portfolio-post-type/</a>
|
558 |
for building a collection of portfolio entries. Once the portfolio entries are in place, make sure
|
559 |
you select Portfolio Post type under Post Type entry in Build Tools window as explained below.</p>
|
560 |
|
561 |
-
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid-pagination.jpg" alt="
|
562 |
-
<p>The <a href="https://www.livemeshthemes.com/siteorigin-widgets/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin has support for pagination, lazy load with load more button and
|
563 |
lightbox option for images. The additional posts are loaded via AJAX when the user navigates through
|
564 |
the pages populated or when the user hits the Load More button.</p>
|
565 |
|
566 |
-
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid-loadmore.jpg" alt="
|
567 |
|
568 |
<p>The widget features a Posts Query window to help choose posts or custom posts to display. This
|
569 |
powerful tool has number of fields to control what gets displayed and in what order with an
|
@@ -598,7 +601,7 @@ else {
|
|
598 |
<li><strong>Posts Per Page</strong> – Set the number of posts you wish you display in the widget. If
|
599 |
the widget does not support pagination, the number of posts chosen by the limited by the number
|
600 |
specified here. <strong>This is also the number of posts to display per page when the
|
601 |
-
widget supports pagination as is the case with
|
602 |
value zero makes the widget all the selected posts.
|
603 |
</li>
|
604 |
<li><strong>Sticky Posts</strong> – Tell the widget to ignore, exclude or include the sticky posts.
|
@@ -609,7 +612,7 @@ else {
|
|
609 |
specified in the above fields.
|
610 |
</li>
|
611 |
</ol>
|
612 |
-
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid-edit1.jpg" alt="
|
613 |
|
614 |
<p>The grid widget has numerous other options to control the display of posts or custom post types. Some
|
615 |
of these are –</p>
|
@@ -1273,71 +1276,119 @@ else {
|
|
1273 |
|
1274 |
<!-- Updates panel -->
|
1275 |
<div id="updates-panel" class="panel-left">
|
1276 |
-
|
|
|
|
|
|
|
1277 |
<ul>
|
1278 |
-
<li>Fixed
|
1279 |
-
<li>Updated – The waypoints script to 4.x version.</li>
|
1280 |
</ul>
|
1281 |
-
<h3>
|
1282 |
<ul>
|
1283 |
-
<li>
|
1284 |
-
<li>Fixed - The piechart value is not being rounded.</li>
|
1285 |
-
<li>Fixed - The post grid and posts carousel date format not reflecting the user preference specified in Settings page.</li>
|
1286 |
</ul>
|
1287 |
-
<h3>1.
|
1288 |
<ul>
|
1289 |
-
<li>
|
|
|
|
|
1290 |
</ul>
|
1291 |
-
<h3>
|
1292 |
<ul>
|
1293 |
-
<li>Fixed –
|
1294 |
-
<li>Fixed -
|
1295 |
-
<li>Fixed -
|
1296 |
</ul>
|
1297 |
-
<h3>
|
1298 |
<ul>
|
1299 |
-
<li>
|
1300 |
-
<li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1301 |
</ul>
|
1302 |
-
<h3>1.
|
1303 |
<ul>
|
1304 |
-
<li>
|
|
|
1305 |
</ul>
|
1306 |
-
<h3>1.
|
1307 |
<ul>
|
1308 |
-
<li>Fixed –
|
1309 |
-
<li>Fixed –
|
1310 |
-
<li>Fixed –
|
1311 |
-
<li>
|
1312 |
-
<li>
|
|
|
1313 |
</ul>
|
1314 |
-
|
1315 |
-
<h4>1.5.3</h4>
|
1316 |
-
|
1317 |
<ul>
|
1318 |
-
<li>Fixed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1319 |
</ul>
|
1320 |
|
1321 |
-
<
|
1322 |
-
|
1323 |
<ul>
|
1324 |
-
<li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1325 |
</ul>
|
1326 |
|
1327 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1328 |
|
|
|
1329 |
<ul>
|
1330 |
-
<li>Added -
|
1331 |
-
<li>Added -
|
1332 |
-
<li>Added -
|
1333 |
-
<li>
|
1334 |
-
<li>Added - Display information for post carousel items from multiple taxonomies</li>
|
1335 |
-
<li>Fixed - The client images would show up misaligned and with additional padding in certain sites</li>
|
1336 |
-
<li>Tweak - Parsing the query arguments for chosen taxonomy terms</li>
|
1337 |
-
<li>Added - A new demo site with preview pages for all widgets and digital ecommerce-store for easy purchase management. Moved from Gumroad to Easy Digital Downloads based purchases.</li>
|
1338 |
</ul>
|
1339 |
|
1340 |
-
<h4>1.5.
|
1341 |
|
1342 |
<ul>
|
1343 |
<li>Fixed - The gutter or spacing between posts carousel items not taking effect with latest update of page builder</li>
|
@@ -1346,22 +1397,30 @@ else {
|
|
1346 |
<li>Tweak - Moved to the_excerpt() from get_the_excerpt() in posts carousel and livemesh grid widgets</li>
|
1347 |
</ul>
|
1348 |
|
1349 |
-
<h4>1.
|
1350 |
|
1351 |
<ul>
|
1352 |
<li>Fixed - The top and bottom padding attributes for rows were not taking effect with 2.5.x version of page builder</li>
|
1353 |
<li>Updated - The top and bottom padding attributes for rows deprecated. Pls use native padding settings of page builder which now provides more fine grained padding controls.</li>
|
1354 |
<li>Updated - We have moved; all URLs now point to our new site https://www.livemeshthemes.com</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
<li>Added - Hebrew translation files - thanks Ahrale!</li>
|
1356 |
</ul>
|
1357 |
|
1358 |
<h4>1.4.8</h4>
|
1359 |
|
1360 |
<ul>
|
|
|
1361 |
<li>Fixed - The grid filter hidden behind the grid items when number filters get big</li>
|
1362 |
-
<li>Fixed -
|
1363 |
-
<li>Updated -
|
1364 |
-
<li>Updated - Updated isotope and images loaded plugin scripts</li>
|
1365 |
</ul>
|
1366 |
|
1367 |
<h4>1.4.7</h4>
|
@@ -1374,9 +1433,11 @@ else {
|
|
1374 |
<h4>1.4.6</h4>
|
1375 |
|
1376 |
<ul>
|
|
|
|
|
|
|
1377 |
<li>Fixed - Translation of published date on the grid.</li>
|
1378 |
<li>Fixed - Shortcodes not being processed in hero header widget.</li>
|
1379 |
-
<li>Updated - Documentation for the widgets.</li>
|
1380 |
</ul>
|
1381 |
|
1382 |
<h4>1.4.5</h4>
|
@@ -1389,6 +1450,7 @@ else {
|
|
1389 |
|
1390 |
<ul>
|
1391 |
<li>Fixed - Admin notices were being removed due to a missing conditonal statement.</li>
|
|
|
1392 |
</ul>
|
1393 |
|
1394 |
<h4>1.4.3</h4>
|
@@ -1401,7 +1463,6 @@ else {
|
|
1401 |
|
1402 |
<ul>
|
1403 |
<li>Added - Compatibility with WordPress 4.6.</li>
|
1404 |
-
<li>Added - Additional information regarding PRO version.</li>
|
1405 |
</ul>
|
1406 |
|
1407 |
<h4>1.4.1</h4>
|
@@ -1414,6 +1475,12 @@ else {
|
|
1414 |
<h4>1.4</h4>
|
1415 |
|
1416 |
<ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
1417 |
<li>Added - Detailed documentation for all widgets</li>
|
1418 |
<li>Added - Plugin options window for enabling all widgets in one go along with other options.</li>
|
1419 |
<li>Added - Support for lightweight Portfolio Post Type plugin. Jetpack custom post types module no longer recommended.</li>
|
@@ -1465,21 +1532,48 @@ else {
|
|
1465 |
|
1466 |
<div class="panel-inner">
|
1467 |
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
<
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1483 |
|
1484 |
</div><!-- .panel-inner -->
|
1485 |
</div><!-- .panel-right -->
|
78 |
<li><a href="#testimonials-widgets">Testimonials Widgets</a></li>
|
79 |
<li><a href="#posts-carousel">Posts Carousel</a></li>
|
80 |
<li><a href="#carousel-widget">Carousel Widget</a></li>
|
81 |
+
<li><a href="#grid-widget">Posts Grid</a></li>
|
82 |
<li><a href="#clients-widget">Clients</a></li>
|
83 |
<li><a href="#pricing-table">Pricing Table</a></li>
|
84 |
<li><a href="#button-widget">Buttons</a></li>
|
102 |
Widgets
|
103 |
Bundle</a>.
|
104 |
</li>
|
105 |
+
<li><strong>Make sure you deactivate the free plugin</strong> <a href="https://wordpress.org/plugins/livemesh-siteorigin-widgets/" rel="nofollow">Livemesh SiteOrigin
|
106 |
+
Widgets</a> upon installing the premium version.
|
107 |
+
</li>
|
108 |
<li>Unzip the downloaded livemesh-siteorigin-widgets-pro.zip file and upload to the <code>/wp-content/plugins/</code>
|
109 |
directory or upload the plugin zip with the help of Plugins→Installed Plugins→Add New button.<br>
|
110 |
Activate the plugin through the 'Plugins' menu in WordPress. If you are viewing this help page
|
127 |
SiteOrigin</a>. To get most of this plugin, we highly recommend you install the page
|
128 |
builder.
|
129 |
</li>
|
130 |
+
<li>If you plan to build a portfolio site and plan to use Posts Grid widget for the same, install
|
131 |
and activate the optional plugin <a
|
132 |
href="https://wordpress.org/plugins/portfolio-post-type/" rel="nofollow" target="_blank">Portfolio
|
133 |
Post Type</a>.
|
134 |
+
The portfolio examples of Posts Grid widget is built using custom post type registered by
|
135 |
this plugin.
|
136 |
</li>
|
137 |
+
<li>Optionally, if you have <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin installed, you can import the sample data
|
138 |
that replicates the demo site for you by importing the
|
139 |
file sample-data.xml file located in the plugin directory. The import option is available under
|
140 |
<strong> <a href="<?php echo admin_url() . 'import.php'; ?>"
|
150 |
<p>Below is a list of recommended plugins to install that will help you get the most out of this plugin.
|
151 |
Although many of these plugins are optional, we recommend that you install these popular plugins if
|
152 |
you plan to install the demo data and get most out of this plugin. The demo site and the sample data
|
153 |
+
provided with the <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin utilizes all of these plugins including the
|
154 |
SiteOrigin Page Builder and the Portfolio Post type plugin.</p>
|
155 |
<p>These plugins are also listed in the Plugins tab of this help file under Livemesh Widgets →
|
156 |
Documentation, and you can install the plugins directly from there.</p>
|
182 |
<hr>
|
183 |
<h3 id="demo-data">Installing Demo Data<a class="back-to-top" href="#panel"><span
|
184 |
class="dashicons dashicons-arrow-up-alt2"></span> Back to top</a></h3>
|
185 |
+
<p>If you have <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin installed, you can install the demo data to replicate the
|
186 |
plugin demo site to get a head start on building your site. Installing demo data reduces the
|
187 |
learning curve associated with trying out the powerful widgets part of this plugin.</p>
|
188 |
<p>The sample data imports the pages part of the demo site. Once you are done with playing around the
|
301 |
allow you to input a subtitle which is usually displayed on top of the main heading title.</p>
|
302 |
<p>You can choose to align the heading left, right or center with center being the default
|
303 |
alignment.</p>
|
304 |
+
<p>The <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin allows selection of a custom font for the heading title. You may
|
305 |
choose one of 500+ custom fonts hosted in the Google Fonts library. By default, the heading font
|
306 |
used by the theme is used for main heading title.</p>
|
307 |
|
314 |
<p>Many agencies, freelancers, corporates, products/apps require capturing the services provided by the
|
315 |
agency or the features of a product. The services widget is designed to help users capture these
|
316 |
services or features in a multi-column grid.</p>
|
317 |
+
<p>The widget supports about 3 different styles (with 2 additional styles in <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the
|
318 |
plugin) and each of these styles can be customized further by choosing the type of icon desired to
|
319 |
represent the service – a font icon or an custom image icon. While the choice of font icons is huge
|
320 |
in number and perhaps sufficient for most common services, the icon images can help present the
|
322 |
<p>Each of the service requires you to input a title for the service/feature and a short description of
|
323 |
the service offered or the product feature. Additionally, each service allows you to enter a font
|
324 |
icon or an icon image file to represent that service.</p>
|
325 |
+
<p>The <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin allows you specify a custom font size, font color and and hover
|
326 |
color for the font icon along with providing two additional styles of services/features.</p>
|
327 |
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/services-widget-edit.png" alt="Services Widget Edit Window"></p>
|
328 |
|
344 |
<p>This widget provides an easy way to capture the team members of your organization or an agency. The
|
345 |
details captured include team member name, position, a short description and the email plus social
|
346 |
profile of the individual team members.</p>
|
347 |
+
<p>Two different styles are provided with more styles planned in the <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin. Most
|
348 |
of the styles display the team members in a multi-column grid. The option to specify the number of
|
349 |
columns is provided that helps to control the number of team members displayed per row of the team
|
350 |
members.</p>
|
355 |
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/statsbars-piecharts.png" alt="Statistics Widgets"></p>
|
356 |
|
357 |
<p>The plugin features a number of widgets that help display statistical information in the form of
|
358 |
+
odometers, piecharts and stats bars. The <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin also includes a countdown
|
359 |
widget that displays a countdown timer for planned events such as product launches or website going
|
360 |
live.</p>
|
361 |
<p>Most of these widgets are designed to animate the display of the statistical information or numbers
|
461 |
<li><strong>Posts Per Page</strong> – Set the number of posts you wish you display in the widget. If
|
462 |
the widget does not support pagination, the number of posts chosen by the limited by the number
|
463 |
specified here. This is also the number of posts to display per page when the widget supports
|
464 |
+
pagination as is the case with Posts Grid widget. Choosing the value zero makes the widget
|
465 |
all the selected posts.
|
466 |
</li>
|
467 |
<li><strong>Sticky Posts</strong> – Tell the widget to ignore, exclude or include the sticky posts.
|
547 |
for carousel, number of columns or items to display before making the user to scroll for additional
|
548 |
items etc. The carousel settings are explained in the help section above for Posts Carousel.</p>
|
549 |
<hr>
|
550 |
+
<h3 id="grid-widget">Posts Grid<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
551 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid.jpg" alt="Posts Grid Widget"></p>
|
552 |
|
553 |
<p>Perhaps the most popular and most important of all widgets part of all widgets part of this plugin,
|
554 |
+
Posts Grid helps you build a multi-column grid of posts or custom post types. The posts displayed
|
555 |
are filterable by taxonomy terms.</p>
|
556 |
|
557 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid2.jpg" alt="Posts Grid Widget"></p>
|
558 |
<p>Using the Grid widget, you can construct a portfolio of your work/services/products. We recommend you
|
559 |
use the popular plugin – <a title="Portfolio Post Type Plugin"
|
560 |
href="https://wordpress.org/plugins/portfolio-post-type/">https://wordpress.org/plugins/portfolio-post-type/</a>
|
561 |
for building a collection of portfolio entries. Once the portfolio entries are in place, make sure
|
562 |
you select Portfolio Post type under Post Type entry in Build Tools window as explained below.</p>
|
563 |
|
564 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid-pagination.jpg" alt="Posts Grid Pagination"></p>
|
565 |
+
<p>The <a href="https://www.livemeshthemes.com/products/livemesh-siteorigin-widgets-pro/" title="Livemesh SiteOrigin Widgets Pro" target="_blank">premium version</a> of the plugin has support for pagination, lazy load with load more button and
|
566 |
lightbox option for images. The additional posts are loaded via AJAX when the user navigates through
|
567 |
the pages populated or when the user hits the Load More button.</p>
|
568 |
|
569 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid-loadmore.jpg" alt="Posts Grid AJAX Load More"></p>
|
570 |
|
571 |
<p>The widget features a Posts Query window to help choose posts or custom posts to display. This
|
572 |
powerful tool has number of fields to control what gets displayed and in what order with an
|
601 |
<li><strong>Posts Per Page</strong> – Set the number of posts you wish you display in the widget. If
|
602 |
the widget does not support pagination, the number of posts chosen by the limited by the number
|
603 |
specified here. <strong>This is also the number of posts to display per page when the
|
604 |
+
widget supports pagination as is the case with Posts Grid widget.</strong> Choosing the
|
605 |
value zero makes the widget all the selected posts.
|
606 |
</li>
|
607 |
<li><strong>Sticky Posts</strong> – Tell the widget to ignore, exclude or include the sticky posts.
|
612 |
specified in the above fields.
|
613 |
</li>
|
614 |
</ol>
|
615 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/livemesh-grid-edit1.jpg" alt="Posts Grid Edit Window"></p>
|
616 |
|
617 |
<p>The grid widget has numerous other options to control the display of posts or custom post types. Some
|
618 |
of these are –</p>
|
1276 |
|
1277 |
<!-- Updates panel -->
|
1278 |
<div id="updates-panel" class="panel-left">
|
1279 |
+
|
1280 |
+
<h2>Change Log for the Premium Version</h2>
|
1281 |
+
<br>
|
1282 |
+
<h3>2.2.1</h3>
|
1283 |
<ul>
|
1284 |
+
<li>Fixed - Bug fixes related to Freemius integration.</li>
|
|
|
1285 |
</ul>
|
1286 |
+
<h3>2.2</h3>
|
1287 |
<ul>
|
1288 |
+
<li>Added – Freemius integration for easy upgrade, quick support/feedback and opt-in usage tracking with GDPR compliance.</li>
|
|
|
|
|
1289 |
</ul>
|
1290 |
+
<h3>2.1.0</h3>
|
1291 |
<ul>
|
1292 |
+
<li>Added – New simpler grid system for all elements that use grid.</li>
|
1293 |
+
<li>Added – Seamless control of number of columns at all device resolutions for all those elements that involve grid – posts/portfolio grid, posts block, image/video gallery, clients, services, testimonials, team, charts, pricing table, faq etc.</li>
|
1294 |
+
<li>Added - Option to preserve shortcodes and HTML tags in excerpt. Option is disabled by default.</li>
|
1295 |
</ul>
|
1296 |
+
<h3>2.0.1</h3>
|
1297 |
<ul>
|
1298 |
+
<li>Fixed – Pagination and Load More for gallery would break when special characters are present in title or description.</li>
|
1299 |
+
<li>Fixed - The Load More in gallery would not stop loading in certain situations.</li>
|
1300 |
+
<li>Fixed - Duplicate tags filters generated in gallery when tags have spaces around them.</li>
|
1301 |
</ul>
|
1302 |
+
<h3>2.0.0</h3>
|
1303 |
<ul>
|
1304 |
+
<li>Added - Support for multiple url formats for YouTube and Vimeo videos in video gallery</li>
|
1305 |
+
<li>Added - Support for inline responsive videos of YouTube, Vimeo and self-hosted MP4/WebM video formats</li>
|
1306 |
+
<li>Added - If no custom thumbnail is set, the thumbnails for YouTube/Vimeo videos automatically set from the service provider</li>
|
1307 |
+
<li>Fixed - Next/Prev navigation for gallery not working</li>
|
1308 |
+
<li>Added – Ability to display description for the image/video element in the gallery and gallery carousel lightbox window.</li>
|
1309 |
+
<li>Added – The lightbox for posts grid and posts block now displays post summary and a link to the post in the lightbox.</li>
|
1310 |
+
<li>Added – Option to disable display of post summary/excerpt in the lightbox window of posts block or posts grid.</li>
|
1311 |
+
<li>Added – Fancybox lightbox integration for grid, posts block, image gallery, video gallery and gallery carousel modules.</li>
|
1312 |
+
<li>Added – Advanced features like touch/swipe controls, pinch out/in, double tap, keyboard navigation, full screen, thumbnails, social media sharing, hardware accelerated animations, direct linking now supported with lightbox.</li>
|
1313 |
+
<li>Added - Support for creating stunning masonry gallery layouts using flexible widths and heights for images.</li>
|
1314 |
+
<li>Added - Ability to specify wide width for images in masonry layout of gallery.</li>
|
1315 |
+
<li>Added - Options to enable/disable display of image/video titles and image/video tags in gallery and gallery carousel addons.</li>
|
1316 |
+
<li>Added – HTML5 video support in video gallery and video carousel modules. Support for MP4 and WebM formats.</li>
|
1317 |
+
<li>Fixed - Posts Grid excerpt would not display shortcodes or HTML content</li>
|
1318 |
+
<li>Fixed - Livemesh Gallery styling controls not taking effect for thumbnail hover and titles</li>
|
1319 |
+
<li>Updated - Waypoints script with new API for handling events on scroll</li>
|
1320 |
+
<li>Fixed - Some themes can break animations and report script errors for elements like piecharts, odometers, progress bars etc.</li>
|
1321 |
</ul>
|
1322 |
+
<h3>1.8.4</h3>
|
1323 |
<ul>
|
1324 |
+
<li>Improved – License activation page with less confusing interface.</li>
|
1325 |
+
<li>Added - The license code entered is now masked upon activation.</li>
|
1326 |
</ul>
|
1327 |
+
<h3>1.8.3</h3>
|
1328 |
<ul>
|
1329 |
+
<li>Fixed – Posts Grid columns can break in certain resolutions in FireFox.</li>
|
1330 |
+
<li>Fixed – Styling options for icons not working in Services widget</li>
|
1331 |
+
<li>Fixed – Cannot set custom button color using the available customization controls</li>
|
1332 |
+
<li>Added – Ability to specify an URL for the service items in services widget</li>
|
1333 |
+
<li>Added – Support for shortcodes and HTML tags in excerpts in Posts Grid and Posts Block module</li>
|
1334 |
+
<li>Added – Support for JS driven shortcodes or HTML inside tabs</li>
|
1335 |
</ul>
|
1336 |
+
<h3>1.8.2</h3>
|
|
|
|
|
1337 |
<ul>
|
1338 |
+
<li>Fixed – Image/Video Gallery grid items fail to show up in right size and alignment in certain rare situations.</li>
|
1339 |
+
</ul>
|
1340 |
+
<h3>1.8.1</h3>
|
1341 |
+
<ul>
|
1342 |
+
<li>Added - Advanced tab and accordion functions that help directly link to Tabs and Accordion panels from external pages. On page load, the corresponding tab/panel opens upon auto-scrolling to the tab or accordion panel.</li>
|
1343 |
+
<li>Added - Smooth scroll to tabs and accordion panels from internal links within a page.</li>
|
1344 |
+
<li>Added - Open tab or accordion panels by clicking the internal links within a page.</li>
|
1345 |
+
</ul>
|
1346 |
+
<h3>1.8</h3>
|
1347 |
+
<ul>
|
1348 |
+
<li>Upgrade – Simpler grid system based on NEAT 2.1 version</li>
|
1349 |
+
<li>Updated - The CSS is now optimized for vendor prefixes with reduced properties and file size.</li>
|
1350 |
+
<li>Added - Scroll to the top of the posts block to display new posts during paged navigation (when new posts are not visible).</li>
|
1351 |
</ul>
|
1352 |
|
1353 |
+
<h3>1.7.5</h3>
|
|
|
1354 |
<ul>
|
1355 |
+
<li>Added – Image size option for all major addons including grid, gallery and carousels.</li>
|
1356 |
+
<li>Added - The lightbox now opens on clicking anywhere on the image if no destination URL is specified for gallery item</li>
|
1357 |
+
<li>Added - The link target option for all major addons like grid, gallery and carousels</li>
|
1358 |
+
<li>Fixed – The gallery image was not clickable to the link specified</li>
|
1359 |
+
<li>Fixed – The gallery filters would not center when a heading was not specified.</li>
|
1360 |
+
<li>Fixed – The gallery filters will not display multi-line on devices of lower resolutions like mobile devices.</li>
|
1361 |
+
</ul>
|
1362 |
+
<h3>1.7.1</h3>
|
1363 |
+
<ul>
|
1364 |
+
<li>Refactored – Blocks and Grid JS for modularity and performance.</li>
|
1365 |
+
<li>Minor tweaks in portfolio widget for enabling and disabling options based on chosen grid style</li>
|
1366 |
</ul>
|
1367 |
|
1368 |
+
<h3>1.7</h3>
|
1369 |
+
<ul>
|
1370 |
+
<li>Added – Moved the Posts Grid widget to new framework based on reusable blocks. Pls note that the class names have changed to keep it consistent with the new framework.</li>
|
1371 |
+
<li>Added – 6 different styles for grid items plus 7 header styles too</li>
|
1372 |
+
<li>Added – Next Prev pagination options for Posts Grid widget</li>
|
1373 |
+
<li>Added – Ability to handle large number of grid pages by providing dotted navigation</li>
|
1374 |
+
<li>Added – AJAX Category or taxonomy filtering for Grid widget. No more empty grid on category/taxonomy filtering</li>
|
1375 |
+
<li>Added – Read More option for the grid items</li>
|
1376 |
+
<li>Added – Open in new window option for links to posts in the grid</li>
|
1377 |
+
<li>Added – Two more header styles to posts blocks</li>
|
1378 |
+
<li>Fixed – The grid image was not clickable to the post</li>
|
1379 |
+
<li>Fixed – The filters would not center when a heading was not specified.</li>
|
1380 |
+
<li>Fixed – The grid filters will not display multi-line on devices of lower resolutions like mobile devices</li>
|
1381 |
+
</ul>
|
1382 |
|
1383 |
+
<h3>1.6</h3>
|
1384 |
<ul>
|
1385 |
+
<li>Added - Brand new Post Blocks Widget with more than a dozen styles and options to present your posts or custom post types</li>
|
1386 |
+
<li>Added - AJAX Pagination, Next Prev and Load More options for Post Blocks widget</li>
|
1387 |
+
<li>Added - AJAX Category or taxonomy filtering for Post Blocks widget</li>
|
1388 |
+
<li>Fixed - The grid layout would break between 800px and 1024px device resolution</li>
|
|
|
|
|
|
|
|
|
1389 |
</ul>
|
1390 |
|
1391 |
+
<h4>1.5.1</h4>
|
1392 |
|
1393 |
<ul>
|
1394 |
<li>Fixed - The gutter or spacing between posts carousel items not taking effect with latest update of page builder</li>
|
1397 |
<li>Tweak - Moved to the_excerpt() from get_the_excerpt() in posts carousel and livemesh grid widgets</li>
|
1398 |
</ul>
|
1399 |
|
1400 |
+
<h4>1.5.0</h4>
|
1401 |
|
1402 |
<ul>
|
1403 |
<li>Fixed - The top and bottom padding attributes for rows were not taking effect with 2.5.x version of page builder</li>
|
1404 |
<li>Updated - The top and bottom padding attributes for rows deprecated. Pls use native padding settings of page builder which now provides more fine grained padding controls.</li>
|
1405 |
<li>Updated - We have moved; all URLs now point to our new site https://www.livemeshthemes.com</li>
|
1406 |
+
<li>Added - Option to make the accordion panels expanded on initial page load.</li>
|
1407 |
+
</ul>
|
1408 |
+
|
1409 |
+
<h4>1.4.9</h4>
|
1410 |
+
|
1411 |
+
<ul>
|
1412 |
+
<li>Fixed - Livemesh grid failing with JS error with Isotope 3 library.</li>
|
1413 |
+
<li>Added - Captions for image lightboxes for portfolio grid, image gallery and gallery carousel widgets.</li>
|
1414 |
<li>Added - Hebrew translation files - thanks Ahrale!</li>
|
1415 |
</ul>
|
1416 |
|
1417 |
<h4>1.4.8</h4>
|
1418 |
|
1419 |
<ul>
|
1420 |
+
<li>Fixed - The summary settings were not being retained across grid pages.</li>
|
1421 |
<li>Fixed - The grid filter hidden behind the grid items when number filters get big</li>
|
1422 |
+
<li>Fixed - Taxonomy filters specified in query window not taking effect in grid</li>
|
1423 |
+
<li>Updated - Updated isotope and images loaded plugin scripts..</li>
|
|
|
1424 |
</ul>
|
1425 |
|
1426 |
<h4>1.4.7</h4>
|
1433 |
<h4>1.4.6</h4>
|
1434 |
|
1435 |
<ul>
|
1436 |
+
<li>Added - Feature List widget with tiled features option.</li>
|
1437 |
+
<li>Added - Choose from over 40 custom animations for most widgets (except grid, carousels and sliders). The animations display on user scrolling to the widget or when the widget becomes visible in the browser window.</li>
|
1438 |
+
<li>Updated - Documentation for the widgets.</li>
|
1439 |
<li>Fixed - Translation of published date on the grid.</li>
|
1440 |
<li>Fixed - Shortcodes not being processed in hero header widget.</li>
|
|
|
1441 |
</ul>
|
1442 |
|
1443 |
<h4>1.4.5</h4>
|
1450 |
|
1451 |
<ul>
|
1452 |
<li>Fixed - Admin notices were being removed due to a missing conditonal statement.</li>
|
1453 |
+
<li>Fixed - The loading icon in the Grid pagination was overlapping with the pagination buttons.</li>
|
1454 |
</ul>
|
1455 |
|
1456 |
<h4>1.4.3</h4>
|
1463 |
|
1464 |
<ul>
|
1465 |
<li>Added - Compatibility with WordPress 4.6.</li>
|
|
|
1466 |
</ul>
|
1467 |
|
1468 |
<h4>1.4.1</h4>
|
1475 |
<h4>1.4</h4>
|
1476 |
|
1477 |
<ul>
|
1478 |
+
<li>Added - New widgets including Gallery, Gallery Carousel, Image Slider, Custom Content Slider, Countdown and FAQ.</li>
|
1479 |
+
<li>Added - AJAX based Pagination and Load More options to Grid and Gallery widgets.</li>
|
1480 |
+
<li>Added - Custom Fonts for headings and hero header widgets.</li>
|
1481 |
+
<li>Added - New styles and ability to specify custom icon color and icon size for services widgets.</li>
|
1482 |
+
<li>Added - Default color for buttons based on theme color.</li>
|
1483 |
+
<li>Added - New demo content for call to action and services.</li>
|
1484 |
<li>Added - Detailed documentation for all widgets</li>
|
1485 |
<li>Added - Plugin options window for enabling all widgets in one go along with other options.</li>
|
1486 |
<li>Added - Support for lightweight Portfolio Post Type plugin. Jetpack custom post types module no longer recommended.</li>
|
1532 |
|
1533 |
<div class="panel-inner">
|
1534 |
|
1535 |
+
<?php if (lsow_fs()->is_not_paying()): ?>
|
1536 |
+
|
1537 |
+
<div class="panel-aside banner">
|
1538 |
+
<a href="<?php echo lsow_fs()->get_upgrade_url(); ?>" title="Purchase Now"><img class="dashboard-image"
|
1539 |
+
src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/purchase-banner1.jpg"
|
1540 |
+
alt="Sale Banner"></a>
|
1541 |
+
</div>
|
1542 |
+
|
1543 |
+
<!-- Knowledge base -->
|
1544 |
+
<div class="panel-aside">
|
1545 |
+
<h4><?php _e('Why upgrade to Premium version?', 'livemesh-so-widgets'); ?></h4>
|
1546 |
+
<p><?php _e('Premium version offers multiple benefits - more widgets, advanced features for widgets including those part of the free plugin and priority support through a dedicated support forum.', 'livemesh-so-widgets'); ?></p>
|
1547 |
+
|
1548 |
+
<a class="button button-primary"
|
1549 |
+
href="https://www.livemeshthemes.com/siteorigin-widgets/widgets-demo/#why-upgrade"
|
1550 |
+
title="<?php esc_attr_e('Know More', 'livemesh-so-widgets'); ?>"><?php _e('Know More Details', 'livemesh-so-widgets'); ?></a>
|
1551 |
+
</div><!-- .panel-aside knowledge base -->
|
1552 |
+
|
1553 |
+
<?php else: ?>
|
1554 |
+
|
1555 |
+
<!-- Knowledge base -->
|
1556 |
+
<div class="panel-aside">
|
1557 |
+
<h4>Need support for the plugin?</h4>
|
1558 |
+
<p>Support for premium version is provided through our <a href="https://support.livemeshthemes.com/forums/forum/livemesh-siteorigin-widgets-support/" title="Livemesh SiteOrigin Widgets Support forum">dedicated support forum</a>.</p>
|
1559 |
+
<p>To register with support, pls send us your purchase details along with desired forum username through our <a href="https://www.livemeshthemes.com/contact-us/" title="Livemesh Contact form">contact form</a> and we will create a support account and email you the forum access details.</p>
|
1560 |
+
|
1561 |
+
<a class="button button-primary"
|
1562 |
+
href="https://www.livemeshthemes.com/contact-us/"
|
1563 |
+
title="<?php esc_attr_e('Contact Us', 'livemesh-so-widgets'); ?>"><?php _e('Contact Us', 'livemesh-so-widgets'); ?></a>
|
1564 |
+
</div><!-- .panel-aside knowledge base -->
|
1565 |
+
|
1566 |
+
<!-- Knowledge base -->
|
1567 |
+
<div class="panel-aside">
|
1568 |
+
<h4>Have questions or want to leave feedback?</h4>
|
1569 |
+
<p>If you need to leave your feedback or have a query regarding one of our <a href="https://www.livemeshthemes.com/" title="WordPress Themes and Plugins">WordPress plugins or themes</a>, feel free to leave us a message through our contact form and we will get back to you promptly.</p>
|
1570 |
+
|
1571 |
+
<a class="button button-primary"
|
1572 |
+
href="https://www.livemeshthemes.com/contact-us/"
|
1573 |
+
title="<?php esc_attr_e('Write to Us', 'livemesh-so-widgets'); ?>"><?php _e('Write to Us', 'livemesh-so-widgets'); ?></a>
|
1574 |
+
</div><!-- .panel-aside knowledge base -->
|
1575 |
+
|
1576 |
+
<?php endif; ?>
|
1577 |
|
1578 |
</div><!-- .panel-inner -->
|
1579 |
</div><!-- .panel-right -->
|
admin/views/premium-upgrade.php
DELETED
@@ -1,619 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
// Exit if accessed directly
|
4 |
-
if (!defined('ABSPATH')) {
|
5 |
-
exit;
|
6 |
-
}
|
7 |
-
|
8 |
-
// Theme info
|
9 |
-
$plugin = get_plugin_data(LSOW_PLUGIN_FILE);
|
10 |
-
|
11 |
-
|
12 |
-
?>
|
13 |
-
|
14 |
-
<div class="livemesh-doc">
|
15 |
-
|
16 |
-
<h2 class="notices"></h2>
|
17 |
-
|
18 |
-
|
19 |
-
<div class="pricing-content clear">
|
20 |
-
<div id="plans" class="content-wrapper clear">
|
21 |
-
<div class="plans-wrapper clear">
|
22 |
-
<div class="plan-intro">
|
23 |
-
<div class="w100 clear"><img src="https://www.livemeshthemes.com/siteorigin-widgets/wp-content/uploads/sites/14/2016/01/logo-light-1.png" class="mb30">
|
24 |
-
<p>A huge collection of Premium widgets for SiteOrigin Page Builder. Building a beautiful website is as easy as drag and drop.</p></div>
|
25 |
-
</div>
|
26 |
-
<div class="plans">
|
27 |
-
<div class="content-wrapper flex-wrap">
|
28 |
-
<div class="plan plan1 even flex-col">
|
29 |
-
<div class="w100 clear"><h3>Lite</h3>
|
30 |
-
<p class="mb20 text">All the great features and widgets you need to get started on creating a beautiful website.</p>
|
31 |
-
<h4 class="b c-wh price">FREE</h4>
|
32 |
-
<div class="action clear"><a href="https://wordpress.org/plugins/livemesh-siteorigin-widgets/" class="btn bg-gr center" title="Livemesh SiteOrigin Widgets Download">Download now</a></div>
|
33 |
-
</div>
|
34 |
-
</div>
|
35 |
-
<div class="plan plan2 flex-col">
|
36 |
-
<div class="w100 clear"><h3>Premium</h3>
|
37 |
-
<p class="mb20 text">More features and additional widgets to build a professional website without switching your WP theme.</p>
|
38 |
-
<h4 class="b price c-wh">$39</h4>
|
39 |
-
<div class="action clear"><a href="https://www.livemeshthemes.com/siteorigin-widgets/pricing/" class="btn center bg-cy">Purchase Now</a></div>
|
40 |
-
</div>
|
41 |
-
</div>
|
42 |
-
</div>
|
43 |
-
</div>
|
44 |
-
</div>
|
45 |
-
</div>
|
46 |
-
</div>
|
47 |
-
<div class="pricing-content clear">
|
48 |
-
<div id="compare" class="content-wrapper pt0 clear">
|
49 |
-
<div class="compare-wrapper clear">
|
50 |
-
<div class="benefits"><h4>Compare features</h4>
|
51 |
-
<ul>
|
52 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
53 |
-
<div class="text">Premium quality Widgets</div>
|
54 |
-
<div class="tooltip hide">
|
55 |
-
<div><p>Exquisitely designed widgets that can be used in any widgetized area of website or in widgets enabled page builder like SiteOrigin.</div>
|
56 |
-
</div>
|
57 |
-
</li>
|
58 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
59 |
-
<div class="text">Page Builder Elements</div>
|
60 |
-
<div class="tooltip hide">
|
61 |
-
<div><p>Large collection of plugin widgets with their multiple styles are page builder elements that provide ALL the tools you need to come up with a dream website of yours by just drag, drop and configure. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/">Live Demo</a></p></div>
|
62 |
-
</div>
|
63 |
-
</li>
|
64 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
65 |
-
<div class="text">Dark Version</div>
|
66 |
-
<div class="tooltip hide">
|
67 |
-
<div><p>The plugin comes with dark versions for the bundled widgets.</p></div>
|
68 |
-
</div>
|
69 |
-
</li>
|
70 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
71 |
-
<div class="text">Posts/Portfolio Grid</div>
|
72 |
-
<div class="tooltip hide">
|
73 |
-
<div><p>The PRO version comes with advanced grid functions like multiple styles, AJAX filtering, pagination, lazy load via AJAX, lightbox support etc. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/livemesh-grid/">Live Demo</a></p></div>
|
74 |
-
</div>
|
75 |
-
</li>
|
76 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
77 |
-
<div class="text">Post Blocks!</div>
|
78 |
-
<div class="tooltip hide">
|
79 |
-
<div><p>Present your blog posts, events, news items or portfolio in a dozen creative ways. Comes with AJAX filtering, pagination and load more features to help visitors navigate your entire collection of blog posts or custom post types and their categories without reloading the page. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/posts-block/">Live Demo</a></p>
|
80 |
-
</div>
|
81 |
-
</div>
|
82 |
-
</li>
|
83 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
84 |
-
<div class="text">Demo Site Replication</div>
|
85 |
-
<div class="tooltip hide">
|
86 |
-
<div><p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p></div>
|
87 |
-
</div>
|
88 |
-
</li>
|
89 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
90 |
-
<div class="text">Grids with AJAX Pagination</div>
|
91 |
-
<div class="tooltip hide">
|
92 |
-
<div><p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/livemesh-grid/">Live Demo</a></p></div>
|
93 |
-
</div>
|
94 |
-
</li>
|
95 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
96 |
-
<div class="text">Advanced Grid with Lazy Load</div>
|
97 |
-
<div class="tooltip hide">
|
98 |
-
<div><p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/livemesh-grid/">Live Demo</a></p></div>
|
99 |
-
</div>
|
100 |
-
</li>
|
101 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
102 |
-
<div class="text">Custom Fonts</div>
|
103 |
-
<div class="tooltip hide">
|
104 |
-
<div><p>Choose from 500+ fonts from Google for Headings and Hero Header widgets. More coming soon.</p>
|
105 |
-
</div>
|
106 |
-
</div>
|
107 |
-
</li>
|
108 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
109 |
-
<div class="text">Animations</div>
|
110 |
-
<div class="tooltip hide">
|
111 |
-
<div><p>Choose from over <strong>40+ custom animations</strong> for most widgets (excludes sliders, carousels and grid).</p>
|
112 |
-
</div>
|
113 |
-
</div>
|
114 |
-
</li>
|
115 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
116 |
-
<div class="text">Advanced Image Slider</div>
|
117 |
-
<div class="tooltip hide">
|
118 |
-
<div><p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/livemesh-sliders/">Live Demo</a></p>
|
119 |
-
</div>
|
120 |
-
</div>
|
121 |
-
</li>
|
122 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
123 |
-
<div class="text">Image Gallery</div>
|
124 |
-
<div class="tooltip hide">
|
125 |
-
<div><p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/image-gallery/">Live Demo</a></p></div>
|
126 |
-
</div>
|
127 |
-
</li>
|
128 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
129 |
-
<div class="text">YouTube/Vimeo Video Gallery</div>
|
130 |
-
<div class="tooltip hide">
|
131 |
-
<div><p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/video-gallery/">Live Demo</a></p></div>
|
132 |
-
</div>
|
133 |
-
</li>
|
134 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
135 |
-
<div class="text">Advanced Image Carousel</div>
|
136 |
-
<div class="tooltip hide">
|
137 |
-
<div><p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/gallery-carousel/">Live Demo</a></p></div>
|
138 |
-
</div>
|
139 |
-
</li>
|
140 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
141 |
-
<div class="text">YouTube/Vimeo Video Carousel</div>
|
142 |
-
<div class="tooltip hide">
|
143 |
-
<div><p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/gallery-carousel/">Live Demo</a></p></div>
|
144 |
-
</div>
|
145 |
-
</li>
|
146 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
147 |
-
<div class="text">Features List</div>
|
148 |
-
<div class="tooltip hide">
|
149 |
-
<div><p>List the product features or services offered in style. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/features/">Live Demo</a></p></div>
|
150 |
-
</div>
|
151 |
-
</li>
|
152 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
153 |
-
<div class="text">Dedicated Support Forum</div>
|
154 |
-
<div class="tooltip hide">
|
155 |
-
<div><p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p></div>
|
156 |
-
</div>
|
157 |
-
</li>
|
158 |
-
<li><span class="help dashicons dashicons-editor-help"></span>
|
159 |
-
<div class="text">Priority Support</div>
|
160 |
-
<div class="tooltip hide">
|
161 |
-
<div><p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p></div>
|
162 |
-
</div>
|
163 |
-
</li>
|
164 |
-
</ul>
|
165 |
-
</div>
|
166 |
-
<div class="plans">
|
167 |
-
<div class="content-wrapper">
|
168 |
-
<div class="plan plan1 even"><h4>Lite</h4>
|
169 |
-
<ul>
|
170 |
-
<li>
|
171 |
-
<div class="dashicons dashicons-yes"></div>
|
172 |
-
<span class="m-feature m">Premium quality Widgets</span>
|
173 |
-
<div class="tooltip hide">
|
174 |
-
<p>Exquisitely designed widgets that can be used in any widgetized area of website or in widgets enabled page builder like SiteOrigin.</p>
|
175 |
-
</div>
|
176 |
-
</li>
|
177 |
-
<li>
|
178 |
-
<div class="dashicons dashicons-yes m"></div>
|
179 |
-
<span class="m-feature m">Page Builder Elements</span>
|
180 |
-
<div class="m-tooltip hide"><p>Essential widgets include Services, Team, Testimonials, Clients, Hero Headers, Pricing, Statistics, Tabs, Accordions, Carousels and Grid.</p></div>
|
181 |
-
<span class="message">Essentials</span> <span class="help dashicons dashicons-editor-help"></span>
|
182 |
-
<div class="tooltip hide">
|
183 |
-
<p>Essential widgets include Services, Team, Testimonials, Clients, Hero Headers, Pricing, Statistics, Tabs, Accordions, Carousels and Grid.</p>
|
184 |
-
</div>
|
185 |
-
</li>
|
186 |
-
<li>
|
187 |
-
<div class="dashicons dashicons-yes"></div>
|
188 |
-
<span class="m-feature m">Dark Version</span>
|
189 |
-
<div class="tooltip hide">
|
190 |
-
<p>Both Lite and Premium versions include dark versions for the bundled widgets.</p>
|
191 |
-
</div>
|
192 |
-
</li>
|
193 |
-
<li>
|
194 |
-
<div class="dashicons dashicons-yes m"></div>
|
195 |
-
<span class="m-feature m">Posts/Portfolio Grid</span>
|
196 |
-
<div class="m-tooltip hide"><p>Construct a responsive and filterable grid of posts or custom post types like portfolio entries.</p></div>
|
197 |
-
<span class="message">Basic</span> <span class="help dashicons dashicons-editor-help"></span>
|
198 |
-
<div class="tooltip hide">
|
199 |
-
<p>Construct a responsive and filterable grid of posts or custom post types like portfolio entries.</p>
|
200 |
-
</div>
|
201 |
-
</li>
|
202 |
-
<li>
|
203 |
-
<div class="dashicons dashicons-no-alt"></div>
|
204 |
-
<span class="m-feature m">Post Blocks!</span>
|
205 |
-
<div class="tooltip hide">
|
206 |
-
<p>Present your blog posts, events, news items or portfolio in a dozen creative ways. Comes with AJAX filtering, pagination and load more features to help visitors navigate your entire collection of blog posts or custom post types and their categories without reloading the page. <a target="_blank" href="https://www.livemeshthemes.com/siteorigin-widgets/posts-block/">Live Demo</a></p>
|
207 |
-
</div>
|
208 |
-
</li>
|
209 |
-
<li>
|
210 |
-
<div class="dashicons dashicons-no-alt"></div>
|
211 |
-
<span class="m-feature m">Demo Site Replication</span>
|
212 |
-
<div class="tooltip hide">
|
213 |
-
<p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p>
|
214 |
-
</div>
|
215 |
-
</li>
|
216 |
-
<li>
|
217 |
-
<div class="dashicons dashicons-no-alt"></div>
|
218 |
-
<span class="m-feature m">Grids with AJAX Pagination</span>
|
219 |
-
<div class="tooltip hide">
|
220 |
-
<p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site.</p>
|
221 |
-
</div>
|
222 |
-
</li>
|
223 |
-
<li>
|
224 |
-
<div class="dashicons dashicons-no-alt"></div>
|
225 |
-
<span class="m-feature m">Advanced Grid with Lazy Load</span>
|
226 |
-
<div class="tooltip hide">
|
227 |
-
<p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts.</p>
|
228 |
-
</div>
|
229 |
-
</li>
|
230 |
-
<li>
|
231 |
-
<div class="dashicons dashicons-no-alt"></div>
|
232 |
-
<span class="m-feature m">Custom Fonts</span>
|
233 |
-
<div class="tooltip hide">
|
234 |
-
<p>Choose from 500+ fonts from Google for Headings and Hero Header widgets. More coming soon.</p>
|
235 |
-
</div>
|
236 |
-
</li>
|
237 |
-
<li>
|
238 |
-
<div class="dashicons dashicons-no-alt"></div>
|
239 |
-
<span class="m-feature m">Animations</span>
|
240 |
-
<div class="tooltip hide">
|
241 |
-
<p>Choose from over <strong>40+ custom animations</strong> for most widgets (excludes sliders, carousels and grid).</p>
|
242 |
-
</div>
|
243 |
-
</li>
|
244 |
-
<li>
|
245 |
-
<div class="dashicons dashicons-no-alt"></div>
|
246 |
-
<span class="m-feature m">Advanced Image Slider</span>
|
247 |
-
<div class="tooltip hide">
|
248 |
-
<p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls.</p>
|
249 |
-
</div>
|
250 |
-
</li>
|
251 |
-
<li>
|
252 |
-
<div class="dashicons dashicons-no-alt"></div>
|
253 |
-
<span class="m-feature m">Image Gallery</span>
|
254 |
-
<div class="tooltip hide">
|
255 |
-
<p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination.</p>
|
256 |
-
</div>
|
257 |
-
</li>
|
258 |
-
<li>
|
259 |
-
<div class="dashicons dashicons-no-alt"></div>
|
260 |
-
<span class="m-feature m">YouTube/Vimeo Video Gallery</span>
|
261 |
-
<div class="tooltip hide">
|
262 |
-
<p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported.</p>
|
263 |
-
</div>
|
264 |
-
</li>
|
265 |
-
<li>
|
266 |
-
<div class="dashicons dashicons-no-alt"></div>
|
267 |
-
<span class="m-feature m">Advanced Image Carousel</span>
|
268 |
-
<div class="tooltip hide">
|
269 |
-
<p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc.</p>
|
270 |
-
</div>
|
271 |
-
</li>
|
272 |
-
<li>
|
273 |
-
<div class="dashicons dashicons-no-alt"></div>
|
274 |
-
<span class="m-feature m">YouTube/Vimeo Video Carousel</span>
|
275 |
-
<div class="tooltip hide">
|
276 |
-
<p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support.</p>
|
277 |
-
</div>
|
278 |
-
</li>
|
279 |
-
<li>
|
280 |
-
<div class="dashicons dashicons-no-alt"></div>
|
281 |
-
<span class="m-feature m">Features List</span>
|
282 |
-
<div class="tooltip hide">
|
283 |
-
<p>Display a list the product features or services offered in style.</p>
|
284 |
-
</div>
|
285 |
-
</li>
|
286 |
-
<li>
|
287 |
-
<div class="dashicons dashicons-no-alt"></div>
|
288 |
-
<span class="m-feature m">Dedicated Support Forum</span>
|
289 |
-
<div class="tooltip hide">
|
290 |
-
<p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p>
|
291 |
-
</div>
|
292 |
-
</li>
|
293 |
-
<li>
|
294 |
-
<div class="dashicons dashicons-no-alt"></div>
|
295 |
-
<span class="m-feature m">Priority Support</span>
|
296 |
-
<div class="tooltip hide">
|
297 |
-
<p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p>
|
298 |
-
</div>
|
299 |
-
</li>
|
300 |
-
</ul>
|
301 |
-
<div class="action clear"><a href="https://wordpress.org/plugins/livemesh-siteorigin-widgets/" class="btn bg-gr center" title="Livemesh SiteOrigin Widgets Download">Download now</a></div>
|
302 |
-
</div>
|
303 |
-
<div class="plan plan2"><h4>PRO</h4>
|
304 |
-
<ul>
|
305 |
-
<li>
|
306 |
-
<div class="dashicons dashicons-yes"></div>
|
307 |
-
<span class="m-feature m">Premium quality Widgets</span>
|
308 |
-
<div class="tooltip hide">
|
309 |
-
<p>Exquisitely designed widgets that can be used in any widgetized area of website or in widgets enabled page builder like SiteOrigin.</p>
|
310 |
-
</div>
|
311 |
-
</li>
|
312 |
-
<li>
|
313 |
-
<div class="dashicons dashicons-yes m"></div>
|
314 |
-
<span class="m-feature m">Page Builder Elements</span>
|
315 |
-
<div class="m-tooltip hide"><p>Along with the essential web building tools bundled with free version, the PRO version comes with additional advanced widgets, functions and customizations detailed below.</p></div>
|
316 |
-
<span class="message">Professional</span> <span class="help dashicons dashicons-editor-help"></span>
|
317 |
-
<div class="tooltip hide">
|
318 |
-
<p>Along with the essential web building tools bundled with free version, the PRO version comes with additional advanced widgets, functions and customizations detailed below.</p>
|
319 |
-
</div>
|
320 |
-
</li>
|
321 |
-
<li>
|
322 |
-
<div class="dashicons dashicons-yes"></div>
|
323 |
-
<span class="m-feature m">Dark Version</span>
|
324 |
-
<div class="tooltip hide">
|
325 |
-
<p>Both Lite and Premium versions include dark versions for the bundled widgets.</p>
|
326 |
-
</div>
|
327 |
-
</li>
|
328 |
-
<li>
|
329 |
-
<div class="dashicons dashicons-yes m"></div>
|
330 |
-
<span class="m-feature m">Posts/Portfolio Grid</span>
|
331 |
-
<div class="m-tooltip hide"><p>The PRO version comes with advanced grid functions like multiple styles, AJAX filtering, pagination, lazy load via AJAX, lightbox support etc.</p></div>
|
332 |
-
<span class="message">Advanced</span> <span class="help dashicons dashicons-editor-help"></span>
|
333 |
-
<div class="tooltip hide">
|
334 |
-
<p>The PRO version comes with advanced grid functions like multiple styles, AJAX filtering, pagination, lazy load via AJAX, lightbox support etc.</p>
|
335 |
-
</div>
|
336 |
-
</li>
|
337 |
-
<li>
|
338 |
-
<div class="dashicons dashicons-yes"></div>
|
339 |
-
<span class="m-feature m">Post Blocks</span>
|
340 |
-
<div class="tooltip hide">
|
341 |
-
<p>Present your blog posts, events, news items or portfolio in a dozen creative ways. Comes with AJAX filtering, pagination and load more features to help visitors navigate your entire collection of blog posts or custom post types and their categories without reloading the page.</p>
|
342 |
-
</div>
|
343 |
-
</li>
|
344 |
-
<li>
|
345 |
-
<div class="dashicons dashicons-yes"></div>
|
346 |
-
<span class="m-feature m">Demo Site Replication</span>
|
347 |
-
<div class="tooltip hide">
|
348 |
-
<p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p>
|
349 |
-
</div>
|
350 |
-
</li>
|
351 |
-
<li>
|
352 |
-
<div class="dashicons dashicons-yes"></div>
|
353 |
-
<span class="m-feature m">Grids with AJAX Pagination</span>
|
354 |
-
<div class="tooltip hide">
|
355 |
-
<p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site.</p>
|
356 |
-
</div>
|
357 |
-
</li>
|
358 |
-
<li>
|
359 |
-
<div class="dashicons dashicons-yes"></div>
|
360 |
-
<span class="m-feature m">Advanced Grid with Lazy Load</span>
|
361 |
-
<div class="tooltip hide">
|
362 |
-
<p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts.</p>
|
363 |
-
</div>
|
364 |
-
</li>
|
365 |
-
<li>
|
366 |
-
<div class="dashicons dashicons-yes"></div>
|
367 |
-
<span class="m-feature m">Custom Fonts</span>
|
368 |
-
<div class="tooltip hide">
|
369 |
-
<p>Choose from 500+ fonts from Google for Headings and Hero Header widgets. More coming soon.</p>
|
370 |
-
</div>
|
371 |
-
</li>
|
372 |
-
<li>
|
373 |
-
<div class="dashicons dashicons-yes"></div>
|
374 |
-
<span class="m-feature m">Animations</span>
|
375 |
-
<div class="tooltip hide">
|
376 |
-
<p>Choose from over <strong>40+ custom animations</strong> for most widgets (excludes sliders, carousels and grid).</p>
|
377 |
-
</div>
|
378 |
-
</li>
|
379 |
-
<li>
|
380 |
-
<div class="dashicons dashicons-yes"></div>
|
381 |
-
<span class="m-feature m">Advanced Image Slider</span>
|
382 |
-
<div class="tooltip hide">
|
383 |
-
<p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls.</p>
|
384 |
-
</div>
|
385 |
-
</li>
|
386 |
-
<li>
|
387 |
-
<div class="dashicons dashicons-yes"></div>
|
388 |
-
<span class="m-feature m">Image Gallery</span>
|
389 |
-
<div class="tooltip hide">
|
390 |
-
<p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination.</p>
|
391 |
-
</div>
|
392 |
-
</li>
|
393 |
-
<li>
|
394 |
-
<div class="dashicons dashicons-yes"></div>
|
395 |
-
<span class="m-feature m">YouTube/Vimeo Video Gallery</span>
|
396 |
-
<div class="tooltip hide">
|
397 |
-
<p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported.</p>
|
398 |
-
</div>
|
399 |
-
</li>
|
400 |
-
<li>
|
401 |
-
<div class="dashicons dashicons-yes"></div>
|
402 |
-
<span class="m-feature m">Advanced Image Carousel</span>
|
403 |
-
<div class="tooltip hide">
|
404 |
-
<p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc.</p>
|
405 |
-
</div>
|
406 |
-
</li>
|
407 |
-
<li>
|
408 |
-
<div class="dashicons dashicons-yes"></div>
|
409 |
-
<span class="m-feature m">YouTube/Vimeo Video Carousel</span>
|
410 |
-
<div class="tooltip hide">
|
411 |
-
<p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support.</p>
|
412 |
-
</div>
|
413 |
-
</li>
|
414 |
-
<li>
|
415 |
-
<div class="dashicons dashicons-yes"></div>
|
416 |
-
<span class="m-feature m">Features List</span>
|
417 |
-
<div class="tooltip hide">
|
418 |
-
<p>Display a list the product features or services offered in style.</p>
|
419 |
-
</div>
|
420 |
-
</li>
|
421 |
-
<li>
|
422 |
-
<div class="dashicons dashicons-yes"></div>
|
423 |
-
<span class="m-feature m">Dedicated Support Forum</span>
|
424 |
-
<div class="tooltip hide">
|
425 |
-
<p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p>
|
426 |
-
</div>
|
427 |
-
</li>
|
428 |
-
<li>
|
429 |
-
<div class="dashicons dashicons-yes"></div>
|
430 |
-
<span class="m-feature m">Priority Support</span>
|
431 |
-
<div class="tooltip hide">
|
432 |
-
<p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p>
|
433 |
-
</div>
|
434 |
-
</li>
|
435 |
-
</ul>
|
436 |
-
<div class="action clear"><a href="https://www.livemeshthemes.com/siteorigin-widgets/pricing/" class="btn center bg-cy">Purchase Now</a></div>
|
437 |
-
</div>
|
438 |
-
</div>
|
439 |
-
</div>
|
440 |
-
</div>
|
441 |
-
</div>
|
442 |
-
|
443 |
-
</div>
|
444 |
-
|
445 |
-
<img style="max-width:100%;padding-top: 50px;" class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/why-premium.jpg" alt="Why Choose Premium">
|
446 |
-
|
447 |
-
<div class="button-wrap">
|
448 |
-
|
449 |
-
<a href="https://www.livemeshthemes.com/siteorigin-widgets/pricing/" title="Purchase Now">
|
450 |
-
|
451 |
-
<img class="button-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/purchase-button.png" alt="Purchase Button">
|
452 |
-
|
453 |
-
</a>
|
454 |
-
|
455 |
-
</div>
|
456 |
-
|
457 |
-
<div class="panels">
|
458 |
-
|
459 |
-
<div id="panel" class="panel">
|
460 |
-
|
461 |
-
<!-- Upgrade panel -->
|
462 |
-
<div id="upgrade-panel" class="panel-left visible">
|
463 |
-
|
464 |
-
<p>
|
465 |
-
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/image-slider.jpg" alt="Image Slider">
|
466 |
-
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/advanced-grid.jpg" alt="Advanced Grid">
|
467 |
-
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/image-gallery.jpg" alt="Image Gallery">
|
468 |
-
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/video-gallery.jpg" alt="Video Gallery">
|
469 |
-
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/image-video-carousel.jpg" alt="Image Video Carousel">
|
470 |
-
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/more-premium.jpg" alt="More Premium Goodness">
|
471 |
-
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/priority-support.jpg" alt="Priority Support">
|
472 |
-
|
473 |
-
</p>
|
474 |
-
|
475 |
-
<h3 id="item-description__features-overview"><?php echo __('Why upgrade to Premium Version of the plugin?', 'livemesh-so-widgets') ?></h3>
|
476 |
-
|
477 |
-
<p>The premium version helps us to continue development of this plugin incorporating even
|
478 |
-
more
|
479 |
-
features and enhancements along with offering more responsive support. Following are
|
480 |
-
some of the reasons why you may want to upgrade to the premium version of this
|
481 |
-
plugin.</p>
|
482 |
-
|
483 |
-
<h3 id="item-description__features-overview">New Premium Widgets</h3>
|
484 |
-
|
485 |
-
<p>Although the free version of the Livemesh for
|
486 |
-
SiteOrigin widgets features a large repertoire of premium quality widgets, the premium
|
487 |
-
version does even more.</p>
|
488 |
-
|
489 |
-
<ul>
|
490 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/posts-block/" title="Livemesh Post Blocks" target="_blank">Post Blocks</a> - Present your blog posts, events, news items or portfolio
|
491 |
-
in a dozen creative ways. Comes with AJAX filtering, pagination and load more features to help visitors navigate your entire collection of blog posts or custom post types and their categories without reloading the page.
|
492 |
-
</li>
|
493 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/livemesh-sliders/" title="Image Slider Widget" target="_blank">Image
|
494 |
-
Slider</a> - Create a responsive slider of images with support
|
495 |
-
for captions,
|
496 |
-
multiple slider types like Nivo, Flex, Slick and lightweight sliders, thumbnail
|
497 |
-
navigation etc.
|
498 |
-
</li>
|
499 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/image-gallery/" title="Image Gallery Widget" target="_blank">Image
|
500 |
-
Gallery</a> - Create a gallery of images with options for masonry
|
501 |
-
or fit rows, pagination, lazy load, lightbox support etc.
|
502 |
-
</li>
|
503 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/video-gallery/" title="Video Gallery Widget" target="_blank">Video
|
504 |
-
Gallery</a> - Create a beautiful gallery of videos to help
|
505 |
-
showcase a collection of YouTube/Vimeo videos on your site.
|
506 |
-
</li>
|
507 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/gallery-carousel/" title="Image Carousel" target="_blank">Image
|
508 |
-
Carousel</a> - Build a responsive carousel of images.</li>
|
509 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/gallery-carousel/" title="Video Carousel" target="_blank">Video
|
510 |
-
Carousel</a> - Build a responsive carousel of YouTube/Vimeo
|
511 |
-
videos.
|
512 |
-
</li>
|
513 |
-
<li><strong>Countdown</strong> - Use countdown widget to display a countdown timer on
|
514 |
-
your site pages
|
515 |
-
such as those that feature events or under construction/coming soon pages.
|
516 |
-
</li>
|
517 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/services/" title="FAQ Widget" target="_blank">FAQ</a> - Create a set of Frequently Asked Questions for display in a
|
518 |
-
page.
|
519 |
-
</li>
|
520 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/features/" title="Features Widget" target="_blank">Features Widget</a> - Showcase product features or services provided by your agency/business.
|
521 |
-
</li>
|
522 |
-
</ul>
|
523 |
-
|
524 |
-
<h3 id="item-description__features-overview">Additional Features</h3>
|
525 |
-
|
526 |
-
<p>Along with incorporating many new widgets into premium version, the pro version is being
|
527 |
-
updated with additional features for existing widgets -</p>
|
528 |
-
|
529 |
-
<ul>
|
530 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/livemesh-grid/" title="Livemesh Grid" target="_blank">Lazy Load</a> - The portfolio/post grid and image gallery widgets
|
531 |
-
incorporate option to lazy load posts/images with the click of a Load More button.
|
532 |
-
</li>
|
533 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/livemesh-grid/" title="Livemesh Grid" target="_blank">Pagination</a> - Create a grid of posts or custom post types with AJAX
|
534 |
-
based pagination support.
|
535 |
-
</li>
|
536 |
-
<li><strong>Lightbox Support</strong> - The premium version comes with support for
|
537 |
-
Lightbox for grid and carousel widgets.
|
538 |
-
</li>
|
539 |
-
<li><strong>Custom Fonts</strong> - Ability to choose custom fonts from Google Fonts
|
540 |
-
library for headings in heading widget and the hero header widget.
|
541 |
-
</li>
|
542 |
-
<li><strong>Animations</strong> - Choose from over <strong>40+ animations</strong> for most widgets
|
543 |
-
(excludes sliders, carousels and grid). The animations display on user scrolling to the widget or
|
544 |
-
when the widget becomes visible in the browser window.
|
545 |
-
</li>
|
546 |
-
<li><strong>Sample Data</strong> - Sample data that you can import into your site to get
|
547 |
-
started quickly on the widgets and some sample layouts.
|
548 |
-
</li>
|
549 |
-
</ul>
|
550 |
-
|
551 |
-
<h3 id="item-description__features-overview">Premium Support</h3>
|
552 |
-
|
553 |
-
<p>We offer premium support for our paid customers with following benefits - </p>
|
554 |
-
|
555 |
-
<ul>
|
556 |
-
<li><strong>Dedicated Forum</strong> - The customers will be provided access to a
|
557 |
-
dedicated support forum.
|
558 |
-
</li>
|
559 |
-
<li><strong>Public and Private Tickets</strong> - Private tickets help you work with us
|
560 |
-
directly regarding the issues you are facing in your site by sharing the details of
|
561 |
-
your site securely.
|
562 |
-
</li>
|
563 |
-
<li><strong>Searchable Topics</strong> - The support forum is searchable for public
|
564 |
-
topics helping you look for resolution of similar issues reported by other
|
565 |
-
customers.
|
566 |
-
</li>
|
567 |
-
</li>
|
568 |
-
<li><strong>Faster turnaround</strong> - The threads opened by paid customers will be
|
569 |
-
attended to within 24 hours of opening a ticket.
|
570 |
-
</li>
|
571 |
-
<li><strong>Bug fixes and Enhancements</strong> - Any fixes and enhancements made to the
|
572 |
-
widgets will be prioritized to arrive quicker on the premium version.
|
573 |
-
</li>
|
574 |
-
<li><strong>Proven Expertize</strong> - Having served over <strong>11,000+
|
575 |
-
customers</strong> of our themes over past 3 years, the support provided by us
|
576 |
-
is proven in competence and commitment.
|
577 |
-
</li>
|
578 |
-
</ul>
|
579 |
-
|
580 |
-
<div class="button-wrap">
|
581 |
-
|
582 |
-
<a class="button-wrap" href="https://www.livemeshthemes.com/siteorigin-widgets/pricing/" title="Purchase Now">
|
583 |
-
|
584 |
-
<img class="button-image" style="border:none" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/purchase-button.png" alt="Purchase Button">
|
585 |
-
|
586 |
-
</a>
|
587 |
-
|
588 |
-
</div>
|
589 |
-
|
590 |
-
</div>
|
591 |
-
|
592 |
-
<div class="panel-right">
|
593 |
-
|
594 |
-
<div class="panel-inner">
|
595 |
-
|
596 |
-
<div class="panel-aside banner">
|
597 |
-
<a href="https://www.livemeshthemes.com/siteorigin-widgets/pricing/" title="Purchase Now"><img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-widgets/dashboard/purchase-banner2.jpg" alt="Sale Banner"></a>
|
598 |
-
</div>
|
599 |
-
|
600 |
-
<!-- Knowledge base -->
|
601 |
-
<div class="panel-aside panel-sticky">
|
602 |
-
|
603 |
-
<h4>Have questions regarding premium version of the plugin?</h4>
|
604 |
-
<p>If you have pre-sales questions related to the paid version of this plugin, feel free to get in touch with us via contact form on our website.</p>
|
605 |
-
|
606 |
-
<a class="button button-primary" href="https://www.livemeshthemes.com/contact-us"
|
607 |
-
title="<?php esc_attr_e('Contact Us', 'livemesh-so-widgets'); ?>"><?php _e('Write to Us', 'livemesh-so-widgets'); ?></a>
|
608 |
-
|
609 |
-
</div><!-- .panel-aside knowledge base -->
|
610 |
-
|
611 |
-
</div><!-- .panel-inner -->
|
612 |
-
|
613 |
-
</div><!-- .panel-right -->
|
614 |
-
|
615 |
-
</div><!-- .panel -->
|
616 |
-
|
617 |
-
</div><!-- .panels -->
|
618 |
-
|
619 |
-
</div><!-- .livemesh-doc -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/views/settings.php
CHANGED
@@ -41,7 +41,7 @@ $custom_css = lsow_get_option('lsow_custom_css', '');
|
|
41 |
class="lsow-icon dashicons dashicons-warning"></i><?php echo __('Debugging', 'livemesh-so-widgets') ?>
|
42 |
</li>
|
43 |
<li class="lsow-tab" data-target="premium-version"><i
|
44 |
-
class="lsow-icon dashicons dashicons-yes"></i><?php echo __('Premium
|
45 |
</li>
|
46 |
</ul>
|
47 |
|
@@ -201,14 +201,19 @@ $custom_css = lsow_get_option('lsow_custom_css', '');
|
|
201 |
|
202 |
<div class="lsow-row lsow-field lsow_premium_version">
|
203 |
|
204 |
-
|
205 |
-
|
|
|
|
|
|
|
|
|
|
|
206 |
|
|
|
|
|
207 |
<p>The premium version helps us to continue development of this plugin incorporating even
|
208 |
-
more
|
209 |
-
|
210 |
-
some of the reasons why you may want to upgrade to the premium version of this
|
211 |
-
plugin.</p>
|
212 |
|
213 |
<label class="lsow-label">New Premium Widgets</label>
|
214 |
|
@@ -217,47 +222,41 @@ $custom_css = lsow_get_option('lsow_custom_css', '');
|
|
217 |
version does even more.</p>
|
218 |
|
219 |
<ul>
|
220 |
-
<li><
|
221 |
-
Blocks!</a> - Present your blog posts, events, news items or portfolio in a dozen creative ways. Comes with AJAX filtering,
|
222 |
-
pagination and load more features to help visitors navigate your entire collection of blog posts or custom post types and
|
223 |
-
their categories without reloading the page.
|
224 |
-
</li>
|
225 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/livemesh-sliders/" title="Image Slider Widget" target="_blank">Image
|
226 |
-
Slider</a> - Create a responsive slider of images with support
|
227 |
for captions,
|
228 |
multiple slider types like Nivo, Flex, Slick and lightweight sliders, thumbnail
|
229 |
navigation etc.
|
230 |
</li>
|
231 |
-
<li><a
|
232 |
-
Gallery</a> - Create a gallery of images with options for masonry
|
233 |
or fit rows, pagination, lazy load, lightbox support etc.
|
234 |
</li>
|
235 |
-
<li><a
|
236 |
-
Gallery</a> - Create a beautiful gallery of videos to help
|
237 |
showcase a collection of YouTube/Vimeo videos on your site.
|
238 |
</li>
|
239 |
-
<li><a
|
240 |
-
|
241 |
-
<li><a href="https://www.livemeshthemes.com/siteorigin-widgets/gallery-carousel/" title="Video Carousel" target="_blank">Video
|
242 |
-
Carousel</a> - Build a responsive carousel of YouTube/Vimeo
|
243 |
videos.
|
244 |
</li>
|
245 |
<li><strong>Countdown</strong> - Use countdown widget to display a countdown timer on
|
246 |
your site pages
|
247 |
such as those that feature events or under construction/coming soon pages.
|
248 |
</li>
|
249 |
-
<li><
|
250 |
page.
|
251 |
</li>
|
252 |
-
<li><
|
253 |
</li>
|
254 |
</ul>
|
255 |
|
256 |
<div class="lsow-spacer" style="height: 15px"></div>
|
257 |
|
258 |
-
|
259 |
|
260 |
-
|
|
|
|
|
|
|
|
|
261 |
|
262 |
<label class="lsow-label">Additional Features</label>
|
263 |
|
@@ -265,10 +264,10 @@ $custom_css = lsow_get_option('lsow_custom_css', '');
|
|
265 |
updated with additional features for existing widgets -</p>
|
266 |
|
267 |
<ul>
|
268 |
-
<li><
|
269 |
incorporate option to lazy load posts/images with the click of a Load More button.
|
270 |
</li>
|
271 |
-
<li><
|
272 |
based pagination support.
|
273 |
</li>
|
274 |
<li><strong>Lightbox Support</strong> - The premium version comes with support for
|
@@ -313,6 +312,17 @@ $custom_css = lsow_get_option('lsow_custom_css', '');
|
|
313 |
</li>
|
314 |
</ul>
|
315 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
</div>
|
317 |
|
318 |
</div>
|
41 |
class="lsow-icon dashicons dashicons-warning"></i><?php echo __('Debugging', 'livemesh-so-widgets') ?>
|
42 |
</li>
|
43 |
<li class="lsow-tab" data-target="premium-version"><i
|
44 |
+
class="lsow-icon dashicons dashicons-yes"></i><?php echo __('Premium Version', 'livemesh-so-widgets') ?>
|
45 |
</li>
|
46 |
</ul>
|
47 |
|
201 |
|
202 |
<div class="lsow-row lsow-field lsow_premium_version">
|
203 |
|
204 |
+
<?php if (lsow_fs()->is_not_paying()): ?>
|
205 |
+
|
206 |
+
<label class="lsow-label"><?php echo __('Why upgrade to Premium Version of the plugi |