Version Description
Download this release
Release Info
Code changes from version 2.4.8 to 2.4.9
- includes/admin/admin-init.php +5 -5
- includes/admin/assets/images/banner/welcome.png +0 -0
- includes/admin/include/class.extension-manager.php +1 -1
- includes/admin/include/class.template-manager.php +4 -2
- includes/admin/include/diagnostic-data.php +1 -1
- includes/admin/include/template-library.php +3 -2
- includes/admin/templates/dashboard-element.php +1 -1
- includes/admin/templates/dashboard-gutenberg.php +1 -1
- includes/admin/templates/dashboard-module.php +1 -1
- includes/admin/templates/dashboard-sidebar.php +5 -5
- includes/admin/templates/dashboard-welcome.php +1 -1
- includes/base.php +2 -2
- includes/modules/variation-swatch/includes/Admin.php +1 -1
- readme.txt +214 -165
- woolentor_addons_elementor.php +3 -4
includes/admin/admin-init.php
CHANGED
@@ -87,8 +87,8 @@ class Woolentor_Admin_Init{
|
|
87 |
global $submenu;
|
88 |
|
89 |
self::$parent_menu_hook = add_menu_page(
|
90 |
-
esc_html__( '
|
91 |
-
esc_html__( '
|
92 |
self::MENU_CAPABILITY,
|
93 |
self::MENU_PAGE_SLUG,
|
94 |
NULL,
|
@@ -117,7 +117,7 @@ class Woolentor_Admin_Init{
|
|
117 |
* @return [void]
|
118 |
*/
|
119 |
public function enqueue_scripts( $hook ) {
|
120 |
-
if( $hook === '
|
121 |
wp_enqueue_style('woolentor-sweetalert');
|
122 |
wp_enqueue_style('woolentor-admin');
|
123 |
wp_enqueue_script('woolentor-install-manager');
|
@@ -250,7 +250,7 @@ class Woolentor_Admin_Init{
|
|
250 |
*/
|
251 |
public function print_module_setting_popup(){
|
252 |
$screen = get_current_screen();
|
253 |
-
if ( '
|
254 |
self::load_template('module-setting-popup');
|
255 |
}
|
256 |
}
|
@@ -262,7 +262,7 @@ class Woolentor_Admin_Init{
|
|
262 |
public function remove_all_notices(){
|
263 |
add_action('in_admin_header', function (){
|
264 |
$screen = get_current_screen();
|
265 |
-
if ( '
|
266 |
remove_all_actions('admin_notices');
|
267 |
remove_all_actions('all_admin_notices');
|
268 |
}
|
87 |
global $submenu;
|
88 |
|
89 |
self::$parent_menu_hook = add_menu_page(
|
90 |
+
esc_html__( 'ShopLentor', 'woolentor' ),
|
91 |
+
esc_html__( 'ShopLentor', 'woolentor' ),
|
92 |
self::MENU_CAPABILITY,
|
93 |
self::MENU_PAGE_SLUG,
|
94 |
NULL,
|
117 |
* @return [void]
|
118 |
*/
|
119 |
public function enqueue_scripts( $hook ) {
|
120 |
+
if( $hook === 'shoplentor_page_woolentor' || $hook === 'shoplentor_page_woolentor_templates' || $hook === 'shoplentor_page_woolentor_extension'){
|
121 |
wp_enqueue_style('woolentor-sweetalert');
|
122 |
wp_enqueue_style('woolentor-admin');
|
123 |
wp_enqueue_script('woolentor-install-manager');
|
250 |
*/
|
251 |
public function print_module_setting_popup(){
|
252 |
$screen = get_current_screen();
|
253 |
+
if ( 'shoplentor_page_woolentor' == $screen->base ) {
|
254 |
self::load_template('module-setting-popup');
|
255 |
}
|
256 |
}
|
262 |
public function remove_all_notices(){
|
263 |
add_action('in_admin_header', function (){
|
264 |
$screen = get_current_screen();
|
265 |
+
if ( 'shoplentor_page_woolentor' == $screen->base ) {
|
266 |
remove_all_actions('admin_notices');
|
267 |
remove_all_actions('all_admin_notices');
|
268 |
}
|
includes/admin/assets/images/banner/welcome.png
CHANGED
Binary file
|
includes/admin/include/class.extension-manager.php
CHANGED
@@ -32,7 +32,7 @@ class Woolentor_Extension_Manager{
|
|
32 |
}
|
33 |
|
34 |
public function scripts( $hook ) {
|
35 |
-
if( '
|
36 |
|
37 |
//JS
|
38 |
wp_enqueue_script( 'woolentor-install-manager' );
|
32 |
}
|
33 |
|
34 |
public function scripts( $hook ) {
|
35 |
+
if( 'shoplentor_page_woolentor_extension' == $hook ){
|
36 |
|
37 |
//JS
|
38 |
wp_enqueue_script( 'woolentor-install-manager' );
|
includes/admin/include/class.template-manager.php
CHANGED
@@ -582,7 +582,8 @@ class Woolentor_Template_Manager{
|
|
582 |
if( !empty( $data['sampletmpid'] ) && $data['sampletmpbuilder'] == 'elementor' ){
|
583 |
$templateurl = sprintf( Woolentor_Template_Library_Manager::get_api_templateapi(), $data['sampletmpid'] );
|
584 |
$response_data = Woolentor_Template_Library_Manager::get_content_remote_request( $templateurl );
|
585 |
-
|
|
|
586 |
}
|
587 |
|
588 |
if( $data['setdefaullt'] == 'yes' ) {
|
@@ -622,7 +623,8 @@ class Woolentor_Template_Manager{
|
|
622 |
if( !empty( $data['sampletmpid'] ) && $data['sampletmpbuilder'] == 'elementor' ){
|
623 |
$templateurl = sprintf( Woolentor_Template_Library_Manager::get_api_templateapi(), $data['sampletmpid'] );
|
624 |
$response_data = Woolentor_Template_Library_Manager::get_content_remote_request( $templateurl );
|
625 |
-
|
|
|
626 |
}
|
627 |
|
628 |
if( $data['setdefaullt'] == 'yes' ) {
|
582 |
if( !empty( $data['sampletmpid'] ) && $data['sampletmpbuilder'] == 'elementor' ){
|
583 |
$templateurl = sprintf( Woolentor_Template_Library_Manager::get_api_templateapi(), $data['sampletmpid'] );
|
584 |
$response_data = Woolentor_Template_Library_Manager::get_content_remote_request( $templateurl );
|
585 |
+
$json_value = wp_slash( wp_json_encode( $response_data['content']['content'] ) );
|
586 |
+
update_post_meta( $new_post_id, '_elementor_data', $json_value );
|
587 |
}
|
588 |
|
589 |
if( $data['setdefaullt'] == 'yes' ) {
|
623 |
if( !empty( $data['sampletmpid'] ) && $data['sampletmpbuilder'] == 'elementor' ){
|
624 |
$templateurl = sprintf( Woolentor_Template_Library_Manager::get_api_templateapi(), $data['sampletmpid'] );
|
625 |
$response_data = Woolentor_Template_Library_Manager::get_content_remote_request( $templateurl );
|
626 |
+
$json_value = wp_slash( wp_json_encode( $response_data['content']['content'] ) );
|
627 |
+
update_post_meta( $data['id'], '_elementor_data', $json_value );
|
628 |
}
|
629 |
|
630 |
if( $data['setdefaullt'] == 'yes' ) {
|
includes/admin/include/diagnostic-data.php
CHANGED
@@ -59,7 +59,7 @@ if ( ! class_exists( 'Woolentor_Diagnostic_Data' ) ) {
|
|
59 |
* Constructor.
|
60 |
*/
|
61 |
private function __construct() {
|
62 |
-
$this->project_name = '
|
63 |
$this->project_type = 'wordpress-plugin';
|
64 |
$this->project_version = WOOLENTOR_VERSION;
|
65 |
$this->data_center = 'https://connect.pabbly.com/workflow/sendwebhookdata/IjU3NjAwNTY1MDYzZTA0MzM1MjY1NTUzNyI_3D_pc';
|
59 |
* Constructor.
|
60 |
*/
|
61 |
private function __construct() {
|
62 |
+
$this->project_name = 'ShopLentor';
|
63 |
$this->project_type = 'wordpress-plugin';
|
64 |
$this->project_version = WOOLENTOR_VERSION;
|
65 |
$this->data_center = 'https://connect.pabbly.com/workflow/sendwebhookdata/IjU3NjAwNTY1MDYzZTA0MzM1MjY1NTUzNyI_3D_pc';
|
includes/admin/include/template-library.php
CHANGED
@@ -49,7 +49,7 @@ class Woolentor_Template_Library{
|
|
49 |
*/
|
50 |
public function scripts( $hook ) {
|
51 |
|
52 |
-
if( '
|
53 |
|
54 |
// CSS
|
55 |
wp_enqueue_style( 'woolentor-selectric' );
|
@@ -100,7 +100,8 @@ class Woolentor_Template_Library{
|
|
100 |
|
101 |
$new_post_id = wp_insert_post( $args );
|
102 |
|
103 |
-
|
|
|
104 |
update_post_meta( $new_post_id, '_elementor_template_type', $response_data['type'] );
|
105 |
update_post_meta( $new_post_id, '_elementor_edit_mode', 'builder' );
|
106 |
|
49 |
*/
|
50 |
public function scripts( $hook ) {
|
51 |
|
52 |
+
if( 'shoplentor_page_woolentor_templates' == $hook ){
|
53 |
|
54 |
// CSS
|
55 |
wp_enqueue_style( 'woolentor-selectric' );
|
100 |
|
101 |
$new_post_id = wp_insert_post( $args );
|
102 |
|
103 |
+
$json_value = wp_slash( wp_json_encode( $response_data['content']['content'] ) );
|
104 |
+
update_post_meta( $new_post_id, '_elementor_data', $json_value );
|
105 |
update_post_meta( $new_post_id, '_elementor_template_type', $response_data['type'] );
|
106 |
update_post_meta( $new_post_id, '_elementor_edit_mode', 'builder' );
|
107 |
|
includes/admin/templates/dashboard-element.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
<!-- Header Start -->
|
13 |
<div class="woolentor-admin-header">
|
14 |
<div class="woolentor-admin-header-content">
|
15 |
-
<h6 class="woolentor-admin-header-title"><?php echo esc_html__('
|
16 |
<p class="woolentor-admin-header-text"><?php echo esc_html__('You can enable or disable all options by one click.','woolentor');?></p>
|
17 |
</div>
|
18 |
<div class="woolentor-admin-header-actions">
|
12 |
<!-- Header Start -->
|
13 |
<div class="woolentor-admin-header">
|
14 |
<div class="woolentor-admin-header-content">
|
15 |
+
<h6 class="woolentor-admin-header-title"><?php echo esc_html__('ShopLentor Element','woolentor');?></h6>
|
16 |
<p class="woolentor-admin-header-text"><?php echo esc_html__('You can enable or disable all options by one click.','woolentor');?></p>
|
17 |
</div>
|
18 |
<div class="woolentor-admin-header-actions">
|
includes/admin/templates/dashboard-gutenberg.php
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
<!-- Header Start -->
|
26 |
<div class="woolentor-admin-header woolentor-admin-header-two">
|
27 |
<div class="woolentor-admin-header-content">
|
28 |
-
<h6 class="woolentor-admin-header-title"><?php echo esc_html__('
|
29 |
<p class="woolentor-admin-header-text"><?php echo esc_html__('You can enable or disable all blocks by one click.','woolentor');?></p>
|
30 |
</div>
|
31 |
<div class="woolentor-admin-header-actions">
|
25 |
<!-- Header Start -->
|
26 |
<div class="woolentor-admin-header woolentor-admin-header-two">
|
27 |
<div class="woolentor-admin-header-content">
|
28 |
+
<h6 class="woolentor-admin-header-title"><?php echo esc_html__('ShopLentor Blocks','woolentor');?></h6>
|
29 |
<p class="woolentor-admin-header-text"><?php echo esc_html__('You can enable or disable all blocks by one click.','woolentor');?></p>
|
30 |
</div>
|
31 |
<div class="woolentor-admin-header-actions">
|
includes/admin/templates/dashboard-module.php
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
<!-- Header Start -->
|
15 |
<div class="woolentor-admin-header">
|
16 |
<div class="woolentor-admin-header-content">
|
17 |
-
<h6 class="woolentor-admin-header-title"><?php echo esc_html__('
|
18 |
<p class="woolentor-admin-header-text"><?php echo esc_html__('You can enable or disable all options by one click.','woolentor'); ?></p>
|
19 |
</div>
|
20 |
<div class="woolentor-admin-header-actions">
|
14 |
<!-- Header Start -->
|
15 |
<div class="woolentor-admin-header">
|
16 |
<div class="woolentor-admin-header-content">
|
17 |
+
<h6 class="woolentor-admin-header-title"><?php echo esc_html__('ShopLentor Module','woolentor'); ?></h6>
|
18 |
<p class="woolentor-admin-header-text"><?php echo esc_html__('You can enable or disable all options by one click.','woolentor'); ?></p>
|
19 |
</div>
|
20 |
<div class="woolentor-admin-header-actions">
|
includes/admin/templates/dashboard-sidebar.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
|
6 |
<?php if( !is_plugin_active('woolentor-addons-pro/woolentor_addons_pro.php') ) :?>
|
7 |
<div class="woolentor-pro-banner">
|
8 |
-
<div class="woolentor-pro-banner-logo"><img src="<?php echo WOOLENTOR_ADDONS_PL_URL; ?>includes/admin/assets/images/logo.png" alt="<?php echo esc_attr__('
|
9 |
-
<p class="woolentor-pro-banner-summary"><?php echo esc_html__('
|
10 |
<ul class="woolentor-pro-banner-options">
|
11 |
<li><?php echo esc_html__('100+ Elementor Elements','woolentor'); ?></li>
|
12 |
-
<li><?php echo esc_html__('15 Product Custom Templates','woolentor'); ?></li>
|
13 |
-
<li><?php echo esc_html__('10 Custom Shop Page Templates','woolentor'); ?></li>
|
14 |
<li><?php echo esc_html__('Cart Page, Checkout, My Account, Registration and Thank you page custom layout template','woolentor'); ?></li>
|
15 |
</ul>
|
16 |
<a href="https://woolentor.com/pricing/?utm_source=admin&utm_medium=notice&utm_campaign=free" class="woolentor-pro-banner-btn" target="_blank"><?php echo esc_html__('Get Pro Now','woolentor'); ?><span class="icon">+</span></a>
|
@@ -27,7 +27,7 @@
|
|
27 |
</div>
|
28 |
<div class="woolentor-rating-trustpilot">
|
29 |
<a href="https://www.trustpilot.com/review/woolentor.com" target="_blank" >
|
30 |
-
<img src="<?php echo WOOLENTOR_ADDONS_PL_URL; ?>includes/admin/assets/images/trustpilot.png" alt="<?php echo esc_attr__('
|
31 |
</a>
|
32 |
</div>
|
33 |
</div>
|
5 |
|
6 |
<?php if( !is_plugin_active('woolentor-addons-pro/woolentor_addons_pro.php') ) :?>
|
7 |
<div class="woolentor-pro-banner">
|
8 |
+
<div class="woolentor-pro-banner-logo"><img src="<?php echo WOOLENTOR_ADDONS_PL_URL; ?>includes/admin/assets/images/logo.png" alt="<?php echo esc_attr__('Shoplentor Logo','woolentor'); ?>"></div>
|
9 |
+
<p class="woolentor-pro-banner-summary"><?php echo esc_html__('ShopLentor is one of the most popular WooCommerce Elementor Addons on WordPress.org. It has been downloaded more than 1,627,298 times and 90,000 stores are using ShopLentor plugin. Why not you?','woolentor'); ?></p>
|
10 |
<ul class="woolentor-pro-banner-options">
|
11 |
<li><?php echo esc_html__('100+ Elementor Elements','woolentor'); ?></li>
|
12 |
+
<li><?php echo esc_html__('15+ Product Custom Templates','woolentor'); ?></li>
|
13 |
+
<li><?php echo esc_html__('10+ Custom Shop Page Templates','woolentor'); ?></li>
|
14 |
<li><?php echo esc_html__('Cart Page, Checkout, My Account, Registration and Thank you page custom layout template','woolentor'); ?></li>
|
15 |
</ul>
|
16 |
<a href="https://woolentor.com/pricing/?utm_source=admin&utm_medium=notice&utm_campaign=free" class="woolentor-pro-banner-btn" target="_blank"><?php echo esc_html__('Get Pro Now','woolentor'); ?><span class="icon">+</span></a>
|
27 |
</div>
|
28 |
<div class="woolentor-rating-trustpilot">
|
29 |
<a href="https://www.trustpilot.com/review/woolentor.com" target="_blank" >
|
30 |
+
<img src="<?php echo WOOLENTOR_ADDONS_PL_URL; ?>includes/admin/assets/images/trustpilot.png" alt="<?php echo esc_attr__('Shoplentor trustpilot rating','woolentor'); ?>">
|
31 |
</a>
|
32 |
</div>
|
33 |
</div>
|
includes/admin/templates/dashboard-welcome.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
<div class="woolentor-admin-main-tab-pane-inner">
|
6 |
<!-- Banner Start -->
|
7 |
<div class="woolentor-admin-banner">
|
8 |
-
<img src="<?php echo WOOLENTOR_ADDONS_PL_URL; ?>includes/admin/assets/images/banner/welcome.png" alt="<?php echo esc_attr__('Welcome To
|
9 |
</div>
|
10 |
<!-- Banner End -->
|
11 |
|
5 |
<div class="woolentor-admin-main-tab-pane-inner">
|
6 |
<!-- Banner Start -->
|
7 |
<div class="woolentor-admin-banner">
|
8 |
+
<img src="<?php echo WOOLENTOR_ADDONS_PL_URL; ?>includes/admin/assets/images/banner/welcome.png" alt="<?php echo esc_attr__('Welcome To ShopLentor','woolentor');?>">
|
9 |
</div>
|
10 |
<!-- Banner End -->
|
11 |
|
includes/base.php
CHANGED
@@ -162,14 +162,14 @@ final class Base {
|
|
162 |
return;
|
163 |
}
|
164 |
$activation_url = wp_nonce_url( 'plugins.php?action=activate&plugin=' . $woocommerce . '&plugin_status=all&paged=1&s', 'activate-plugin_' . $woocommerce );
|
165 |
-
$message = sprintf( __( '%1$
|
166 |
$button_text = __( 'Activate WooCommerce', 'woolentor' );
|
167 |
} else {
|
168 |
if( ! current_user_can( 'activate_plugins' ) ) {
|
169 |
return;
|
170 |
}
|
171 |
$activation_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=woocommerce' ), 'install-plugin_woocommerce' );
|
172 |
-
$message = sprintf( __( '%1$
|
173 |
$button_text = __( 'Install WooCommerce', 'woolentor' );
|
174 |
}
|
175 |
$button = '<p><a href="' . $activation_url . '" class="button-primary">' . $button_text . '</a></p>';
|
162 |
return;
|
163 |
}
|
164 |
$activation_url = wp_nonce_url( 'plugins.php?action=activate&plugin=' . $woocommerce . '&plugin_status=all&paged=1&s', 'activate-plugin_' . $woocommerce );
|
165 |
+
$message = sprintf( __( '%1$sShopLentor Addons for Elementor%2$s requires %1$s"WooCommerce"%2$s plugin to be active. Please activate WooCommerce to continue.', 'woolentor' ), '<strong>', '</strong>');
|
166 |
$button_text = __( 'Activate WooCommerce', 'woolentor' );
|
167 |
} else {
|
168 |
if( ! current_user_can( 'activate_plugins' ) ) {
|
169 |
return;
|
170 |
}
|
171 |
$activation_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=woocommerce' ), 'install-plugin_woocommerce' );
|
172 |
+
$message = sprintf( __( '%1$sShopLentor Addons for Elementor%2$s requires %1$s"WooCommerce"%2$s plugin to be installed and activated. Please install WooCommerce to continue.', 'woolentor' ), '<strong>', '</strong>' );
|
173 |
$button_text = __( 'Install WooCommerce', 'woolentor' );
|
174 |
}
|
175 |
$button = '<p><a href="' . $activation_url . '" class="button-primary">' . $button_text . '</a></p>';
|
includes/modules/variation-swatch/includes/Admin.php
CHANGED
@@ -25,7 +25,7 @@ class Admin {
|
|
25 |
|
26 |
if (
|
27 |
$current_screen->post_type == 'product' ||
|
28 |
-
$hook_suffix == '
|
29 |
) {
|
30 |
if( $current_screen->base == 'post' ){
|
31 |
wp_enqueue_style( 'wp-color-picker' );
|
25 |
|
26 |
if (
|
27 |
$current_screen->post_type == 'product' ||
|
28 |
+
$hook_suffix == 'shoplentor_page_woolentor'
|
29 |
) {
|
30 |
if( $current_screen->base == 'post' ){
|
31 |
wp_enqueue_style( 'wp-color-picker' );
|
readme.txt
CHANGED
@@ -1,24 +1,24 @@
|
|
1 |
-
===
|
2 |
Contributors: hasthemes, htplugins, devitemsllc, zenaulislam, tarekht, aslamhasib
|
3 |
Tags: Elementor, WooCommerce, WooCommerce Elementor, WooCommerce Builder, WooCommerce Product
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 6.1
|
6 |
-
Stable tag: 2.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
-
Elementor WooCommerce Builder Addons, Quick View, Wishlist, Products Compare, Product Filter, Variation Swatches, Woo builder are functionalities that
|
11 |
|
12 |
== Description ==
|
13 |
If you own a WooCommerce website, you'll almost certainly want to use these capabilities: Woo Builder (Elementor WooCommerce Builder), WooCommerce Templates, WooCommerce Widgets, Elementor Widgets, product compare or Products Comparison table, WooCommerce order notifications, WooCommerce slider addons (Woo sliders), Woo recently viewed products widget, Sold out count, Elementor Addons, Woocommerce variation swatches module, Elementor Templates, WooCommerce Product Addons, WooCommerce products blocks, WooCommerce Gutenberg Blocks, custom product archive builder, WooCommerce product quick view, out of stock label customization, count sold product, flash sale countdown, Woo wishlist, etc.
|
14 |
|
15 |
-
By using
|
16 |
|
17 |
-
Have you ever searched for a WooCommerce Addons plugin for Elementor Page Builder or WooCommerce template builder for an online store that does not look ordinary like most of the stores out there?
|
18 |
|
19 |
The plugin comes with a powerful WooCommerce page builder for Elementor, allowing you to effortlessly design all WooCommerce pages from scratch using the Elementor page builder. As a result, you no longer have to rely on the default page designs of WooCommerce.
|
20 |
|
21 |
-
|
22 |
|
23 |
Apart from a large number of Elementor WooCommerce widgets, there are plenty of useful functionalities available in the form of modules. For example, product comparison, woo wishlist, quick view, Shopify style checkout, flash sale countdown, and so on. The main purpose of these modules is to offer the users as many options as users would need to enhance their website further. That way, they don't have to look for another third-party plugin just for a single feature.
|
24 |
|
@@ -138,24 +138,24 @@ You can see the plugin demo here 👉 [Live Demo](https://woolentor.com/?utm_sou
|
|
138 |
|
139 |
|
140 |
<strong>[WooCommerce Checkout Page Customization and Field Editor (Pro)](https://woolentor.com/doc/build-a-custom-checkout-page-template/)</strong>
|
141 |
-
|
142 |
|
143 |
-
Besides creating a custom checkout page,
|
144 |
|
145 |
-
By creating a custom Elementor WooCommerce Checkout page template according to your needs, you can get rid of the default Checkout page layout of WooCommerce. To help you achieve this,
|
146 |
|
147 |
If you want to improve customer experience through the checkout page of your store, you can utilize these WP WooCommerce checkout widgets or Elementor WooCommerce checkout widgets that enable you to do things like WooCommerce checkout customization, customize WooCommerce checkout page, customize checkout WooCommerce, Elementor WooCommerce checkout customization, etc.
|
148 |
|
149 |
Furthermore, the plugin comes with several beautifully designed pre-built Elementor WooCommerce checkout templates or WooCommerce templates for checkout that will allow you to create a custom checkout page within a minute.
|
150 |
|
151 |
<strong>[Customize WooCommerce Single Product Template](https://hasthemes.com/how-to-build-a-custom-product-template-using-woolentor-plugin/)</strong>
|
152 |
-
|
153 |
|
154 |
The free version has the option to create a common product page template layout throughout the entire store, and the pro version allows you to create different WooCommerce single templates for various WooCommerce single product pages individually.
|
155 |
|
156 |
-
With all the WooCommerce extra product addons or Elementor WooCommerce widgets offered by
|
157 |
|
158 |
-
|
159 |
|
160 |
|
161 |
==⭐ Available Widgets: ==
|
@@ -184,15 +184,19 @@ Apart from choosing and configuring a WooCommerce product layout, you can contro
|
|
184 |
|
185 |
Since the Elementor WooCommerce widget enables store owners to display their WooCommerce products in a responsive grid for WooCommerce stores, rest assured that the WooCommerce products will look great no matter which device visitors use to browse the store. If you prefer using the WooCommerce grid, WooCommerce grid layout, or WooCommerce responsive grid, this WooCommerce product grid widget will be tremendously helpful.
|
186 |
|
187 |
-
|
188 |
|
189 |
Aside from displaying WooCommerce products in a responsive grid for WooCommerce, this product grid widget offers a wide range of customization options so that you can control many aspects of this widget, such as the number of columns, the number of WooCommerce products, WooCommerce product order, and so on. If you want your WooCommerce product display to be visually appealing, so it captures potential customers' attention, you should try out the WooCommerce product grid widget. This WooCommerce product grid widget is perfect for an online storefront that wants to display their WooCommerce products in a more organized and visually appealing way.
|
190 |
|
191 |
-
In this Elementor WooCommerce widget, there are a few different WooCommerce product layout or product layouts for WooCommerce options available for store owners to choose from. Some of the most popular WooCommerce product layouts or product layouts for WooCommerce include the grid layout, the list layout, and the carousel layout.
|
192 |
|
193 |
Each WooCommerce product layout has its own advantages and disadvantages, so it's important to choose the right WooCommerce product layout for your online store based on your WooCommerce products and your customer's needs.
|
194 |
|
195 |
-
|
|
|
|
|
|
|
|
|
196 |
|
197 |
You can also choose to autoplay the responsive product slider carousel or have it pause on hover. With just a few clicks, you can configure the product carousel WooCommerce or product slider for WooCommerce widget to display products from specific WooCommerce product categories.
|
198 |
|
@@ -218,13 +222,13 @@ This way, you can engage with your store visitors by giving them a visual repres
|
|
218 |
|
219 |
<strong>[Universal Product Layouts for WooCommerce](https://woolentor.com/demo/product-layout/)</strong> – Create your own customized layout to display your WooCommerce products from several different options available in this Elementor WooCommerce builder widget (Woo builder). You can also choose from a selection of WooCommerce product layouts to better match your website’s look and feel.
|
220 |
|
221 |
-
That's not all; The Universal Product Layout WooCommerce widget of
|
222 |
|
223 |
A WooCommerce products carousel or WooCommerce product carousel slider is a wonderful way to showcase your WooCommerce products on your website. Using a WooCommerce product carousel, WooCommerce widget product slideshow, WooCommerce widget product slider, or Woo product slider addons you can highlight multiple WooCommerce products in a single space, making it easy for visitors to browse and choose the WooCommerce products they want.
|
224 |
|
225 |
You can also use an Elementor WooCommerce product carousel slider, WooCommerce product carousel slider, or promotional product slider to promote special WooCommerce offers or WooCommerce discounts. A promotional product slider allows businesses to display promotional WooCommerce products or WooCommerce sale product list on their WooCommerce store, making it easy for customers to find and purchase these specific WooCommerce products. Promotional product sliders are a simple and effective way to boost sales and improve the visibility of your WooCommerce products to potential customers.
|
226 |
|
227 |
-
If you're using WooCommerce with Elementor, you can easily incorporate an Elementor WooCommerce product carousel slider, WooCommerce widget product slider, WooCommerce widget product slideshow, or Woo carousel to your website using the Universal Product Layouts widget of
|
228 |
|
229 |
All you have to do is drag and drop the Elementor WooCommerce widget product slideshow, WooCommerce slider, or responsive slider into your WooCommerce layout and enable the Elementor WooCommerce product carousel slider or WooCommerce products slider (eCommerce slider) option. Moreover, the WooCommerce products carousel, product carousel WooCommerce or Elementor product carousel slider itself is mobile-friendly, so your potential visitors can easily scroll through the responsive slider or responsive product slider (Woo product slider / Woo slider) on their phone or tablet.
|
230 |
|
@@ -236,23 +240,23 @@ For example, if you want to use this versatile Elementor WooCommerce widget like
|
|
236 |
|
237 |
<strong>[WooCommerce Category List](https://woolentor.com/demo/category-view/)</strong> – WooCommerce category list widget helps you to show categories vertically and horizontally. There are several styles that you can choose from like category icon/image, and the number of products in the category. This helps visitors to understand how much product you have in the specific category. Control the WooCommerce product category list or WooCommerce category list style according to your requirements.
|
238 |
|
239 |
-
<strong>[WooCommerce Category Carousel / Slider / Grid for Elementor](https://woolentor.com/demo/category-grid/)</strong> – WooCommerce store can be represented in a WooCommerce category slider, subcategory slider, or WooCommerce category carousel. This is an elegant way to showcase WooCommerce product categories and subcategories on your website. WooCommerce Category Carousel is a powerful Elementor WooCommerce builder widget by
|
240 |
|
241 |
You can also control the WooCommerce category carousel according to your requirements. This Elementor WooCommerce widget work like a Woocommerce category slider plugin that can be used for WooCommerce product category slider for Elementor, WooCommerce product category slider, product category slider, product category carousel, WooCommerce product category, WooCommerce category carousel, WooCommerce category slider, or subcategory slider.
|
242 |
|
243 |
-
If you're looking for a way to showcase your WooCommerce product categories in a stylish and engaging way, then a WooCommerce category carousel or WooCommerce category slider is the way to go. With
|
244 |
|
245 |
-
The WooCommerce category carousel or WooCommerce category slider are two popular ways to showcase WooCommerce product category on your WooCommerce site. By leveraging a WooCommerce category carousel or WooCommerce category slider, you can have the flexibility to display WooCommerce product categories in a WooCommerce carousel or WooCommerce slider format. This WooCommerce category recent products feature of this
|
246 |
|
247 |
If you are planning to make your online storefront more accessible and easier to explore, then this wonderful Elementor WooCommerce widget or WooCommerce category showcase widget can help you achieve that by letting you showcase WooCommerce category list or WooCommerce category and product list in an eye-catching manner. You may be surprised at how easy it is to use this Elementor WooCommerce widget and how helpful it can be in showcasing your WooCommerce category.
|
248 |
|
249 |
-
This category slider for WooCommerce or WooCommerce category slider can help you encourage customers to browse through your WooCommerce product catalog. Additionally, a WooCommerce category carousel or product category carousel can also be helpful to increase the chances that customers will find the WooCommerce product they are looking for. So if you're looking for an easy way to incorporate a WooCommerce product category carousel or WooCommerce category carousel for WooCommerce category showcase, then be sure to check out this Elementor WooCommerce widget of
|
250 |
|
251 |
<strong>[WooCommerce Category Grid](https://woolentor.com/demo/category-grid/)</strong> – A very useful Elementor WooCommerce builder category product widget that can be utilized to showcase WooCommerce product category or Woocommerce category in a responsive grid layout on your WooCommerce store. This WooCommerce category post widget can also help you create a WooCommerce category list, WooCommerce category menu, or WooCommerce category showcase including WooCommerce category images.
|
252 |
|
253 |
There are options to manage WooCommerce category list and WooCommerce category image. Moreover, the WooCommerce category grid widget is fully responsive and mobile-friendly. In short, you can showcase WooCommerce product categories on your store in many different ways with the help of this Elementor WooCommerce builder widget. WooCommerce category grid is a great way to ehance the look of your WooCommerce store and make it more user friendly.
|
254 |
|
255 |
-
<strong>[WooCommerce Brands](https://woolentor.com/demo/brand-logo/)</strong> – Showcase brand logos within a grid or Woo carousel layout. WooCommerce Brands widget lets you display brands in different layouts. WooCommerce product brands is a
|
256 |
|
257 |
A brand carousel or brand slider makes it easy for you to display the brand logos in a way that is creative and engaging. Not to mention, they can help you attract new customers and build brand loyalty. Aside from showcasing your partner’s logo, you can show the product brands or WooCommerce brands whose products you sell on your online storefront. Furthermore, the brand logo Carousel or brand logo slider is fully responsive and mobile-friendly. If you want to make your business trustworthy to your customers, this brand carousel or brands slider widget is worth considering.
|
258 |
|
@@ -263,7 +267,7 @@ A brand carousel or brand slider makes it easy for you to display the brand logo
|
|
263 |
|
264 |
<strong>[Customer Review](https://woolentor.com/demo/customer-review/)</strong> – Display customer reviews and control the style and layout of the reviews. With the help of this Elementor WooCommerce builder widget (Woo builder), you can increase the credibility of your business by allowing potential customers to see what the previous customers are saying about a particular product.
|
265 |
|
266 |
-
<strong>[WooCommerce Testimonial](https://woolentor.com/demo/testimonial/)</strong> – Display product testimonials on your WooCommerce site using the testimonial widget of
|
267 |
|
268 |
Furthermore, the testimonial widget will allow you to create an Elementor testimonial carousel and display multiple product testimonials in a testimonial slider or testimonial carousel format. Not to mention, the testimonials widget is also responsive, so it will look great on all devices. If you are looking for a way to show off product testimonials from satisfied customers and build trust with store visitors, be sure to check out this testimonial widget!
|
269 |
|
@@ -275,7 +279,7 @@ Product image accordion is a powerful WooCommerce accordion widget that allows y
|
|
275 |
|
276 |
With this wonderful WooCommerce widgets accordion, you can even set filter as to what type of WooCommerce products you want to display on your online storefront. WoCommerce accordion is a great way to increase the visibility of your WooCommerce products and boost sales. So if you're looking for an easy way to add a WooCommerce accordion or image accordion to your WooCommerce site, a product Image Accordion or a responsive accordion is the perfect solution. Besides, the Product Image WooCommerce Accordion widget is easy to use and comes with a detailed documentation.
|
277 |
|
278 |
-
<strong>[Product Accordion](https://woolentor.com/demo/product-accordion/)</strong> – Add a simple but effective product accordion to your store and customize it according to your needs.
|
279 |
|
280 |
<strong>[AJAX Search Form](https://woolentor.com/demo/ajax-search-form/)</strong> – Incorporate an AJAX search form into your store so that your customers can get live WooCommerce search suggestions or WooCommerce search content when searching for a WooCommerce product or performing a WooCommerce search. Customers can find their desired WooCommerce products in a matter of seconds with the help of an AJAX-powered WooCommerce search bar.
|
281 |
|
@@ -285,7 +289,7 @@ Besides, this powerful AJAX WooCommerce search form module allows you to perform
|
|
285 |
|
286 |
<strong>[WooCommerce Recently Viewed Products](https://woolentor.com/doc/recently-viewed-products/)</strong> – When it comes to displaying the recently viewed products or recent viewed WooCommerce products by shoppers on a WooCommerce store, this WooCommerce recently viewed products widget or recent viewed products widget will come in handy. This way, visitors can see what WooCommerce products they recently viewed in a store, making it easier for them to decide. Moreover, you can control the number of products (recent viewed products) to showcase, product order, columns, visibility of elements, and some necessary styles to change the look and feel of these woo recently viewed products or recent viewed products.
|
287 |
|
288 |
-
With this WooCommerce recently viewed products widget or recent viewed WooCommerce products widget of
|
289 |
|
290 |
Customers who visit your WooCommerce store might not purchase anything on their first visit. However, you can encourage them to return and make a purchase by showing them the WooCommerce products they recently viewed or recent viewed products using the WooCommerce recently viewed products widget or Woo recently viewed products widget. This WooCommerce recently viewed products widget or recent viewed WooCommerce products widget displays a list of WooCommerce products that the customer has previously viewed, making it simple for them to find and purchase WooCommerce products they're interested in. The WooCommerce recently viewed products widget or Woo recently viewed products widget can be highly convenient for boosting customer engagement and conversion rates.
|
291 |
|
@@ -336,7 +340,7 @@ The WooCommerce related products slider plugin like widget is super easy to use
|
|
336 |
|
337 |
<strong>[Product Price](https://woolentor.com/demo/product/ship-your-idea/)</strong> – Show WooCommerce product prices dynamically on your store. This Elementor WooCommerce widget or product widget WooCommerce will automatically render the WooCommerce prices of a specific WooCommerce product. Even when a product is on sale, this simple widget will display both the WooCommerce sale price and the regular price. Besides, you can manage the style for the WooCommerce product price using this WooCommerce price addon.
|
338 |
|
339 |
-
<strong>[Product Rating](https://woolentor.com/demo/product/ship-your-idea/)</strong> – Display your WooCommerce product ratings on the product page using the product ratings widget of
|
340 |
|
341 |
<strong>[Product Reviews](https://woolentor.com/demo/product/ship-your-idea/)</strong> – Show WooCommerce product reviews or WooCommerce reviews along with a review form for the customers to submit WooCommerce reviews on a product. Customer reviews on the WooCommerce product page can be helpful for potential customers to understand how people are reviewing a particular product.
|
342 |
|
@@ -356,7 +360,7 @@ In addition, the WooCommerce product gallery slider or WooCommerce product galle
|
|
356 |
|
357 |
<strong>[Advanced Product Thumbnails with Zoom](https://woolentor.com/demo/product/image-zoom/)</strong> – One of the most useful WooCommerce product addons that helps you showcase your product images or WooCommerce images with a WooCommerce zoom effect. This Elementor WooCommerce builder widget (Woo builder) for WooCommerce product zoom plays the role of a WooCommerce zoom image plugin, WooCommerce zoom plugin, or product image zoom for WooCommerce plugin.
|
358 |
|
359 |
-
As
|
360 |
|
361 |
This product zoom WooCommerce or WooCommerce product zoom widget allows your customers to zoom in on WooCommerce product images, making it easier for them to see details and get a better idea of what WooCommerce product they are buying. If you're looking for an easy way to improve the usability of your WooCommerce site, the WooCommerce image zoom or WooCommerce product zoom can be a great solution to help you achieve that.
|
362 |
|
@@ -380,21 +384,25 @@ This product share widget works like a WooCommerce booster or booster for WooCom
|
|
380 |
|
381 |
You can also use the WooCommerce upsell products widget or WooCommerce product upsell widget like a WooCommerce upsell plugin to display similar or related upsells products on a specific product's detail page and persuade customers to spend more on those WooCommerce upsells products.
|
382 |
|
383 |
-
Upselling WooCommerce products is a common marketing technique
|
384 |
|
385 |
So, what are you waiting for? Make sure to leverage the WooCommerce product upsell feature in your store and multiply your sales.
|
386 |
|
387 |
-
<strong>[Upsell Product Layout (Custom)](https://woolentor.com/demo/product/ship-your-idea/)</strong> – Create a more personalized layout to display the WooCommerce upsell products. This WooCommerce builder product upsell widget or upsell WooCommerce widget gives you the ability to have even more control over the look and feel of the WooCommerce upsell products section. You can even showcase WooCommerce upsell products in an attractive WooCommerce upsell carousel or upsells carousel.
|
388 |
|
389 |
A WooCommerce upsell carousel or upsells carousel is an excellent way to increase your average order value and boost your sales. By offering upsell carousel or upsells carousel products, you can encourage customers to add items to their cart that they may not have otherwise considered. Upsell carousels or upsells carousels can be used to promote other WooCommerce products in your store.
|
390 |
|
|
|
|
|
391 |
With this Woo Builder widget for upsells products or product upsell, you can upsell WooCommerce products to your customers by displaying them within a beautiful upsell carousel or upsells carousel.
|
392 |
|
393 |
WooCommerce upsells can be a great strategy to boost your purchase total. You can quickly promote several WooCommerce upsell products on your site using a WooCommerce upsells carousel. By including WooCommerce upsell products in an upsells carousel, you can increase the chances that shoppers will see and purchase them.
|
394 |
|
395 |
The main key is to offer WooCommerce upsells products that customers might be interested in, based on what they're already looking at. Furthermore, a WooCommerce upsells carousel or product upsell carousel is easy to set up and configure. So you should definitely check this Elementor WooCommerce widget out.
|
396 |
|
397 |
-
|
|
|
|
|
398 |
|
399 |
And because the Elementor WooCommerce widget for upsells products or product upsell is highly customizable, store owners can tailor the experience to best fit their individual business needs. So if you're looking for a way to boost your eCommerce sales, consider using the WooCommerce upsells carousel widget or WooCommerce upsell carousel widget on your store. (Pro)
|
400 |
|
@@ -408,7 +416,7 @@ Therefore, if you intend to display the WooCommerce category and WooCommerce tag
|
|
408 |
|
409 |
<strong>[Call for Price](https://woolentor.com/doc/call-for-price/)</strong> – Allows you to add a click to call button to a WooCommerce store using which your customers will be able to call you to know the price of your WooCommer products. You may want to add WooCommerce products without showing the WooCommerce price, so your customers can call you to know the WooCommerce price. We found many websites that hide WooCommerce price for some of their WooCommerce products. For this type of website, we added this Elementor WooCommerce widget or WooCommerce price addon. If anyone clicks on the “Call for price” button from a mobile, he/she can easily contact you by phone call.
|
410 |
|
411 |
-
On a WooCommerce site, the "WooCommerce no price" and "call for price" button can be used when a seller does not want to display the price of a WooCommerce product upfront or when the customer needs to request a quote based on their requirements. For example,
|
412 |
|
413 |
The "call for price" button is typically used to link to a phone number, which customers can directly call through their mobile devices. This type of WooCommerce button can be pretty helpful when selling WooCommerce products that are made to order or when the WooCommerce price is variable based on customer needs.
|
414 |
|
@@ -420,7 +428,7 @@ Suggest Price Elementor WooCommerce widget works like a feature called WooCommer
|
|
420 |
|
421 |
This QR WooCommerce or WooCommerce QR widget makes it easy for customers to add a WooCommerce product to their cart. All they need to do is scan the simple QR code or WooCommerce QR code using their mobile devices, and the QR widget will automatically add the product to their cart. So if you're looking for a way to make your WooCommerce product or website more accessible, consider using a WooCommerce QR code widget.
|
422 |
|
423 |
-
<strong>[Social Share](https://woolentor.com/demo/product/ship-your-idea-3/)</strong> – Enable your customers to share your WooCommerce products on different social media platforms. This Social Share for WooCommerce widget makes it easy for customers to share products with their friends and followers on various social media sites. Furthermore, you can share products with just a few clicks using this product share widget of
|
424 |
|
425 |
<strong>[Stock Progress Bar](https://woolentor.com/demo/product/stock-progress-bar/)</strong> – Add a WooCommerce stock progress bar to display the number of WooCommerce ordered products and available products. This Elementor WooCommerce widget lets you visually represent the available stock of a specific product by using a WooCommerce progress bar or product stock count progress bar for WooCommerce. Once your prospective customers see the amount of WooCommerce ordered products, sales count WooCommerce, or WooCommerce sales count, it becomes easier for them to understand how much demand that particular WooCommerce product has on your store.
|
426 |
|
@@ -447,13 +455,13 @@ If you're running a WooCommerce store, it's important to setup a WooCommerce car
|
|
447 |
|
448 |
Cross selling WooCommerce products is an incredible technique for selling related WooCommerce products to a customer who has already purchased something. For example, a customer who is buying a dress may also be interested in purchasing a matching handbag.
|
449 |
|
450 |
-
|
451 |
|
452 |
When used correctly, cross selling can be an effective way to increase revenue and grow a business by recommending genuinely useful WooCommerce cross sell, cross-sells, or crosssell WooCommerce products to your potential store visitors.
|
453 |
|
454 |
<strong>[Cross Sell Product Layout (Custom)](https://woolentor.com/demo/cart/)</strong> – Get even more control over the cross selling products or WooCommerce cross sell products using this fantastic Cross-sell products widget or crosssells products widget.
|
455 |
|
456 |
-
|
457 |
|
458 |
Adding a beautiful carousel for WooCommerce cross sell products on the Cart page, product promotion on Cart becomes a lot easier than you might expect. This WooCommerce cross-sell products slider can be utilized as a promotional product slider as well to urge customers to purchase more items by showing relevant WooCommerce products to them.
|
459 |
|
@@ -524,49 +532,49 @@ Customers can shift between the two views simply by clicking on the grid and lis
|
|
524 |
|
525 |
<strong>[Horizontal Filter](https://woolentor.com/demo/horizontal-filter/)</strong> – Provide your store visitors with various Woocommerce products filters or Woo products filters horizontally (Woo filters) while having absolute control over the styles and layouts of those WooCommerce product filters or product filter for WooCommerce. You can leverage this WooCommerce product filter widget or Elementor filter widget like a WooCommerce filter plugin to add several product filters for WooCommerce or WooCommerce shop filters, such as WooCommerce search filter, category filter WooCommerce, WooCommerce search by price filter, WooCommerce search by tag, WooCommerce sort, and so on.
|
526 |
|
527 |
-
The horizontal product filter for WooCommerce is one of the powerful Elementor WooCommerce widgets of
|
528 |
|
529 |
These WooCommerce filters or WooCommerce products filter (Woo products filter) can be useful for shoppers and store owners, as it helps to improve the best shopping experience and increase conversions. On the other hand, this WooCommerce shop filter widget or WordPress WooCommerce product filter widget works like a WooCommerce filter plugin or product filter for WooCommerce plugin that provides your customers with intuitive WooCommerce filters when they search for a WooCommerce product in your store.
|
530 |
|
531 |
-
Different types of filtering options are offered by this product filter, WooCommerce shop filter, or Elementor filter widget of
|
532 |
|
533 |
<strong>[Vertical Filter](https://woolentor.com/demo/filter-vertical/)</strong> – Display several WordPress WooCommerce product filters vertically (Woo filters) on your WooCommerce store and get complete control over the styles and layouts of those WooCommerce product filters or product filter for WooCommerce. When you associate this WooCommerce product filter widget, Elementor filter widget, or vertical filter widget with an archive widget, your products will become WooCommerce filterable products. It means that store visitors can filter through the WooCommerce products or filterable products based on different WooCommerce filters or WooCommerce shop filters and easily find or view products they are looking for.
|
534 |
|
535 |
WooCommerce filterable products are a great way to keep WooCommerce products of your online storefront organized and allow customers to find precisely what they're looking for. Using this WooCommerce product filter widget or vertical filter widget, you can incorporate a WooCommerce products filter (Woo products filter) on the shop and archive pages that will enable your customers to filter products by various product attributes or criteria.
|
536 |
|
537 |
-
This WordPress WooCommerce product filter, WooCommerce shop filter or Elementor filter widget of
|
538 |
|
539 |
-
If you don't want your visitors to jump to another store, you must ensure that they don't have to wade through a long list of WooCommerce products in your store. In this case, you can add WooCommerce filterable products to your store by using the WooCommerce product filter widget offered in
|
540 |
|
541 |
== 🧱 Available Gutenberg Blocks: ==
|
542 |
|
543 |
<strong>General Gutenberg Blocks</strong>
|
544 |
|
545 |
-
<strong>[Product Tab](https://woolentor.com/demo/block-product-tab/)</strong> – WooCommerce product tabs Gutenberg block by
|
546 |
|
547 |
You can leverage the tabbed category product listing feature to display WooCommerce products from different product categories in various WooCommerce category tabs. Hence it becomes easy for customers to browse through WooCommerce products from each product category simply by clicking on a WooCommerce category tab. Furthermore, customers are not required to visit an individual archive or category page to view WooCommerce products from a specific product category.
|
548 |
|
549 |
If you want to remove product tab, you can also achieve this in the settings panel of this Gutenberg WooCommerce block. Doing so is helpful for customers who don't want to show particular WooCommerce product tabs or WooCommerce product categories in a tabbed format on their websites. The WooCommerce Gutenberg block for product tabs can be used on any page you want to showcase your WooCommerce products in a tabbed format based on product categories.
|
550 |
|
551 |
-
This WooCommerce block for Gutenberg block editor includes everything you need to get started with WooCommerce product tabs. Plus, the Gutenberg WooCommerce block offers the same functionalities as the WooCommerce product tabs widget or category tabs widget of
|
552 |
|
553 |
You can now include a tabbed category product listing section in your online storefront using the WooCommerce Gutenberg block editor of WordPress alone. This product tab WooCommerce block for Gutenberg offers customers a wide variety of customization options using which a store owner can control almost every element of this WooCommerce Gutenberg block or Gutenberg WooCommerce block.
|
554 |
|
555 |
-
<strong>[Product Grid](https://woolentor.com/demo/product-grid-block/)</strong> – The WooCommerce product grid Gutenberg block of
|
556 |
|
557 |
-
If you don't want to use the Elementor Page Builder and stick with the native Gutenberg editor, you should try out this Gutenberg block for WooCommerce product grid. It works exactly the same as the Elementor grid widget or product grid widget of
|
558 |
|
559 |
Furthermore, this Gutenberg block for WooCommerce gives you full control over the WooCommerce grid layout or WooComerce product grids. You can also choose how many WooCommerce products to display per page and what order they are displayed in. Displaying WooCommerce products in a responsive grid is crucial for a WooCommerce store, as it will ensure that visitors can browse through the store no matter what type of devices they use.
|
560 |
|
561 |
So, what are you waiting for? Leverage this WooCommerce product grid block for the Gutenberg block editor and exhibit your WooCommerce products in a more visually appealing way. If you are interested in displaying your WooCommerce products using the Gutenberg block editor only, this WooCommerce Gutenberg block could be a great solution.
|
562 |
|
563 |
-
<strong>[Customer Review](https://woolentor.com/demo/customer-review-block/)</strong> – Customer reviews are an essential part of any eCommerce business, and WooCommerce is no exception. The default customer review system in WooCommerce is basic, but you can improve it with
|
564 |
|
565 |
There is no limitation to using this customer reviews block or WooCommerce product reviews block only on a single product page. Customer reviews, WooCommerce reviews, or WooCommerce product reviews can even assist you in boosting conversion rates by fostering a sense of trust and credibility among potential customers.
|
566 |
|
567 |
The customer review Gutenberg block for WooCommerce can also be customized to match the look and feel of your website. Besides, the WooCommerce Gutenberg block includes an option to insert star ratings, making it easy for customers to leave ratings and feedback on a WooCommerce product. It also helps potential customers to make informed decisions about WooCommerce products.
|
568 |
|
569 |
-
<strong>[Promo Banner](https://woolentor.com/demo/block-promo-banner/)</strong> – In this competitive world of eCommerce business, it's important to make sure your WooCommerce products stand out from the crowd. One way to do this is to promote products using promo banners. Promo Banners are a great way to grab attention and draw potential customers to your WooCommerce site or online storefront. With
|
570 |
|
571 |
You can even use this Gutenberg block, like a banner widget or banner designer, to add banners or banner images to your website or blog. It doesn't have to be a WooCommerce page. This promo banner block for Gutenberg will help you design responsive banners or responsive banner images, so you can rest assured that all the promo banners will look great on any device.
|
572 |
|
@@ -576,7 +584,7 @@ You can also utilize an announcement banner in your WooCommerce store to notify
|
|
576 |
|
577 |
A special day offer banner can be a great way to attract attention and boost sales. By making special product offer and product promotions, businesses can encourage customers to buy more products and services. You can even use special offers to promote seasonal products, clearance items, or anything else you want to move quickly. With this Gutenberg block for special day offer, making special offers is easy and effective in a WooCommerce site. Just create a banner image and display it on your WooCommerce site. You can even use special offers to drive traffic to specific landing pages or product pages. So if you're looking for a way to boost sales and drive traffic, WooCommerce special offers are a great option.
|
578 |
|
579 |
-
<strong>[Image Marker](https://woolentor.com/demo/blocks-image-marker/)</strong> – Add image markers or image hotspots to an image using the image marker Gutenberg block of
|
580 |
|
581 |
This Gutenberg image marker block allows you to add a title and description for each product marker or WooCommerce marker. Customers can view the details in a tooltip option simply by hovering over the WooCommerce hotspots or image hotspots. Adding multiple markers to product images is a wonderful way to highlight specific parts of WooCommerce products on an online storefront. Not only do product markers add a touch of interactivity, but they can also help to boost engagement and encourage website visitors to explore your WooCommerce products in greater depth.
|
582 |
|
@@ -584,11 +592,11 @@ With this WooCommerce product marker or image marker Gutenberg block, you can qu
|
|
584 |
|
585 |
<strong>[Category Grid](https://woolentor.com/demo/block-category-grid/)</strong> – WooCommerce product category grid block allows you to show WooCommerce product categories in a grid view. The category grid view or categories grid is an excellent way for WooCommerce category showcase and makes it easy for customers to find what they're looking for. You can also use this category grid block or WooCommerce product category block for Gutenberg editor like a WooCommerce category product widget or WooCommerce product category widget to create an eye-catching WooCommerce category list, WooCommerce category carousel, product category carousel, WooCommerce category slider, product category slider, or category slider for WooCommerce.
|
586 |
|
587 |
-
This WooCommerce Gutenberg block for WooCommerce product category grid gives you the flexibility to control the style of WooCommerce category grid view and WooCommerce product category slider. You can even leverage this WooCommerce Gutenberg block to order category, limit the number of product categories, show count, set the number of columns, gutter space, and many more. On top of that, the WooCommerce category grid block is fully responsive and mobile-friendly. If you are looking for a way to display your WooCommerce product category compellingly, you should definitely check this WooCommerce Gutenberg block of
|
588 |
|
589 |
<strong>[Frequently Asked Questions](https://woolentor.com/demo/block-faq/)</strong> – If you're selling products online, then you know that product FAQ for WooCommerce is an important part of the customer journey. Not only do they help to provide common product question and answer, but they can also help to reduce returns and increase customer satisfaction.
|
590 |
|
591 |
-
Fortunately,
|
592 |
|
593 |
It is also possible to leverage this Gutenberg FAQ block for WooCommerce FAQ or product FAQ to place a FAQ in single product page or a responsive frequently asked questions section on any page you want on your WooCommerce website. The FAQ Gutenberg block or Gutenberg FAQ block even comes with many customization options using which you can design a stylish FAQ to improve the customer experience.
|
594 |
|
@@ -600,11 +608,11 @@ Even though the Gutenberg FAQ block is mainly designed to add a WordPress respon
|
|
600 |
|
601 |
<strong>[Brand Logo](https://woolentor.com/demo/block-brand-logo/)</strong> – Showcase the brand logos of your clients, partners, or sponsors on your WooCommerce website using this brand logo block for Gutenberg blocks editor. You can also add a title and URL along with the logo image. You can provide proof that your business is credible by displaying multiple brand logos in a beautiful logo grid. That's why it's essential to have a brand logo showcase on your website.
|
602 |
|
603 |
-
This brand logo showcase Gutenberg block or brand logo gallery Gutenberg block enables you to display a group of brand logo images in an eye-catching logo grid. In this Gutenberg logo block settings, you will find some customization options as well, using which you can personalize the look and feel of the brand logo grid section. If you're looking for a way to take your website to the next level, consider adding a brand logo showcase to your website leveraging the Gutenberg logo block of
|
604 |
|
605 |
Apart from showing the logos in a grid format, there are other ways to make them look even more attractive. For example, you can showcase brand logos in a brand logo carousel or brand logo slider, making it easy for visitors to browse through them. Even though the option to showcase the logos in a sliding format is not present in this brand logo showcase block for Gutenberg editor, we'll introduce them very soon. Make sure to keep an eye on our plugin update!
|
606 |
|
607 |
-
<strong>[Product Curvy](https://woolentor.com/demo/block-product-curvy/)</strong> – As the block name "Product Curvy" suggests, this WooCommerce Gutenberg block is a wonderful way to showcase your WooCommerce products in a captivating manner where the product images are shown inside a circular shape. This WooCommerce block for Gutenberg editor works precisely like the Elementor WooCommerce widget available in
|
608 |
|
609 |
You can also have the power to choose a layout for your WooCommerce product display. Besides, the WooCommerce product block for Gutenberg editor offers a plethora of customization options to manage each element rendered by this WooCommerce Gutenberg block.
|
610 |
|
@@ -618,7 +626,7 @@ Breadcrumb navigation is typically displayed as a row of links, with the current
|
|
618 |
|
619 |
Additionally, woocommerce breadcrumb makes it easy to return to a specific page if you need to. For example, if you are looking for a specific product on a woocommerce website, you can use the breadcrumbs to quickly find the page that you need. woocommerce breadcrumb is a simple, yet essential, tool for anyone who uses woocommerce websites.
|
620 |
|
621 |
-
<strong>[Archive Title](https://woolentor.com/demo/woolentor-template/shop-for-gutenberg-block/)</strong> – Show a custom archive title and a description on any archive page or archive template of your WooCommerce site using this custom Gutenberg block available in
|
622 |
|
623 |
<strong>[Store Feature](https://woolentor.com/demo/block-product-curvy/)</strong> – When setting up a WooCommerce store, it is essential to showcase your business or store features in order to attract customers. Therefore, showing off your WooCommerce store features is one of the most crucial aspects of running a successful eCommerce business. By informing your potential customers about the special features or perks of your WooCommerce store, you can let them know what you have to offer and why they should choose you.
|
624 |
|
@@ -629,7 +637,7 @@ With the help of this block for Gutenberg editor, you can highlight some of the
|
|
629 |
|
630 |
<strong>[Product Title](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display WooCommerce product title dynamically on the single product page or WooCommerce product page of your WooCommerce site. This WooCommerce product block for Gutenberg editor also gives you the ability to customize tha necessary layout and style for the WooCommerce product title. You can even choose what HTML heading tag you want to use for your WooCommerce product title.
|
631 |
|
632 |
-
<strong>[Product Description](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Another Gutenberg dynamic block by
|
633 |
|
634 |
<strong>[Product Price](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Use this WooComerce Gutenberg block to display WooCommerce product prices dynamically on the single product page. You can leverage this dynamic Gutenberg block or WordPress Gutenberg block to render the WooCommerce prices of your WooCommerce products. This advanced Gutenberg block can even display both the WooCommerce sale price and the regular price even when a product is on sale. Besides, you can manage the style for the WooCommerce product price using this Gutenberg block for WooCommerce.
|
635 |
|
@@ -637,7 +645,7 @@ With the help of this block for Gutenberg editor, you can highlight some of the
|
|
637 |
|
638 |
This way, you can focus on a particular feature of your WooCommerce product, especially if your WooCommerce product has multiple features. WooCommerce product short description is an essential part of any WooCommerce store as it helps improve the usability of your online storefront. So, if you are building your WooCommerce store with WordPress Gutenberg block editor, make sure you take advantage of this useful WooCommerce Gutenberg block.
|
639 |
|
640 |
-
<strong>[Add to Cart](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display a WooCommerce add to cart button on your website's WooCommerce product page or single product page by using this WooCommerce Gutenberg block of
|
641 |
|
642 |
Still, this WooCommerce Gutenberg block will not force you to place the single product cart button or add to cart button for WooCommerce in the same place. Meaning you can place this WordPress Gutenberg dynamic block anywhere you wish on the WooCommerce product page, WooCommerce product template, or WooCommerce single templates.
|
643 |
|
@@ -651,7 +659,7 @@ Viewing WooCommerce product images is an essential part of the buying process fo
|
|
651 |
|
652 |
A quality WooCommerce product image can influence the decision of a customer to add a product to their cart. In addition, a WooCommerce product image can convey extra details about a WooCommerce product, such as color options, features, and materials. Therefore, a great WooCommerce product image can help to enhance the shopper's experience and boost the conversion rates. So, make sure to this give this Gutenberg photo block a try!
|
653 |
|
654 |
-
<strong>[Product Rating](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display product ratings on the WooCommerce products of your store using this product rating Gutenberg block. For a shopper, product rating is one of the most important things to consider when choosing a product from an online store.
|
655 |
|
656 |
WooCommerce product ratings give your potential customers an insight into what other customers think about a specific WooCommerce product that can help them make a more informed purchasing decision. When visitors look at a WooCommerce rating or product rating, they get an honest opinion from someone who has actually used the product.
|
657 |
|
@@ -662,7 +670,7 @@ If you are interested in using the Gutenberg builder or Gutenberg editor, be sur
|
|
662 |
This WooCommerce Gutenberg block will give you full control over the presentation of the WooCommerce product tabs or product page tabs on the single product pages of your WooCommerce website. Aside from that, you can manage the appearance of product page tabs
|
663 |
for various devices by using the settings offered by this tabs block for Gutenberg block editor.
|
664 |
|
665 |
-
<strong>[Related Products](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> –
|
666 |
|
667 |
In short, this WooCommerce Gutenberg block or product block for Gutenberg editor is mainly designed to display WooCommerce related products, similar products, or product recommendations based on the WooCommerce product whose details page you are on. Since the WooCommerce Gutenberg block for WooCommerce related products lets you show products related to a specific category, it can be really handy for your customers to find the WooCommerce related products they are looking for.
|
668 |
|
@@ -670,19 +678,19 @@ You can also customize the style of the WooCommerce related products block to be
|
|
670 |
|
671 |
Showing WooCommerce recommendations or WooCommerce product recommendations on the product details page can improve the usability of your WooCommerce site. There are multiple ways to accomplish this, but one of the most effective ways is to add a WooCommerce related products section in a WooCommerce responsive grid or responsive grid for WooCommerce. By utilizing this WooCommerce Gutenberg block, you can easily achieve that.
|
672 |
|
673 |
-
<strong>[Product Meta](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display WooCommerce product meta on the single product page of your online storefront using
|
674 |
|
675 |
-
You can even customize WooCommerce terms or WooCommerce product meta like product category and Woo product tags on the WooCommerce product page or WooCommerce single product page using the product meta block of
|
676 |
|
677 |
Therefore, if you intend to display the WooCommerce category and WooCommerce tags of your WooCommerce products on the WooCommerce product page of your store, this WooCommerce product meta block for Gutenberg editor is an ideal solution.
|
678 |
|
679 |
-
<strong>[Additional Information or Additional Description](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – When it comes to providing customers with as much information about your WooCommerce product as possible, adding a product additional description or product additional information on the WooCommerce product page is very important. Enable Gutenberg product block for product additional information offered by
|
680 |
|
681 |
Displaying such information on the single product page can be handy for customers as they can view specific details for a WooCommerce product they are interested in. You can also customize some necessary styles to change the look and feel of the additional description block for the Gutenberg block editor. As a result, the description under products or additional Woo description can lead to happier customers and increased sales for your business.
|
682 |
|
683 |
Including product additional information or additional description under products on the product details page can also help to improve your search engine ranking, as it provides more content for search engines to index. If you're looking for a way to enhance your WooCommerce store, consider using this WooCommerce Gutenberg block and show additional product information for WooCommerce products on the WooCommerce product pages.
|
684 |
|
685 |
-
<strong>[Product Stock](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display the product stock or stock count on the WooCommerce product page or WooCommerce single product page using the product stock block of
|
686 |
|
687 |
Plus, they can see which WooCommerce product is low in terms of stock count. So, you can utilize this product page block to show WooCommerce stock currently available for the WooCommerce products of your store. On top of that, this stock quantity or stock count block for the WordPress Gutenberg editor can work like a WooCommerce products stock notification, stock available notice, stock alert, stock label, etc.
|
688 |
|
@@ -690,14 +698,51 @@ If a store owner manages the product stock for any WooCommerce product, this Woo
|
|
690 |
|
691 |
Once the store owner takes steps to update product stock from the WooCommerce product inventory, the out of stock message will be replaced by the new stock count. Aside from helping customers make informed purchase decisions, this Gutenberg builder block for product stock allows you to customize the style of your WooCommerce product stock status.
|
692 |
|
693 |
-
<strong>[QR Code](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Add a WooCommerce QR code to the product details page of your WooCommerce site using this WooCommerce QR block for the WordPress Gutenberg block editor. Once you include a WooCommerce QR code into the WooCommerce single product page, it will allow your customers to add their desired WooCommerce products to their carts from their mobile devices. To do so, they only need to scan the QR WooCommerce code or QR image generated by this simple QR code block of
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
|
695 |
-
|
696 |
|
697 |
-
|
698 |
|
|
|
699 |
|
700 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
701 |
|
702 |
= 🎨 WooCommerce Variation Swatches Module =
|
703 |
Love the look of those variations swatches in your favorite online store, but don’t know how to get that effect on your own site?
|
@@ -710,7 +755,7 @@ With the WooCommerce color swatches, you can provide your customers with a wide
|
|
710 |
|
711 |
Using WooCommerce variation swatches module Addon, as opposed to the traditional dropdown method of displaying product variants (variation switcher), provides exceptional convenience for your customers and gives your store a professional look. Product variation swatches for WooCommerce provide a user-friendly way for your customers to select product variations (variations checkbox for WooCommerce swatches attributes swatches) without having to click on the dropdown menu. Customers can quickly identify and choose from different colors, sizes, styles (color and label variations), or other attributes that you have selected for each product.
|
712 |
|
713 |
-
If you need a lot of flexibility and customizability, then WooCommerce variation swatches module or variation swatches addons is an excellent option.
|
714 |
|
715 |
Start using WooCommerce product variation swatches or variations swatches module now!
|
716 |
|
@@ -726,7 +771,7 @@ This way, shoppers can see what others have bought and get excited about their o
|
|
726 |
[More Details](https://woolentor.com/doc/sales-notification-for-woocommerce/)
|
727 |
|
728 |
= 🎨 WooCommerce Product Filter Module =
|
729 |
-
|
730 |
|
731 |
This way it becomes way more easier for them to find exactly what WooCommerce products they're looking for. And when customers can find their desired WooCommerce products, they're more likely to make a purchase.
|
732 |
|
@@ -736,7 +781,7 @@ One of the best noteworthy feature of this WooCommerce products filter module is
|
|
736 |
|
737 |
If you don’t want to see the filtered results immediately after you apply a product filter, you can also customize product filters even more by including an additional button to apply the selected filters in a click or clear the product filters. Doing so, will require visitors to click on the “Apply” button in order to search for products based on different product filters and “Clear” button to uncheck all the previously applied filters.
|
738 |
|
739 |
-
Once you add and configure a WooCommerce product filter item inside the WordPress product filter with WooCommerce module settings panel, an intuitive shortcode will be generated automatically. All you need to do is place the shortcode on the Shop and/or Archive page(s) alongside a product archive widget that
|
740 |
|
741 |
Apart from providing your customers with the option to select which product attributes to filter by, you can also include an AJAX search form or a handy WooCommerce search bar using which they can search WooCommerce products by keywords. Another incredible feature of this module is that it comes with an advanced product filter widget. This Elementor WooCommerce product filter widget is quite useful if you plan to add WooCommerce product filtering options through the Elementor page builder.
|
742 |
|
@@ -760,7 +805,7 @@ Store owners can provide special offers during the WooCommerce checkout process
|
|
760 |
Checkout Order Bump helps you boost conversions and sales by allowing you to offer a WooCommerce Order Bump product or service at the Checkout of your WooCommerce store. With Checkout Order Bump or WooCommerce order bump at the Checkout, there's no need for the customers to leave the page they're currently on. Checkout Order Bump is a great way to increase sales, reduce shopping cart abandonment, and boost your average order value using Upsell Order Bump Offer for WooCommerce is the way to go.
|
761 |
|
762 |
= ✏️ Rename Label =
|
763 |
-
|
764 |
|
765 |
[More Details](https://woolentor.com/doc/change-woocommerce-text/)
|
766 |
|
@@ -778,11 +823,11 @@ You can even utilize the WooCommerce product quick view popup, WooCommerce produ
|
|
778 |
[More Details](https://woolentor.com/doc/change-woocommerce-text/)
|
779 |
|
780 |
= ❤️ WooCommerce Wishlist Module =
|
781 |
-
|
782 |
|
783 |
-
Once you enable the products wishlist or product wishlist module of
|
784 |
|
785 |
-
Adding a wishlist widget to your WooCommerce store can be a great way to entice customers to come back and buy WooCommerce products they're interested in. Allowing customers to save WooCommerce products they want to purchase later, makes it easy for them to find and buy what they're looking for, increasing the chances that they'll make a purchase from your store.
|
786 |
|
787 |
After enabling this flexible wishlist or product wishlist module, a wishlist widget will be available, using which store owners can easily showcase the WooCommerce products available in a WooCommerce wishlist, wishlist WooCommerce, or Woo wishlist. This wishlist widget will also allow your customers to create and manage their own WooCommerce wishlists or Woo wishlists. Furthermore, this incredible products wishlist widget or WooCommerce wishlist widget can be quite handy if you want to promote specific WooCommerce products while improving your store's usability and engagement.
|
788 |
|
@@ -797,15 +842,15 @@ Furthermore, customers can compare prices of various WooCommerce compare product
|
|
797 |
|
798 |
Product comparison is a great way to engage your customers and help them make informed decisions about the products they're interested in. Product comparison is an essential tool for any WooCommerce store, and the Product Comparison for WooCommerce module or WooCommerce compare module makes it easy to add this functionality to your site.
|
799 |
|
800 |
-
This WooCommerce compare products or WooCommerce product compare module enables you to do WooCommerce products comparison or comparison products within WooCommerce compare tables. This remarkable feature for products compare or product compare can be handy for customers who want to find the best deals on items. Moreover, the WooCommerce product compare module or products comparison module of
|
801 |
|
802 |
Products comparison is a crucial feature in a WooCommerce site to compare WooCommerce products to find the best possible product for your needs. The process of product comparison involves the evaluation of two or more WooCommerce products with the aim of finding out the differences and similarities between them. With so many options available, a functionality to perform product comparison is valuable for finding the right product at the right price.
|
803 |
|
804 |
-
Fortunately,
|
805 |
|
806 |
Thus it becomes a lot easier for customers to make informed purchase decisions and find the best WooCommerce product in their budget with the help of this shopping comparison or comparison shopping feature. The compare WooCommerce product module is a great solution that can help you provide an informative and user-friendly shopping comparison experience to your customers. If you're looking for a way to incorporate the WooCommerce products comparison feature to your WooCommerce site, you should definitely check this WooCommerce product compare or WooCommerce compare products module out.
|
807 |
|
808 |
-
On top of that,
|
809 |
|
810 |
[More Details](https://woolentor.com/doc/woocommerce-product-compare/)
|
811 |
|
@@ -816,21 +861,21 @@ This incredible WooCommerce product countdown module or sales countdown WooComme
|
|
816 |
|
817 |
The sales countdown WooCommerce addon or countdown timer WooCommerce addon is the perfect way to drive sales and boost product awareness. This sales countdown WooCommerce addon or countdown timer WooCommerce allows you to display a WooCommerce sale countdown or WooCommerce timer on your WooCommerce product pages or WooCommerce product templates. You can create a sense of urgency that encourages customers to buy before time runs out. You can also use this WooCommerce sale countdown or countdown timer WooCommerce to highlight special WooCommerce discounts or WooCommerce promotion as well as promote seasonal products.
|
818 |
|
819 |
-
If you want to increase sales and encourage customers to buy your products, a sale countdown timer WooCommerce, product time countdown for WooCommerce, or countdown timer WooCommerce can help you with that. By leveraging
|
820 |
|
821 |
When it comes to showing WooCommerce discounts or WooCommerce offers for a limited time, this sale countdown timer WooCommerce or product time countdown for WooCommerce module allows you to add a WooCommerce countdown timer or countdown timer WooCommerce on your WooCommerce store to show WooCommerce sale time.This way, you can create a sense of urgency that will motivate customers to make a purchase. So if you're looking for a way to convert more of your potential visitors into customers, consider adding a sale countdown timer WooCommerce plugin to your online store.
|
822 |
|
823 |
Running a WooCommerce flash sales work like a charm if you want to boost your overall sales. A flash sale is referred to limited-time WooCommerce offers or WooCommerce discounts for a few chosen WooCommerce products in your store. If you want to make the most of your flash sale, it's essential to display a flash sale countdown timer, sale flash, or flash bar on your WooCommerce website. The WooCommerce flash sales module allows you to add a flash sale countdown or product time countdown for WooCommerce using which you can apply flash sales for a short period of time.
|
824 |
|
825 |
-
If you're running a sale or special WooCommerce promotion on your WooCommerce store, a WooCommerce countdown timer or sale countdown timer WooCommerce can be a great way to create a sense of urgency and encourage customers to buy before the deal expires. You can use the flash sale countdown or WooCommerce sale countdown module of
|
826 |
|
827 |
-
This sales countdown WooCommerce addon or product time countdown for WooCommerce addon can also help you countdown to the launch of a new WooCommerce product, WooCommerce products announcement, WooCommerce offers, or WooCommerce discounts.
|
828 |
|
829 |
This WooCommerce countdown timer works like a discount product scheduler, flash bars, flash notifications, sale flash, etc. Furthermore, with the discount product scheduler, you can set when the flash sale starts and ends. You can even configure on which WooCommerce products you want to apply discounts or display sale flash. With the proper planning and execution, a WooCommerce flash sale, sale flash, or flash bar can help you generate more revenues than usual.
|
830 |
|
831 |
By using the sale countdown timer WooCommerce or WooCommerce sale countdown module as a WooCommerce product scheduler or discount product scheduler, you can schedule the availability of WooCommerce products on your WooCommerce store. Moreover, the WooCommerce product countdown is packed with several useful features for configuring the time duration settings for each of your WooCommerce products. When it comes to providing a special WooCommerce discount or WooCommerce offer to a product, this sales countdown WooCommerce addon or WooCommerce product countdown is an ideal solution to set up a WooCommerce product scheduler or discount product scheduler.
|
832 |
|
833 |
-
Other than that, the sales countdown WooCommerce addon or countdown timer WooCommerce addon is highly customizable as well, so you can customize the appearance of the product time countdown for WooCommerce or WooCommerce timer to match your site's design. Therefore, if you're looking for a way to increase sales and clear out inventory quickly and efficiently, the sales countdown WooCommerce addon of
|
834 |
|
835 |
[More Details](https://woolentor.com/doc/enable-sales-countdown-timer-in-woocommerce/)
|
836 |
|
@@ -841,32 +886,32 @@ Furthermore, the Shopify-like Checkout module will provide the customers with an
|
|
841 |
|
842 |
If you haven't heard about Shopify yet, Shopify is a popular eCommerce platform known for its streamlined and uncluttered checkout process. Despite the fact that WooCommerce offers a plethora of flexibility and customization options, its checkout process is not as user-friendly as Shopify's. This Shopify-like checkout module can help you convert the WooCommerce checkout page into a Shopify-like Checkout that is considerably easier to use. For WooCommerce store owners who wish to increase the usability of their online storefront, a Shopify-like checkout page or WooCommerce checkout like Shopify can be an excellent option.
|
843 |
|
844 |
-
As any online shopper knows, the WooCommerce checkout process is often the most frustrating part of the experience. Having to enter all of your information, including shipping and billing addresses, can be time-consuming and confusing. Fortunately,
|
845 |
|
846 |
This WooCommerce module helps customers with WooCommerce quick order, WooCommerce fast checkout, or WooCommerce quick checkout through a Shopify-like checkout page or WooCommerce checkout like Shopify to further speed up the process.
|
847 |
|
848 |
[More Details](https://woolentor.com/shopify-style-checkout-page-in-woocommerce/)
|
849 |
|
850 |
= 📧 WooCommerce Email Customizer =
|
851 |
-
Email Customizer by
|
852 |
|
853 |
-
You can easily create beautiful WooCommerce email templates or WooCommerce email template designs using
|
854 |
|
855 |
Furthermore, the Elementor module includes a plethora of customization options, allowing you to get complete control over the look and style of those emails – so you can tailor the default WooCommerce email templates to match your brand perfectly. Whether you want to make a simple change or completely redesign your WooCommerce email templates, Email Customizer has you covered.
|
856 |
|
857 |
-
With the WooCommerce Email Builder module of
|
858 |
|
859 |
-
The WooCommerce email customizer is one of the most useful Elementor modules in
|
860 |
|
861 |
This WordPress email customizer or email customizer WooCommerce offers the functionality of a WooCommerce email customizer plugin. Users can use this WooCommerce email customizer module as a WooCommerce email template customizer, email template customizer for WooCommerce, or email customizer WordPress to customize the look and feel of the WooCommerce emails to match their branding.
|
862 |
|
863 |
In short, you can leverage this powerful WooCommerce email customizer module as a WooCommerce email builder, email template builder, responsive email builder, visual email builder, email template designer, WooCommerce email designer, etc. to create stunning Elementor email templates or WooCommerce email templates.
|
864 |
|
865 |
= 🤖 WooCommerce Email Marketing Automation =
|
866 |
-
|
867 |
|
868 |
= 🔍 Advanced AJAX Search Widget Module =
|
869 |
-
For any online store,
|
870 |
|
871 |
[More Details](https://woolentor.com/doc/how-to-use-woocommerce-ajax-search/)
|
872 |
|
@@ -881,16 +926,16 @@ You may use a Backorder module to enable your consumers to make purchases from y
|
|
881 |
[More Details](https://woolentor.com/doc/how-to-enable-woocommerce-backorder/)
|
882 |
|
883 |
= 📋 WordPress Post and WooCommerce Product Duplicator =
|
884 |
-
This module may be handy if you want to build a new product based on an existing one or make a minor modification to an established article. The
|
885 |
|
886 |
[More Details](https://woolentor.com/doc/duplicate-woocommerce-product/)
|
887 |
|
888 |
= ⭐ Checkout Field Editor or Checkout Field Manager (Pro) =
|
889 |
-
The checkout procedure is one of the most vital aspects of running a successful online store. It’s easy to lose customers at this crucial stage if you’re not careful. That’s why it’s essential to have a simple and user-friendly checkout process. With the
|
890 |
|
891 |
This powerful WooCommerce checkout editor or checkout field manager module gives you absolute control over the checkout fields by providing you with an intuitive WooCommerce checkout form editor, WooCommerce checkout editor that gives you the ability to add WooCommerce extra checkout fields or WooCommerce custom checkout fields to the WooCommerce checkout form. You can even personalize the order of WooCommerce checkout fields or WooCommerce additional fields for checkout as well as change their labels and placeholders.
|
892 |
|
893 |
-
Adding WooCommerce additional fields or WooCommerce custom checkout fields can be a great way to gather additional information from your customers. For example, you may want to add WooCommerce custom checkout fields for custom WooCommerce customer messages, gift wrap options, or instructions about a schedule delivery for WooCommerce. Fortunately,
|
894 |
|
895 |
You can use this WooCommerce add on or shipping module in Woo commerce to add WooCommerce custom fields to the checkout form. These extra WooCommerce fields can be extremely useful if you need to collect additional information from your customers during the checkout process. But that's not all; this custom WooCommerce checkout fields editor or WooCommerce checkout field manager module doesn't require you to write a single line of code. The WooCommerce custom checkout fields or checkout widget also allows you to manage the display of WooCommerce fields for checkout, set required fields, etc.
|
896 |
|
@@ -901,7 +946,7 @@ Moreover, with this checkout field editor for WooCommerce module or shipping mod
|
|
901 |
= ✨ Multi-Step Checkout (Pro) =
|
902 |
The checkout process is the most important step in your customer’s journey, and it should be as easy and seamless as possible. That’s why we created our Multi-Step Checkout feature that allows you to create a more effective and organized checkout page by dividing the process into several simpler steps.
|
903 |
|
904 |
-
With
|
905 |
|
906 |
Furthermore, this Elementor WooCommerce widget for WooCommerce multi-step checkout lets you customize the necessary styles while making the checkout process even more user-friendly.
|
907 |
|
@@ -915,7 +960,7 @@ Customers may utilize the partial payment option to make a part payment since th
|
|
915 |
= ✨ Pre-Order Module (Pro) =
|
916 |
A preorder is a purchase in which a customer makes before the product officially becomes available. Pre-ordering is a powerful marketing module that lets you reserve items ahead of time and charge customers a deposit or full payment. Customers also enjoy pre-ordering as it ensures that they will obtain the product right after it has been released. The main benefit of utilizing a pre-order strategy is that it allows you to grow eCommerce sales and forecast consumer demand.
|
917 |
|
918 |
-
|
919 |
|
920 |
As the WooCommerce preorder or pre-order WooCommerce feature gives a rough indication of which WooCommerce products are in demand, store owners can easily make an efficient marketing plan or strategy accordingly to create a buzz around those specific WooCommerce upcoming products. As a result, they understand beforehand which WooCommerce upcoming products are going to be popular once they are available in the store.
|
921 |
|
@@ -938,7 +983,7 @@ GTM Conversion Tracking Module helps you keep track of conversions and assign th
|
|
938 |
= 📌 Single Product Sticky Add to cart Module (Pro) =
|
939 |
One of the most essential aspects of building a successful online shop is to make the process as simple as possible for your consumers. Using the sticky add to cart WooCommerce module, you can easily achieve this as it allows you to incorporate a sticky add to cart bar, WooCommerce sticky bar, cart WooCommerce sticky, or sticky WooCommerce bar to the product page. A sticky add to cart, sticky cart bar, or stick bar for WooCommerce includes an add to cart button, a cart quantity field as well as some product information.
|
940 |
|
941 |
-
This sticky add to cart bar or stick bar for WooCommerce usually appears when you scroll past the add to cart button located at the top of the product details page. This sticky add to cart WooCommerce bar feature will come in handy when product information is too lengthy and customers can't decide whether or not to add a product to the cart. With
|
942 |
|
943 |
This WooCommerce sticky bar module enables you to add a sticky add to cart bar on the WooCommerce product page of your WooCommerce site. By keeping the WooCommerce bar 'stick' to the bottom of the WooCommerce product page, you can make it easy for visitors to add WooCommerce products to their cart, as the sticky add to cart for WooCommerce or WooCommerce sticky add to cart will usually stay in place even when customers scroll up and down.
|
944 |
|
@@ -947,17 +992,17 @@ When it comes to keeping your customers engaged while reducing shopping cart aba
|
|
947 |
[More Details](https://woolentor.com/doc/single-product-sticky-add-to-cart/)
|
948 |
|
949 |
= 🛒 Side Mini Cart / Cart Drawer Module (Pro) =
|
950 |
-
|
951 |
|
952 |
A WooCommerce side cart appears as a WooCommerce cart icon on the right-hand side or left-hand side of your screen. It kind of works like a WooCommerce floating mini cart, Woo floating minicart, floating cart for WooCommerce, Woo floating cart, or WooCommerce offcanvas cart. When users click on that Woocommerce cart icon of the side cart WooCommerce, they can view their cart items before checking out. That’s the reason why customers find the WooCommerce mini cart or WooCommerce minicart convenient enough as it helps them save a lot of time while purchasing.
|
953 |
|
954 |
-
Leverage this incredible side mini cart or WooCommerce minicart module of
|
955 |
|
956 |
-
A side cart WooCommerce can be a great way to encourage shoppers to complete their purchases. If you're looking for a Woo floating minicart, Woo floating cart, or floating cart for WooCommerce, then be sure to check out the side mini cart or side cart WooCommerce module of
|
957 |
|
958 |
This wonderful side mini cart module module enables you to add a WooCommerce side cart, side cart WooCommerce, WooCommerce minicart, WooCommerce mini cart, etc. that can help you convert many of your potential store visitors into loyal customers.
|
959 |
|
960 |
-
The Side Mini Cart module or side cart WooCommerce module of
|
961 |
|
962 |
This WooCommerce add to cart popup or WooCommerce added to cart popup allows customers to see what WooCommerce products they have in their carts. If you want to keep your online storefront organized, then the side cart WooCommerce module is the perfect solution for you.
|
963 |
|
@@ -966,7 +1011,7 @@ This WooCommerce add to cart popup or WooCommerce added to cart popup appears wh
|
|
966 |
[More Details](https://woolentor.com/doc/side-mini-cart-for-woocommerce/)
|
967 |
|
968 |
= 🔀 Redirect to checkout / Redirect to checkout after add to cart (Pro) =
|
969 |
-
The Redirect to Checkout Module of
|
970 |
|
971 |
[More Details](https://woolentor.com/doc/redirect-to-checkout/)
|
972 |
|
@@ -990,7 +1035,7 @@ This remarkable product table for WooCommerce or WooCommer product table plugin
|
|
990 |
<strong>💷 [Multi Currency for WooCommerce Currency Switcher](https://wordpress.org/plugins/wc-multi-currency/)</strong>
|
991 |
Multi-Currency for WooCommerce is a prominent currency switcher plugin for WooCommerce. This plugin allows your website or online store visitors to switch to their preferred currency or their country’s currency.
|
992 |
|
993 |
-
== <a href="https://woolentor.com/pricing/?utm_source=wprepo&utm_medium=freeplugin&utm_campaign=purchasepro">Purchase
|
994 |
|
995 |
|
996 |
==🎥 Video Tutorials or Plugin Tutorials: ==
|
@@ -1014,8 +1059,8 @@ Multi-Currency for WooCommerce is a prominent currency switcher plugin for WooCo
|
|
1014 |
[youtube https://youtu.be/-AXka-sc8hY]
|
1015 |
|
1016 |
== <a href="https://hasthemes.com/blog-category/woolentor/">More Video</a> ==
|
1017 |
-
* [Stock Progress bar for WooCommerce Product using
|
1018 |
-
* [How to build a custom product template using
|
1019 |
* [How to use Universal Product Grid Layouts](https://hasthemes.com/how-to-use-universal-product-grid-layouts/)
|
1020 |
|
1021 |
|
@@ -1028,14 +1073,14 @@ Multi-Currency for WooCommerce is a prominent currency switcher plugin for WooCo
|
|
1028 |
|
1029 |
|
1030 |
==🔥 Premium WooCommerce Themes Included in The Pro Version ==
|
1031 |
-
We have included a few premium WooCommerce themes in the
|
1032 |
[Flone](https://demo.hasthemes.com/flone-woo-preview/index.html)
|
1033 |
Flone is one of our most popular WooComemrce Themes using by 1000+ stores.
|
1034 |
[99Fy Pro](https://demo.hasthemes.com/99fy-preview/index.html)
|
1035 |
-
Pro version of 99fy is included in
|
1036 |
[Holmes](http://demo.hasthemes.com/wp/holmes-preview.html)
|
1037 |
Holmes is a multipurpose premium WooCommerce Theme.
|
1038 |
-
[Check all of the themes](https://hasthemes.com/plugins/woolentor-pro-woocommerce-page-builder/#themes), included in the
|
1039 |
|
1040 |
|
1041 |
==👨💻 Need Help? ==
|
@@ -1049,13 +1094,17 @@ Feel free to [Contact us](https://hasthemes.com/contact-us/)
|
|
1049 |
> Includes 360 Blocke & 15 Landing Pages.
|
1050 |
|
1051 |
== <a href="https://wordpress.org/plugins/elementor/">Elementor</a> page builder is required for this plugin. ==
|
1052 |
-
Elementor Pro is not required. But you can use
|
1053 |
|
1054 |
== Changelog ==
|
1055 |
|
|
|
|
|
|
|
|
|
1056 |
= Version: 2.4.8 - Date: 13-11-2022 =
|
1057 |
-
* Solved :
|
1058 |
-
* Solved :
|
1059 |
* Solved : Product Filter non taxonomy select warning.
|
1060 |
* Compatible: Multi Language supported.
|
1061 |
* Compatibility with the latest WooCommerce version.
|
@@ -1123,10 +1172,10 @@ Elementor Pro is not required. But you can use wooLentor with Elementor free & P
|
|
1123 |
* Added : Support to display currency position with space in product filter widgets.
|
1124 |
* Added : Style option in wishlist table addon.
|
1125 |
* Tweak : Wishlist and Compare menu position change.
|
1126 |
-
* Solved : Shopify style checkout module compatibility with
|
1127 |
* Solved : Tab labels change issue in Shopify Style Checkout page.
|
1128 |
* Solved : Repeater item adding issue in module setting.
|
1129 |
-
* Solved : PHP Warning issue, if
|
1130 |
* Solved : Wishlist counter PHP warning.
|
1131 |
* Solved : Client say color change issue in WL Testimonial Widget.
|
1132 |
|
@@ -1322,7 +1371,7 @@ Elementor Pro is not required. But you can use wooLentor with Elementor free & P
|
|
1322 |
* Solved spelling issue.
|
1323 |
* Solved related product column issue.
|
1324 |
* Solved sale notification ( Price, By ) translate issue.
|
1325 |
-
* Added
|
1326 |
* Added hide out of stock item option.
|
1327 |
* Solved product column issue ( For JetBuilder plugin )
|
1328 |
* Solved Tax Query conflick issue (For YITH WooCommerce Auctions premium )
|
@@ -1333,7 +1382,7 @@ Elementor Pro is not required. But you can use wooLentor with Elementor free & P
|
|
1333 |
* Solved sale badge style issue for twentytwentyone theme.
|
1334 |
|
1335 |
= Version: 1.8.9 - Date: 2021-24-05 =
|
1336 |
-
* Added
|
1337 |
* Added hide out of stock item option.
|
1338 |
* Solved product column issue ( For JetBuilder plugin )
|
1339 |
* Solved Tax Query conflick issue (For YITH WooCommerce Auctions premium )
|
@@ -1541,12 +1590,12 @@ Elementor Pro is not required. But you can use wooLentor with Elementor free & P
|
|
1541 |
* Enable/Disable All Elements Toggle button ( Pro ).
|
1542 |
|
1543 |
== Installation ==
|
1544 |
-
This section describes how to install the
|
1545 |
|
1546 |
= 1) Install =
|
1547 |
|
1548 |
1. Go to the WordPress Dashboard "Add New Plugin" section.
|
1549 |
-
2. Search For "
|
1550 |
3. Install, then Activate it.
|
1551 |
|
1552 |
= OR: =
|
@@ -1556,24 +1605,24 @@ This section describes how to install the WooLentor - WooCommerce Addons for Ele
|
|
1556 |
= 2) Configure =
|
1557 |
1. After install and activate the plugin you will get a notice to install Elementor Plugin ( If allready install it then do not show notice. ).
|
1558 |
2. To install the plugin click on the "Button" Install Elementor.
|
1559 |
-
3. ‘
|
1560 |
4. Create new Product slider or product tab and relax!
|
1561 |
|
1562 |
== Frequently Asked Questions ==
|
1563 |
|
1564 |
-
= Can I use
|
1565 |
|
1566 |
-
No,
|
1567 |
|
1568 |
-
= What are the minimum requirements for using
|
1569 |
|
1570 |
-
|
1571 |
|
1572 |
= How can I redirect to checkout page in WooCommerce? =
|
1573 |
|
1574 |
Yes, you can set up a redirect to the checkout page in WooCommerce to skip the cart page. To do this, please follow these steps:
|
1575 |
|
1576 |
-
1. Go to Dashboard >
|
1577 |
|
1578 |
2. Enable Redirect to Checkout on Add to Cart.
|
1579 |
|
@@ -1583,13 +1632,13 @@ You can follow this [doc](https://woolentor.com/doc/redirect-to-checkout/).
|
|
1583 |
|
1584 |
= How do I create a multi-step checkout in WooCommerce? =
|
1585 |
|
1586 |
-
|
1587 |
|
1588 |
-
1. Go to Dashboard >
|
1589 |
|
1590 |
2. Enable Multi-Step Checkout.
|
1591 |
|
1592 |
-
3. From
|
1593 |
|
1594 |
4. Select the template type “Checkout”
|
1595 |
|
@@ -1597,13 +1646,13 @@ WooLentor Pro provides an easy way to create a multi-step checkout. You can foll
|
|
1597 |
|
1598 |
= How do I add a wishlist in WooCommerce? =
|
1599 |
|
1600 |
-
|
1601 |
|
1602 |
-
1. Go to Dashboard >
|
1603 |
|
1604 |
2. Enable Wishlist.
|
1605 |
|
1606 |
-
3.
|
1607 |
|
1608 |
4. Make necessary setting
|
1609 |
|
@@ -1611,13 +1660,13 @@ WooLentor provides a module for Wishlist, using that module you can easily add a
|
|
1611 |
|
1612 |
Yes, you can use the WooCommerce Product Compare plugin to compare products in WooCommerce. You can follow the steps below:
|
1613 |
|
1614 |
-
1. Install and activate the
|
1615 |
|
1616 |
-
2. Go to Dashboard >
|
1617 |
|
1618 |
3. Enable the Compare module
|
1619 |
|
1620 |
-
4. Go to
|
1621 |
|
1622 |
5. Compare Settings
|
1623 |
|
@@ -1627,17 +1676,17 @@ You can check [full docs here](https://woolentor.com/doc/woocommerce-product-com
|
|
1627 |
|
1628 |
Yes, you can use the [WooCommerce Product Flash sale Countdown](https://woolentor.com/doc/enable-sales-countdown-timer-in-woocommerce/) module to add pre schedule or on schedule sale discount countdown timer in WooCommerce. You can follow the steps below:
|
1629 |
|
1630 |
-
1. Install and activate the
|
1631 |
|
1632 |
-
2. Go to Dashboard >
|
1633 |
|
1634 |
3. Enable the Countdown module.
|
1635 |
|
1636 |
-
WooCommerce Sales countdown can boost your sales. If you are looking for a countdown plugin for WooCommerce, then you can use
|
1637 |
|
1638 |
= How to enable backorder in WooCommerce? =
|
1639 |
|
1640 |
-
You can enable backorder in WooCommerce using
|
1641 |
|
1642 |
Step 1: Enable the Backorder module
|
1643 |
|
@@ -1649,11 +1698,11 @@ You can check the full online documentation about "How to enable backorder in Wo
|
|
1649 |
|
1650 |
= How to make WooCommerce checkout look like Shopify? =
|
1651 |
|
1652 |
-
|
1653 |
|
1654 |
-
1. Install and activate the
|
1655 |
|
1656 |
-
2. Go to Dashboard >
|
1657 |
|
1658 |
3. Enable the Shopify Style Checkout
|
1659 |
|
@@ -1663,37 +1712,37 @@ WooCommerce Ajax Search makes it quick and easy to search for items in your onli
|
|
1663 |
|
1664 |
= How do I add AJAX search in WooCommerce? =
|
1665 |
|
1666 |
-
|
1667 |
|
1668 |
You can follow these steps:
|
1669 |
|
1670 |
-
1. Install and activate the
|
1671 |
|
1672 |
-
2. Go to Dashboard >
|
1673 |
|
1674 |
3. Enable Ajax Search Widget.
|
1675 |
|
1676 |
-
4. Edit the page template from the
|
1677 |
|
1678 |
5. Drag and drop the ajax product search widget.
|
1679 |
|
1680 |
= How to add Ajax Add to cart on WooCommerce product Page? =
|
1681 |
|
1682 |
-
|
1683 |
|
1684 |
-
1. Install and activate the
|
1685 |
|
1686 |
-
2. Go to Dashboard >
|
1687 |
|
1688 |
3. Enable Ajax Add To Cart Module.
|
1689 |
|
1690 |
= How to add a custom field in WooCommerce checkout? =
|
1691 |
|
1692 |
-
|
1693 |
|
1694 |
-
1. Install and activate the
|
1695 |
|
1696 |
-
2. Go to Dashboard >
|
1697 |
|
1698 |
3. Enable Checkout Field Manager Module.
|
1699 |
|
@@ -1705,15 +1754,15 @@ WooLentor Pro has a module for WooCommerce checkout field editor. You can use th
|
|
1705 |
|
1706 |
= How do I add a Product size chart in WooCommerce? =
|
1707 |
|
1708 |
-
|
1709 |
|
1710 |
-
1. Install and activate the
|
1711 |
|
1712 |
-
2. Go to Dashboard >
|
1713 |
|
1714 |
3. Enable WooCommerce Size Chart Module.
|
1715 |
|
1716 |
-
4. Go to
|
1717 |
|
1718 |
5. Add a New Size chart.
|
1719 |
|
@@ -1721,11 +1770,11 @@ WooLentor pro has the size chart WooCommerce module. You can use the WooCommerce
|
|
1721 |
|
1722 |
= How to edit labels in WooCommerce? =
|
1723 |
|
1724 |
-
|
1725 |
|
1726 |
-
1. Install and activate the
|
1727 |
|
1728 |
-
2. Go to Dashboard >
|
1729 |
|
1730 |
3. Enable WooCommerce rename Label Module.
|
1731 |
|
@@ -1735,7 +1784,7 @@ WooLentor has a module for WooCommerce label customization. You can use the WooC
|
|
1735 |
|
1736 |
= How to show best selling products by category? =
|
1737 |
|
1738 |
-
You can show best selling products using the Universal Widget of
|
1739 |
|
1740 |
1. Edit a page where you want to add the best selling products.
|
1741 |
2. Drag the Universal Widget.
|
@@ -1743,9 +1792,9 @@ You can show best selling products using the Universal Widget of WooLentor. This
|
|
1743 |
|
1744 |
= How to show featured products in WooCommerce? =
|
1745 |
|
1746 |
-
|
1747 |
|
1748 |
-
1. Install and activate the
|
1749 |
|
1750 |
2. Edit a Page where you want to add the featured WooCommerce Products.
|
1751 |
|
@@ -1755,35 +1804,35 @@ WooLentor comes with the Universal Layout widget to show WooCommerce featured pr
|
|
1755 |
|
1756 |
5. To Show Featured product by category name, add categories.
|
1757 |
|
1758 |
-
= How does
|
1759 |
|
1760 |
-
Although
|
1761 |
|
1762 |
-
= Can I use
|
1763 |
|
1764 |
-
|
1765 |
|
1766 |
-
= Is it possible to add WooCommerce extra checkout fields with
|
1767 |
|
1768 |
-
Yes, of course.
|
1769 |
|
1770 |
-
= Can I use any third-party WooCommerce newsletter plugin with
|
1771 |
|
1772 |
-
As you may already know,
|
1773 |
|
1774 |
If you run into any issues, feel free to contact us through our support website.
|
1775 |
|
1776 |
-
= Does
|
1777 |
|
1778 |
-
Yes,
|
1779 |
|
1780 |
-
= How much does
|
1781 |
|
1782 |
-
With great pleasure, we'd like to inform you that our team runs several tests before releasing any major
|
1783 |
|
1784 |
-
Aside from that,
|
1785 |
|
1786 |
-
Another noteworthy fact is that no heavy PHP rendering is required to render any of
|
1787 |
|
1788 |
|
1789 |
== Screenshots ==
|
1 |
+
=== ShopLentor – WooCommerce Builder for Elementor & Gutenberg +10 Modules – All in One Solution (formerly WooLentor) ===
|
2 |
Contributors: hasthemes, htplugins, devitemsllc, zenaulislam, tarekht, aslamhasib
|
3 |
Tags: Elementor, WooCommerce, WooCommerce Elementor, WooCommerce Builder, WooCommerce Product
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 6.1
|
6 |
+
Stable tag: 2.4.9
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
+
Elementor WooCommerce Builder Addons, Quick View, Wishlist, Products Compare, Product Filter, Variation Swatches, Woo builder are functionalities that ShopLentor offers to your online store.
|
11 |
|
12 |
== Description ==
|
13 |
If you own a WooCommerce website, you'll almost certainly want to use these capabilities: Woo Builder (Elementor WooCommerce Builder), WooCommerce Templates, WooCommerce Widgets, Elementor Widgets, product compare or Products Comparison table, WooCommerce order notifications, WooCommerce slider addons (Woo sliders), Woo recently viewed products widget, Sold out count, Elementor Addons, Woocommerce variation swatches module, Elementor Templates, WooCommerce Product Addons, WooCommerce products blocks, WooCommerce Gutenberg Blocks, custom product archive builder, WooCommerce product quick view, out of stock label customization, count sold product, flash sale countdown, Woo wishlist, etc.
|
14 |
|
15 |
+
By using ShopLentor - Elementor WooCommerce Builder, you will get all in one plugin.
|
16 |
|
17 |
+
Have you ever searched for a WooCommerce Addons plugin for Elementor Page Builder or WooCommerce template builder for an online store that does not look ordinary like most of the stores out there? ShopLentor is an all-in-one solution that will not only give you complete control over the WooCommerce page designs but also provide you with several features.
|
18 |
|
19 |
The plugin comes with a powerful WooCommerce page builder for Elementor, allowing you to effortlessly design all WooCommerce pages from scratch using the Elementor page builder. As a result, you no longer have to rely on the default page designs of WooCommerce.
|
20 |
|
21 |
+
ShopLentor gives you the flexibility to design a custom Shop and Product details page using the free version of the plugin. The rest of the pages are also customizable with the pro version. Furthermore, ShopLentor - Elementor WooCommerce builder offers a plethora of Elementor widgets with extensive customization options that you can leverage for creating your store as per your needs.
|
22 |
|
23 |
Apart from a large number of Elementor WooCommerce widgets, there are plenty of useful functionalities available in the form of modules. For example, product comparison, woo wishlist, quick view, Shopify style checkout, flash sale countdown, and so on. The main purpose of these modules is to offer the users as many options as users would need to enhance their website further. That way, they don't have to look for another third-party plugin just for a single feature.
|
24 |
|
138 |
|
139 |
|
140 |
<strong>[WooCommerce Checkout Page Customization and Field Editor (Pro)](https://woolentor.com/doc/build-a-custom-checkout-page-template/)</strong>
|
141 |
+
ShopLentor Pro (Elementor WooCommerce Builder) allows you to customize the checkout page to reduce the bounce rate and increase the conversion rate. Sometimes, a custom checkout page is necessary for an eCommerce store or online storefront. ShopLentor Pro (Elementor WooCommerce Builder) makes it easy by providing several WooCommerce custom checkout options.
|
142 |
|
143 |
+
Besides creating a custom checkout page, ShopLentor allows removing or editing existing checkout page fields (billing and shopping fields). You can also add custom checkout page field like WooCommerce phone field or WooCommerce checkout phone.
|
144 |
|
145 |
+
By creating a custom Elementor WooCommerce Checkout page template according to your needs, you can get rid of the default Checkout page layout of WooCommerce. To help you achieve this, ShopLentor – Elementor WooCommerce Addon offers loads of Elementor WooCommerce builder widgets (Woo builder) specifically designed to create a custom Elementor WooCommerce Checkout page design.
|
146 |
|
147 |
If you want to improve customer experience through the checkout page of your store, you can utilize these WP WooCommerce checkout widgets or Elementor WooCommerce checkout widgets that enable you to do things like WooCommerce checkout customization, customize WooCommerce checkout page, customize checkout WooCommerce, Elementor WooCommerce checkout customization, etc.
|
148 |
|
149 |
Furthermore, the plugin comes with several beautifully designed pre-built Elementor WooCommerce checkout templates or WooCommerce templates for checkout that will allow you to create a custom checkout page within a minute.
|
150 |
|
151 |
<strong>[Customize WooCommerce Single Product Template](https://hasthemes.com/how-to-build-a-custom-product-template-using-woolentor-plugin/)</strong>
|
152 |
+
ShopLentor (Elementor WooCommerce Builder) allows you to create a custom single product template. With all the powerful WooCommerce product addons or Woo addons available in ShopLentor, creating a unique design for your WooCommerce product page is a breeze.
|
153 |
|
154 |
The free version has the option to create a common product page template layout throughout the entire store, and the pro version allows you to create different WooCommerce single templates for various WooCommerce single product pages individually.
|
155 |
|
156 |
+
With all the WooCommerce extra product addons or Elementor WooCommerce widgets offered by ShopLentor (Elementor WooCommerce Builder), you can easily manage the WooCommerce single product page or WooCommerce single templates. In addition, these WooCommerce extra product addons, or WooCommerce product addons, are compatible with other popular Elementor WooCommerce plugins.
|
157 |
|
158 |
+
ShopLentor (Elementor WooCommerce Builder) lets you assign a separate Elementor template for each of your WooCommerce products from the WooCommerce product settings. For example, in the product setting WooCommerce screen, you will find a dropdown option where you can choose a custom template for the details page of that specific WooCommerce product.
|
159 |
|
160 |
|
161 |
==⭐ Available Widgets: ==
|
184 |
|
185 |
Since the Elementor WooCommerce widget enables store owners to display their WooCommerce products in a responsive grid for WooCommerce stores, rest assured that the WooCommerce products will look great no matter which device visitors use to browse the store. If you prefer using the WooCommerce grid, WooCommerce grid layout, or WooCommerce responsive grid, this WooCommerce product grid widget will be tremendously helpful.
|
186 |
|
187 |
+
ShopLentor's product grid widget lets you showcase WooCommerce products in a WooCommerce grid layout. WooCommerce product grids are commonly used to display WooCommerce products on your online storefront. With this WooCommerce product grid widget or display product widget you can present your WooCommerce products on the WooCommerce shop and archive pages.
|
188 |
|
189 |
Aside from displaying WooCommerce products in a responsive grid for WooCommerce, this product grid widget offers a wide range of customization options so that you can control many aspects of this widget, such as the number of columns, the number of WooCommerce products, WooCommerce product order, and so on. If you want your WooCommerce product display to be visually appealing, so it captures potential customers' attention, you should try out the WooCommerce product grid widget. This WooCommerce product grid widget is perfect for an online storefront that wants to display their WooCommerce products in a more organized and visually appealing way.
|
190 |
|
191 |
+
In this Elementor WooCommerce widget, there are a few different WooCommerce product layout or product layouts for WooCommerce options available for store owners to choose from. Some of the most popular WooCommerce product layouts or product layouts for WooCommerce include the grid layout, the list layout, and the carousel layout.
|
192 |
|
193 |
Each WooCommerce product layout has its own advantages and disadvantages, so it's important to choose the right WooCommerce product layout for your online store based on your WooCommerce products and your customer's needs.
|
194 |
|
195 |
+
A WooCommerce product slider or Woo slider is a great way to showcase your WooCommerce products on your website. With a WooCommerce product slider or Woo slider, you can easily display your WooCommerce products in a stylish and eye-catching way. In addition, customers can scroll through your WooCommerce products in a WooCommerce product slider or Woo slider.
|
196 |
+
|
197 |
+
Furthermore, the Woo slider is easy to use and comes with many customization options. That means you can control the WooCommerce slider or eCommerce slider and configure the WooCommerce widget product slider as per your needs. If you're looking for a way to improve the look and feel of your online storefront and make it more user-friendly, then a WooCommerce product slider or Woo slider is definitely worth considering.
|
198 |
+
|
199 |
+
ShopLentor's feature to create a WooCommerce product carousel or product carousel WooCommerce is very handy when it comes to showcasing your WooCommerce products in a responsive product carousel or responsive product slider (Woo product slider / Woo slider). With this product carousel WooCommerce or WooCommerce product carousel widget, you can choose how many WooCommerce products to display, what order to display them in, and whether or not to show navigation arrows.
|
200 |
|
201 |
You can also choose to autoplay the responsive product slider carousel or have it pause on hover. With just a few clicks, you can configure the product carousel WooCommerce or product slider for WooCommerce widget to display products from specific WooCommerce product categories.
|
202 |
|
222 |
|
223 |
<strong>[Universal Product Layouts for WooCommerce](https://woolentor.com/demo/product-layout/)</strong> – Create your own customized layout to display your WooCommerce products from several different options available in this Elementor WooCommerce builder widget (Woo builder). You can also choose from a selection of WooCommerce product layouts to better match your website’s look and feel.
|
224 |
|
225 |
+
That's not all; The Universal Product Layout WooCommerce widget of ShopLentor (all in one for WooCommerce) can also be used as a WooCommerce product slider plugin, WooCommerce widget product slider, WooCommerce widget product slideshow, WooCommerce slider addons, or Woo product slider for WooCommerce using which you can add a product carousel WooCommerce, WooCommerce carousel, WooCommerce product carousel, WooCommerce products carousel, Elementor WooCommerce product carousel slider, Woocommerce products slider, or WooCommerce slider to your WooCommerce store.
|
226 |
|
227 |
A WooCommerce products carousel or WooCommerce product carousel slider is a wonderful way to showcase your WooCommerce products on your website. Using a WooCommerce product carousel, WooCommerce widget product slideshow, WooCommerce widget product slider, or Woo product slider addons you can highlight multiple WooCommerce products in a single space, making it easy for visitors to browse and choose the WooCommerce products they want.
|
228 |
|
229 |
You can also use an Elementor WooCommerce product carousel slider, WooCommerce product carousel slider, or promotional product slider to promote special WooCommerce offers or WooCommerce discounts. A promotional product slider allows businesses to display promotional WooCommerce products or WooCommerce sale product list on their WooCommerce store, making it easy for customers to find and purchase these specific WooCommerce products. Promotional product sliders are a simple and effective way to boost sales and improve the visibility of your WooCommerce products to potential customers.
|
230 |
|
231 |
+
If you're using WooCommerce with Elementor, you can easily incorporate an Elementor WooCommerce product carousel slider, WooCommerce widget product slider, WooCommerce widget product slideshow, or Woo carousel to your website using the Universal Product Layouts widget of ShopLentor (Elementor WooCommerce Builder) as a WooCommerce product slider plugin. A shop page product slider, WooCommerce slider, or WooCommerce widget product slideshow can help to increase conversion rates by making it easier for customers to find and purchase the WooCommerce products they're interested in.
|
232 |
|
233 |
All you have to do is drag and drop the Elementor WooCommerce widget product slideshow, WooCommerce slider, or responsive slider into your WooCommerce layout and enable the Elementor WooCommerce product carousel slider or WooCommerce products slider (eCommerce slider) option. Moreover, the WooCommerce products carousel, product carousel WooCommerce or Elementor product carousel slider itself is mobile-friendly, so your potential visitors can easily scroll through the responsive slider or responsive product slider (Woo product slider / Woo slider) on their phone or tablet.
|
234 |
|
240 |
|
241 |
<strong>[WooCommerce Category List](https://woolentor.com/demo/category-view/)</strong> – WooCommerce category list widget helps you to show categories vertically and horizontally. There are several styles that you can choose from like category icon/image, and the number of products in the category. This helps visitors to understand how much product you have in the specific category. Control the WooCommerce product category list or WooCommerce category list style according to your requirements.
|
242 |
|
243 |
+
<strong>[WooCommerce Category Carousel / Slider / Grid for Elementor](https://woolentor.com/demo/category-grid/)</strong> – WooCommerce store can be represented in a WooCommerce category slider, subcategory slider, or WooCommerce category carousel. This is an elegant way to showcase WooCommerce product categories and subcategories on your website. WooCommerce Category Carousel is a powerful Elementor WooCommerce builder widget by ShopLentor (Woo builder) that helps you add a WooCommerce product category slider, WooCommerce categories slider, subcategory slider, or category slider for WooCommerce.
|
244 |
|
245 |
You can also control the WooCommerce category carousel according to your requirements. This Elementor WooCommerce widget work like a Woocommerce category slider plugin that can be used for WooCommerce product category slider for Elementor, WooCommerce product category slider, product category slider, product category carousel, WooCommerce product category, WooCommerce category carousel, WooCommerce category slider, or subcategory slider.
|
246 |
|
247 |
+
If you're looking for a way to showcase your WooCommerce product categories in a stylish and engaging way, then a WooCommerce category carousel or WooCommerce category slider is the way to go. With ShopLentor (Elementor WooCommerce Builder), you can easily create a WooCommerce product category carousel or WooCommerce product category slider using the category grid WooCommerce widget. By using a WooCommerce product category slider for Elementor or category slider for WooCommerce, you can easily highlight different WooCommerce product categories on your site.
|
248 |
|
249 |
+
The WooCommerce category carousel or WooCommerce category slider are two popular ways to showcase WooCommerce product category on your WooCommerce site. By leveraging a WooCommerce category carousel or WooCommerce category slider, you can have the flexibility to display WooCommerce product categories in a WooCommerce carousel or WooCommerce slider format. This WooCommerce category recent products feature of this ShopLentor (WooCommerce builder) widget also allows you to showcase your most recent products in a user-friendly WooCommerce carousel or WooCommerce slider layout.
|
250 |
|
251 |
If you are planning to make your online storefront more accessible and easier to explore, then this wonderful Elementor WooCommerce widget or WooCommerce category showcase widget can help you achieve that by letting you showcase WooCommerce category list or WooCommerce category and product list in an eye-catching manner. You may be surprised at how easy it is to use this Elementor WooCommerce widget and how helpful it can be in showcasing your WooCommerce category.
|
252 |
|
253 |
+
This category slider for WooCommerce or WooCommerce category slider can help you encourage customers to browse through your WooCommerce product catalog. Additionally, a WooCommerce category carousel or product category carousel can also be helpful to increase the chances that customers will find the WooCommerce product they are looking for. So if you're looking for an easy way to incorporate a WooCommerce product category carousel or WooCommerce category carousel for WooCommerce category showcase, then be sure to check out this Elementor WooCommerce widget of ShopLentor (WooCommerce addon for wp page builder).
|
254 |
|
255 |
<strong>[WooCommerce Category Grid](https://woolentor.com/demo/category-grid/)</strong> – A very useful Elementor WooCommerce builder category product widget that can be utilized to showcase WooCommerce product category or Woocommerce category in a responsive grid layout on your WooCommerce store. This WooCommerce category post widget can also help you create a WooCommerce category list, WooCommerce category menu, or WooCommerce category showcase including WooCommerce category images.
|
256 |
|
257 |
There are options to manage WooCommerce category list and WooCommerce category image. Moreover, the WooCommerce category grid widget is fully responsive and mobile-friendly. In short, you can showcase WooCommerce product categories on your store in many different ways with the help of this Elementor WooCommerce builder widget. WooCommerce category grid is a great way to ehance the look of your WooCommerce store and make it more user friendly.
|
258 |
|
259 |
+
<strong>[WooCommerce Brands](https://woolentor.com/demo/brand-logo/)</strong> – Showcase brand logos within a grid or Woo carousel layout. WooCommerce Brands widget lets you display brands in different layouts. WooCommerce product brands is a ShopLentor's widget (Elementor WooCommerce builder widget) that helps you to showcase product brands in your store. With this Woo builder widget for brand logo showcase, you can display the brand logos of your partners or sponsors within a rotating brand logo carousel or brand logo slider.
|
260 |
|
261 |
A brand carousel or brand slider makes it easy for you to display the brand logos in a way that is creative and engaging. Not to mention, they can help you attract new customers and build brand loyalty. Aside from showcasing your partner’s logo, you can show the product brands or WooCommerce brands whose products you sell on your online storefront. Furthermore, the brand logo Carousel or brand logo slider is fully responsive and mobile-friendly. If you want to make your business trustworthy to your customers, this brand carousel or brands slider widget is worth considering.
|
262 |
|
267 |
|
268 |
<strong>[Customer Review](https://woolentor.com/demo/customer-review/)</strong> – Display customer reviews and control the style and layout of the reviews. With the help of this Elementor WooCommerce builder widget (Woo builder), you can increase the credibility of your business by allowing potential customers to see what the previous customers are saying about a particular product.
|
269 |
|
270 |
+
<strong>[WooCommerce Testimonial](https://woolentor.com/demo/testimonial/)</strong> – Display product testimonials on your WooCommerce site using the testimonial widget of ShopLentor. A testimonial widget or testimonials widget can be an excellent way to showcase customer testimonials on your online storefront. You can place the testimonial widget on any page you want. With this testimonials widget, you can show product testimonials in a testimonial grid format.
|
271 |
|
272 |
Furthermore, the testimonial widget will allow you to create an Elementor testimonial carousel and display multiple product testimonials in a testimonial slider or testimonial carousel format. Not to mention, the testimonials widget is also responsive, so it will look great on all devices. If you are looking for a way to show off product testimonials from satisfied customers and build trust with store visitors, be sure to check out this testimonial widget!
|
273 |
|
279 |
|
280 |
With this wonderful WooCommerce widgets accordion, you can even set filter as to what type of WooCommerce products you want to display on your online storefront. WoCommerce accordion is a great way to increase the visibility of your WooCommerce products and boost sales. So if you're looking for an easy way to add a WooCommerce accordion or image accordion to your WooCommerce site, a product Image Accordion or a responsive accordion is the perfect solution. Besides, the Product Image WooCommerce Accordion widget is easy to use and comes with a detailed documentation.
|
281 |
|
282 |
+
<strong>[Product Accordion](https://woolentor.com/demo/product-accordion/)</strong> – Add a simple but effective product accordion to your store and customize it according to your needs. ShopLentor's product accordion widget lets you showcase your WooCommerce products in a jQuery accordion or WooCommerce accordion where each product is displayed individually in an accordion pane. You can use this wp accordion widget to display certain WooCommerce products of your store differently.
|
283 |
|
284 |
<strong>[AJAX Search Form](https://woolentor.com/demo/ajax-search-form/)</strong> – Incorporate an AJAX search form into your store so that your customers can get live WooCommerce search suggestions or WooCommerce search content when searching for a WooCommerce product or performing a WooCommerce search. Customers can find their desired WooCommerce products in a matter of seconds with the help of an AJAX-powered WooCommerce search bar.
|
285 |
|
289 |
|
290 |
<strong>[WooCommerce Recently Viewed Products](https://woolentor.com/doc/recently-viewed-products/)</strong> – When it comes to displaying the recently viewed products or recent viewed WooCommerce products by shoppers on a WooCommerce store, this WooCommerce recently viewed products widget or recent viewed products widget will come in handy. This way, visitors can see what WooCommerce products they recently viewed in a store, making it easier for them to decide. Moreover, you can control the number of products (recent viewed products) to showcase, product order, columns, visibility of elements, and some necessary styles to change the look and feel of these woo recently viewed products or recent viewed products.
|
291 |
|
292 |
+
With this WooCommerce recently viewed products widget or recent viewed WooCommerce products widget of ShopLentor, you can enable your store visitors to keep track of the WooCommerce products they have viewed recently on your online storefront. This Elementor WooCommerce widget for recent viewed products can be used to remind your customers of items they were interested in but didn't purchase or to keep track of WooCommerce products they have already purchased so they don't accidentally buy them again.
|
293 |
|
294 |
Customers who visit your WooCommerce store might not purchase anything on their first visit. However, you can encourage them to return and make a purchase by showing them the WooCommerce products they recently viewed or recent viewed products using the WooCommerce recently viewed products widget or Woo recently viewed products widget. This WooCommerce recently viewed products widget or recent viewed WooCommerce products widget displays a list of WooCommerce products that the customer has previously viewed, making it simple for them to find and purchase WooCommerce products they're interested in. The WooCommerce recently viewed products widget or Woo recently viewed products widget can be highly convenient for boosting customer engagement and conversion rates.
|
295 |
|
340 |
|
341 |
<strong>[Product Price](https://woolentor.com/demo/product/ship-your-idea/)</strong> – Show WooCommerce product prices dynamically on your store. This Elementor WooCommerce widget or product widget WooCommerce will automatically render the WooCommerce prices of a specific WooCommerce product. Even when a product is on sale, this simple widget will display both the WooCommerce sale price and the regular price. Besides, you can manage the style for the WooCommerce product price using this WooCommerce price addon.
|
342 |
|
343 |
+
<strong>[Product Rating](https://woolentor.com/demo/product/ship-your-idea/)</strong> – Display your WooCommerce product ratings on the product page using the product ratings widget of ShopLentor (Woo Builder). You can also control the product rating or WooCommerce rating style with this product widget WooCommerce or WooCommerce product page widget.
|
344 |
|
345 |
<strong>[Product Reviews](https://woolentor.com/demo/product/ship-your-idea/)</strong> – Show WooCommerce product reviews or WooCommerce reviews along with a review form for the customers to submit WooCommerce reviews on a product. Customer reviews on the WooCommerce product page can be helpful for potential customers to understand how people are reviewing a particular product.
|
346 |
|
360 |
|
361 |
<strong>[Advanced Product Thumbnails with Zoom](https://woolentor.com/demo/product/image-zoom/)</strong> – One of the most useful WooCommerce product addons that helps you showcase your product images or WooCommerce images with a WooCommerce zoom effect. This Elementor WooCommerce builder widget (Woo builder) for WooCommerce product zoom plays the role of a WooCommerce zoom image plugin, WooCommerce zoom plugin, or product image zoom for WooCommerce plugin.
|
362 |
|
363 |
+
As ShopLentor's advanced product thumbnails with zoom widget works like a WooCommerce zoom image plugin or product image zoom for WooCommerce plugin, rest assured that you can effortlessly add a product image zoom or product photo zoom effect to the WooCommerce images of your store.
|
364 |
|
365 |
This product zoom WooCommerce or WooCommerce product zoom widget allows your customers to zoom in on WooCommerce product images, making it easier for them to see details and get a better idea of what WooCommerce product they are buying. If you're looking for an easy way to improve the usability of your WooCommerce site, the WooCommerce image zoom or WooCommerce product zoom can be a great solution to help you achieve that.
|
366 |
|
384 |
|
385 |
You can also use the WooCommerce upsell products widget or WooCommerce product upsell widget like a WooCommerce upsell plugin to display similar or related upsells products on a specific product's detail page and persuade customers to spend more on those WooCommerce upsells products.
|
386 |
|
387 |
+
Upselling WooCommerce products is a common marketing technique that encourages customers to purchase higher-priced WooCommerce products. By showcasing upsells products or WooCommerce upsell products, you can increase your store's average order value and boost profits.
|
388 |
|
389 |
So, what are you waiting for? Make sure to leverage the WooCommerce product upsell feature in your store and multiply your sales.
|
390 |
|
391 |
+
<strong>[Upsell Product Layout (Custom)](https://woolentor.com/demo/product/ship-your-idea/)</strong> – Create a more personalized layout to display the WooCommerce upsell products. This WooCommerce builder product upsell widget or upsell WooCommerce widget gives you the ability to have even more control over the look and feel of the WooCommerce upsell products or upsells products section. You can even showcase WooCommerce upsell products in an attractive WooCommerce upsell carousel or upsells carousel.
|
392 |
|
393 |
A WooCommerce upsell carousel or upsells carousel is an excellent way to increase your average order value and boost your sales. By offering upsell carousel or upsells carousel products, you can encourage customers to add items to their cart that they may not have otherwise considered. Upsell carousels or upsells carousels can be used to promote other WooCommerce products in your store.
|
394 |
|
395 |
+
WooCommerce upsells carousel or WooCommerce upsell carousel is a great way to showcase and sell WooCommerce products. The WooCommerce upsells carousel displays WooCommerce products in a rotating carousel. ShopLentor (Woo builder) makes it easy to create a WooCommerce upsells carousel or WooCommerce upsell carousel to showcase WooCommerce upsells products on your store.
|
396 |
+
|
397 |
With this Woo Builder widget for upsells products or product upsell, you can upsell WooCommerce products to your customers by displaying them within a beautiful upsell carousel or upsells carousel.
|
398 |
|
399 |
WooCommerce upsells can be a great strategy to boost your purchase total. You can quickly promote several WooCommerce upsell products on your site using a WooCommerce upsells carousel. By including WooCommerce upsell products in an upsells carousel, you can increase the chances that shoppers will see and purchase them.
|
400 |
|
401 |
The main key is to offer WooCommerce upsells products that customers might be interested in, based on what they're already looking at. Furthermore, a WooCommerce upsells carousel or product upsell carousel is easy to set up and configure. So you should definitely check this Elementor WooCommerce widget out.
|
402 |
|
403 |
+
With this Woo builder or Elementor WooCommerce widget, you can upsell products on the WooCommerce product page for each of your WooCommerce products. This feature to display WooCommerce upsell products or upsells products in a WooCommerce upsells carousel or WooCommerce upsell carousel can be leveraged to increase sales and encourage customers to buy higher-quality items.
|
404 |
+
|
405 |
+
Upsell products, upsell WooCommerce products, or WooCommerce upsell products can be displayed in many ways, including a product upsell carousel, WooCommerce upsell carousel, or WooCommerce upsells carousel, which allows customers to browse upsells products easily. So if you're looking for a way to increase your sales, consider utilizing the WooCommerce upsell products, or the product upsell widget of ShopLentor. With just a few clicks, you can start promoting additional WooCommerce products and generating additional revenue.
|
406 |
|
407 |
And because the Elementor WooCommerce widget for upsells products or product upsell is highly customizable, store owners can tailor the experience to best fit their individual business needs. So if you're looking for a way to boost your eCommerce sales, consider using the WooCommerce upsells carousel widget or WooCommerce upsell carousel widget on your store. (Pro)
|
408 |
|
416 |
|
417 |
<strong>[Call for Price](https://woolentor.com/doc/call-for-price/)</strong> – Allows you to add a click to call button to a WooCommerce store using which your customers will be able to call you to know the price of your WooCommer products. You may want to add WooCommerce products without showing the WooCommerce price, so your customers can call you to know the WooCommerce price. We found many websites that hide WooCommerce price for some of their WooCommerce products. For this type of website, we added this Elementor WooCommerce widget or WooCommerce price addon. If anyone clicks on the “Call for price” button from a mobile, he/she can easily contact you by phone call.
|
418 |
|
419 |
+
On a WooCommerce site, the "WooCommerce no price" and "call for price" button can be used when a seller does not want to display the price of a WooCommerce product upfront or when the customer needs to request a quote based on their requirements. For example, ShopLentor's "WooCommerce no price" or "call for price" button widget or WooCommerce price addon lets you hide the price of a WooCommerce product until the customer calls the store admin to know the WooCommerce price.
|
420 |
|
421 |
The "call for price" button is typically used to link to a phone number, which customers can directly call through their mobile devices. This type of WooCommerce button can be pretty helpful when selling WooCommerce products that are made to order or when the WooCommerce price is variable based on customer needs.
|
422 |
|
428 |
|
429 |
This QR WooCommerce or WooCommerce QR widget makes it easy for customers to add a WooCommerce product to their cart. All they need to do is scan the simple QR code or WooCommerce QR code using their mobile devices, and the QR widget will automatically add the product to their cart. So if you're looking for a way to make your WooCommerce product or website more accessible, consider using a WooCommerce QR code widget.
|
430 |
|
431 |
+
<strong>[Social Share](https://woolentor.com/demo/product/ship-your-idea-3/)</strong> – Enable your customers to share your WooCommerce products on different social media platforms. This Social Share for WooCommerce widget makes it easy for customers to share products with their friends and followers on various social media sites. Furthermore, you can share products with just a few clicks using this product share widget of ShopLentor. Whether you're looking to increase traffic to your WooCommerce product pages or offer customers a quick share option to share products with their friends, Social Share for WooCommerce widget is a wonderful option. (Pro)
|
432 |
|
433 |
<strong>[Stock Progress Bar](https://woolentor.com/demo/product/stock-progress-bar/)</strong> – Add a WooCommerce stock progress bar to display the number of WooCommerce ordered products and available products. This Elementor WooCommerce widget lets you visually represent the available stock of a specific product by using a WooCommerce progress bar or product stock count progress bar for WooCommerce. Once your prospective customers see the amount of WooCommerce ordered products, sales count WooCommerce, or WooCommerce sales count, it becomes easier for them to understand how much demand that particular WooCommerce product has on your store.
|
434 |
|
455 |
|
456 |
Cross selling WooCommerce products is an incredible technique for selling related WooCommerce products to a customer who has already purchased something. For example, a customer who is buying a dress may also be interested in purchasing a matching handbag.
|
457 |
|
458 |
+
ShopLentor’s Elementor WooCommerce widget to showcase WooCommerce cross sell products, or crosssell products which is fully compatible with WooCommerce's built-in feature for cross selling. By showing the customer relevant cross sell products or cross-sells products to the customer, businesses can increase the value of each transaction and boost their overall sales.
|
459 |
|
460 |
When used correctly, cross selling can be an effective way to increase revenue and grow a business by recommending genuinely useful WooCommerce cross sell, cross-sells, or crosssell WooCommerce products to your potential store visitors.
|
461 |
|
462 |
<strong>[Cross Sell Product Layout (Custom)](https://woolentor.com/demo/cart/)</strong> – Get even more control over the cross selling products or WooCommerce cross sell products using this fantastic Cross-sell products widget or crosssells products widget.
|
463 |
|
464 |
+
ShopLentor can assist you with product promotion on Cart for WooCommerce. If you are wondering how you can achieve this, ShopLentor's WooCommerce cross-sell products widget or WooCommerce cross sell widget is the way to go. With a little creativity, you can showcase WooCommerce crosssell products in a stunning cross sells or crosssells carousel.
|
465 |
|
466 |
Adding a beautiful carousel for WooCommerce cross sell products on the Cart page, product promotion on Cart becomes a lot easier than you might expect. This WooCommerce cross-sell products slider can be utilized as a promotional product slider as well to urge customers to purchase more items by showing relevant WooCommerce products to them.
|
467 |
|
532 |
|
533 |
<strong>[Horizontal Filter](https://woolentor.com/demo/horizontal-filter/)</strong> – Provide your store visitors with various Woocommerce products filters or Woo products filters horizontally (Woo filters) while having absolute control over the styles and layouts of those WooCommerce product filters or product filter for WooCommerce. You can leverage this WooCommerce product filter widget or Elementor filter widget like a WooCommerce filter plugin to add several product filters for WooCommerce or WooCommerce shop filters, such as WooCommerce search filter, category filter WooCommerce, WooCommerce search by price filter, WooCommerce search by tag, WooCommerce sort, and so on.
|
534 |
|
535 |
+
The horizontal product filter for WooCommerce is one of the powerful Elementor WooCommerce widgets of ShopLentor (all in one for WooCommerce), which allows customers to narrow down their WooCommerce search results by various product options, such as product categories, WooCommerce tags, etc.
|
536 |
|
537 |
These WooCommerce filters or WooCommerce products filter (Woo products filter) can be useful for shoppers and store owners, as it helps to improve the best shopping experience and increase conversions. On the other hand, this WooCommerce shop filter widget or WordPress WooCommerce product filter widget works like a WooCommerce filter plugin or product filter for WooCommerce plugin that provides your customers with intuitive WooCommerce filters when they search for a WooCommerce product in your store.
|
538 |
|
539 |
+
Different types of filtering options are offered by this product filter, WooCommerce shop filter, or Elementor filter widget of ShopLentor (WooCommerce addon for wp page builder). So, what are you waiting for? Leverage this incredible WordPress WooCommerce product filter widget on your store and enhance the user experience ans start converting more of your visitors into customers.
|
540 |
|
541 |
<strong>[Vertical Filter](https://woolentor.com/demo/filter-vertical/)</strong> – Display several WordPress WooCommerce product filters vertically (Woo filters) on your WooCommerce store and get complete control over the styles and layouts of those WooCommerce product filters or product filter for WooCommerce. When you associate this WooCommerce product filter widget, Elementor filter widget, or vertical filter widget with an archive widget, your products will become WooCommerce filterable products. It means that store visitors can filter through the WooCommerce products or filterable products based on different WooCommerce filters or WooCommerce shop filters and easily find or view products they are looking for.
|
542 |
|
543 |
WooCommerce filterable products are a great way to keep WooCommerce products of your online storefront organized and allow customers to find precisely what they're looking for. Using this WooCommerce product filter widget or vertical filter widget, you can incorporate a WooCommerce products filter (Woo products filter) on the shop and archive pages that will enable your customers to filter products by various product attributes or criteria.
|
544 |
|
545 |
+
This WordPress WooCommerce product filter, WooCommerce shop filter or Elementor filter widget of ShopLentor (Woo builder) provides different types of filterting options such as WooCommerce search filter, category filter WooCommerce that can be nifty to improve the shopping experience on your WooCommerce store while driving more sales.
|
546 |
|
547 |
+
If you don't want your visitors to jump to another store, you must ensure that they don't have to wade through a long list of WooCommerce products in your store. In this case, you can add WooCommerce filterable products to your store by using the WooCommerce product filter widget offered in ShopLentor (Woo builder). This product filter widget or Woo products filter widget can help you enhance the overall user experience by allowing the users to filter down the WooCommerce products that don't comply with their needs.
|
548 |
|
549 |
== 🧱 Available Gutenberg Blocks: ==
|
550 |
|
551 |
<strong>General Gutenberg Blocks</strong>
|
552 |
|
553 |
+
<strong>[Product Tab](https://woolentor.com/demo/block-product-tab/)</strong> – WooCommerce product tabs Gutenberg block by ShopLentor lets you showcase your WooCommerce products category wise in a tabbed format. If you want to organize your WooCommerce products and make them easier to find for your store visitors, this Gutenberg WooCommerce block for WooCommerce product tabs can be handy.
|
554 |
|
555 |
You can leverage the tabbed category product listing feature to display WooCommerce products from different product categories in various WooCommerce category tabs. Hence it becomes easy for customers to browse through WooCommerce products from each product category simply by clicking on a WooCommerce category tab. Furthermore, customers are not required to visit an individual archive or category page to view WooCommerce products from a specific product category.
|
556 |
|
557 |
If you want to remove product tab, you can also achieve this in the settings panel of this Gutenberg WooCommerce block. Doing so is helpful for customers who don't want to show particular WooCommerce product tabs or WooCommerce product categories in a tabbed format on their websites. The WooCommerce Gutenberg block for product tabs can be used on any page you want to showcase your WooCommerce products in a tabbed format based on product categories.
|
558 |
|
559 |
+
This WooCommerce block for Gutenberg block editor includes everything you need to get started with WooCommerce product tabs. Plus, the Gutenberg WooCommerce block offers the same functionalities as the WooCommerce product tabs widget or category tabs widget of ShopLentor, designed exclusively for the Elementor page builder. Meaning you are not forced to use the Elementor page builder anymore.
|
560 |
|
561 |
You can now include a tabbed category product listing section in your online storefront using the WooCommerce Gutenberg block editor of WordPress alone. This product tab WooCommerce block for Gutenberg offers customers a wide variety of customization options using which a store owner can control almost every element of this WooCommerce Gutenberg block or Gutenberg WooCommerce block.
|
562 |
|
563 |
+
<strong>[Product Grid](https://woolentor.com/demo/product-grid-block/)</strong> – The WooCommerce product grid Gutenberg block of ShopLentor enables you to display WooCommerce products in a responsive grid. You can place this product grid Gutenberg block anywhere you like on your WooCommerce site. The output rendered by this WooCommerce Gutenberg block is fully responsive and will adjust to the screen size of the device it is being viewed on. It is also possible to customize the WooCommerce products grid block from the Gutenberg block settings.
|
564 |
|
565 |
+
If you don't want to use the Elementor Page Builder and stick with the native Gutenberg editor, you should try out this Gutenberg block for WooCommerce product grid. It works exactly the same as the Elementor grid widget or product grid widget of ShopLentor. Meaning you can utilize this WooCommerce Gutenberg block to showcase your WooCommerce products in a responsive grid for WooCommerce. All you have to do is enable Gutenberg product block for WooCommerce responsive grid.
|
566 |
|
567 |
Furthermore, this Gutenberg block for WooCommerce gives you full control over the WooCommerce grid layout or WooComerce product grids. You can also choose how many WooCommerce products to display per page and what order they are displayed in. Displaying WooCommerce products in a responsive grid is crucial for a WooCommerce store, as it will ensure that visitors can browse through the store no matter what type of devices they use.
|
568 |
|
569 |
So, what are you waiting for? Leverage this WooCommerce product grid block for the Gutenberg block editor and exhibit your WooCommerce products in a more visually appealing way. If you are interested in displaying your WooCommerce products using the Gutenberg block editor only, this WooCommerce Gutenberg block could be a great solution.
|
570 |
|
571 |
+
<strong>[Customer Review](https://woolentor.com/demo/customer-review-block/)</strong> – Customer reviews are an essential part of any eCommerce business, and WooCommerce is no exception. The default customer review system in WooCommerce is basic, but you can improve it with ShopLentor's customer review Gutenberg block. This customer reviews WooCommerce Gutenberg block allows you to add and display customer reviews on any post or page you wish.
|
572 |
|
573 |
There is no limitation to using this customer reviews block or WooCommerce product reviews block only on a single product page. Customer reviews, WooCommerce reviews, or WooCommerce product reviews can even assist you in boosting conversion rates by fostering a sense of trust and credibility among potential customers.
|
574 |
|
575 |
The customer review Gutenberg block for WooCommerce can also be customized to match the look and feel of your website. Besides, the WooCommerce Gutenberg block includes an option to insert star ratings, making it easy for customers to leave ratings and feedback on a WooCommerce product. It also helps potential customers to make informed decisions about WooCommerce products.
|
576 |
|
577 |
+
<strong>[Promo Banner](https://woolentor.com/demo/block-promo-banner/)</strong> – In this competitive world of eCommerce business, it's important to make sure your WooCommerce products stand out from the crowd. One way to do this is to promote products using promo banners. Promo Banners are a great way to grab attention and draw potential customers to your WooCommerce site or online storefront. With ShopLentor's promo banner Gutenberg block, you can easily create and customize promo banners to promote products on your WooCommerce store.
|
578 |
|
579 |
You can even use this Gutenberg block, like a banner widget or banner designer, to add banners or banner images to your website or blog. It doesn't have to be a WooCommerce page. This promo banner block for Gutenberg will help you design responsive banners or responsive banner images, so you can rest assured that all the promo banners will look great on any device.
|
580 |
|
584 |
|
585 |
A special day offer banner can be a great way to attract attention and boost sales. By making special product offer and product promotions, businesses can encourage customers to buy more products and services. You can even use special offers to promote seasonal products, clearance items, or anything else you want to move quickly. With this Gutenberg block for special day offer, making special offers is easy and effective in a WooCommerce site. Just create a banner image and display it on your WooCommerce site. You can even use special offers to drive traffic to specific landing pages or product pages. So if you're looking for a way to boost sales and drive traffic, WooCommerce special offers are a great option.
|
586 |
|
587 |
+
<strong>[Image Marker](https://woolentor.com/demo/blocks-image-marker/)</strong> – Add image markers or image hotspots to an image using the image marker Gutenberg block of ShopLentor. This image marker block will allow you to add multiple markers to any image you want. Usually, store owners use WordPress markers or WooCommerce markers on various positions of a product image to show detailed information for every specific part of that product where the WooCoomerce markers are added.
|
588 |
|
589 |
This Gutenberg image marker block allows you to add a title and description for each product marker or WooCommerce marker. Customers can view the details in a tooltip option simply by hovering over the WooCommerce hotspots or image hotspots. Adding multiple markers to product images is a wonderful way to highlight specific parts of WooCommerce products on an online storefront. Not only do product markers add a touch of interactivity, but they can also help to boost engagement and encourage website visitors to explore your WooCommerce products in greater depth.
|
590 |
|
592 |
|
593 |
<strong>[Category Grid](https://woolentor.com/demo/block-category-grid/)</strong> – WooCommerce product category grid block allows you to show WooCommerce product categories in a grid view. The category grid view or categories grid is an excellent way for WooCommerce category showcase and makes it easy for customers to find what they're looking for. You can also use this category grid block or WooCommerce product category block for Gutenberg editor like a WooCommerce category product widget or WooCommerce product category widget to create an eye-catching WooCommerce category list, WooCommerce category carousel, product category carousel, WooCommerce category slider, product category slider, or category slider for WooCommerce.
|
594 |
|
595 |
+
This WooCommerce Gutenberg block for WooCommerce product category grid gives you the flexibility to control the style of WooCommerce category grid view and WooCommerce product category slider. You can even leverage this WooCommerce Gutenberg block to order category, limit the number of product categories, show count, set the number of columns, gutter space, and many more. On top of that, the WooCommerce category grid block is fully responsive and mobile-friendly. If you are looking for a way to display your WooCommerce product category compellingly, you should definitely check this WooCommerce Gutenberg block of ShopLentor.
|
596 |
|
597 |
<strong>[Frequently Asked Questions](https://woolentor.com/demo/block-faq/)</strong> – If you're selling products online, then you know that product FAQ for WooCommerce is an important part of the customer journey. Not only do they help to provide common product question and answer, but they can also help to reduce returns and increase customer satisfaction.
|
598 |
|
599 |
+
Fortunately, ShopLentor has a Gutenberg FAQ block for product FAQ for WooCommerce or WooCommerce FAQs that enables you to add a WordPress responsive accordion with FAQ or responsive frequently asked questions section to your WooCommerce store. With this useful WooCommerce product FAQ block for Gutenberg editor or Gutenberg FAQ block, you can also include category wise FAQs or category wise frequently asked question.
|
600 |
|
601 |
It is also possible to leverage this Gutenberg FAQ block for WooCommerce FAQ or product FAQ to place a FAQ in single product page or a responsive frequently asked questions section on any page you want on your WooCommerce website. The FAQ Gutenberg block or Gutenberg FAQ block even comes with many customization options using which you can design a stylish FAQ to improve the customer experience.
|
602 |
|
608 |
|
609 |
<strong>[Brand Logo](https://woolentor.com/demo/block-brand-logo/)</strong> – Showcase the brand logos of your clients, partners, or sponsors on your WooCommerce website using this brand logo block for Gutenberg blocks editor. You can also add a title and URL along with the logo image. You can provide proof that your business is credible by displaying multiple brand logos in a beautiful logo grid. That's why it's essential to have a brand logo showcase on your website.
|
610 |
|
611 |
+
This brand logo showcase Gutenberg block or brand logo gallery Gutenberg block enables you to display a group of brand logo images in an eye-catching logo grid. In this Gutenberg logo block settings, you will find some customization options as well, using which you can personalize the look and feel of the brand logo grid section. If you're looking for a way to take your website to the next level, consider adding a brand logo showcase to your website leveraging the Gutenberg logo block of ShopLentor (Addons for Gutenberg).
|
612 |
|
613 |
Apart from showing the logos in a grid format, there are other ways to make them look even more attractive. For example, you can showcase brand logos in a brand logo carousel or brand logo slider, making it easy for visitors to browse through them. Even though the option to showcase the logos in a sliding format is not present in this brand logo showcase block for Gutenberg editor, we'll introduce them very soon. Make sure to keep an eye on our plugin update!
|
614 |
|
615 |
+
<strong>[Product Curvy](https://woolentor.com/demo/block-product-curvy/)</strong> – As the block name "Product Curvy" suggests, this WooCommerce Gutenberg block is a wonderful way to showcase your WooCommerce products in a captivating manner where the product images are shown inside a circular shape. This WooCommerce block for Gutenberg editor works precisely like the Elementor WooCommerce widget available in ShopLentor named "Product Curvy."
|
616 |
|
617 |
You can also have the power to choose a layout for your WooCommerce product display. Besides, the WooCommerce product block for Gutenberg editor offers a plethora of customization options to manage each element rendered by this WooCommerce Gutenberg block.
|
618 |
|
626 |
|
627 |
Additionally, woocommerce breadcrumb makes it easy to return to a specific page if you need to. For example, if you are looking for a specific product on a woocommerce website, you can use the breadcrumbs to quickly find the page that you need. woocommerce breadcrumb is a simple, yet essential, tool for anyone who uses woocommerce websites.
|
628 |
|
629 |
+
<strong>[Archive Title](https://woolentor.com/demo/woolentor-template/shop-for-gutenberg-block/)</strong> – Show a custom archive title and a description on any archive page or archive template of your WooCommerce site using this custom Gutenberg block available in ShopLentor. You can also use this WooCommerce Gutenberg block for the product archive title to customize some necessary styles of the archive title and description. All you need to do is enable this custom Gutenberg block.
|
630 |
|
631 |
<strong>[Store Feature](https://woolentor.com/demo/block-product-curvy/)</strong> – When setting up a WooCommerce store, it is essential to showcase your business or store features in order to attract customers. Therefore, showing off your WooCommerce store features is one of the most crucial aspects of running a successful eCommerce business. By informing your potential customers about the special features or perks of your WooCommerce store, you can let them know what you have to offer and why they should choose you.
|
632 |
|
637 |
|
638 |
<strong>[Product Title](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display WooCommerce product title dynamically on the single product page or WooCommerce product page of your WooCommerce site. This WooCommerce product block for Gutenberg editor also gives you the ability to customize tha necessary layout and style for the WooCommerce product title. You can even choose what HTML heading tag you want to use for your WooCommerce product title.
|
639 |
|
640 |
+
<strong>[Product Description](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Another Gutenberg dynamic block by ShopLentor (Gutenberg addon) fetches the product description for every WooCommerce product on the WooCommerce single product page or the WooCommerce product page. You can place the WooCommerce Gutenberg block anywhere on the product details page. This Gutenberg ready block for WooCommerce product description also allows you to customize the styles according to your requirements.
|
641 |
|
642 |
<strong>[Product Price](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Use this WooComerce Gutenberg block to display WooCommerce product prices dynamically on the single product page. You can leverage this dynamic Gutenberg block or WordPress Gutenberg block to render the WooCommerce prices of your WooCommerce products. This advanced Gutenberg block can even display both the WooCommerce sale price and the regular price even when a product is on sale. Besides, you can manage the style for the WooCommerce product price using this Gutenberg block for WooCommerce.
|
643 |
|
645 |
|
646 |
This way, you can focus on a particular feature of your WooCommerce product, especially if your WooCommerce product has multiple features. WooCommerce product short description is an essential part of any WooCommerce store as it helps improve the usability of your online storefront. So, if you are building your WooCommerce store with WordPress Gutenberg block editor, make sure you take advantage of this useful WooCommerce Gutenberg block.
|
647 |
|
648 |
+
<strong>[Add to Cart](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display a WooCommerce add to cart button on your website's WooCommerce product page or single product page by using this WooCommerce Gutenberg block of ShopLentor (Gutenberg addon). By default, this single product cart button is usually located at the bottom of the WooCommerce product page, next to the WooCommerce product price and description.
|
649 |
|
650 |
Still, this WooCommerce Gutenberg block will not force you to place the single product cart button or add to cart button for WooCommerce in the same place. Meaning you can place this WordPress Gutenberg dynamic block anywhere you wish on the WooCommerce product page, WooCommerce product template, or WooCommerce single templates.
|
651 |
|
659 |
|
660 |
A quality WooCommerce product image can influence the decision of a customer to add a product to their cart. In addition, a WooCommerce product image can convey extra details about a WooCommerce product, such as color options, features, and materials. Therefore, a great WooCommerce product image can help to enhance the shopper's experience and boost the conversion rates. So, make sure to this give this Gutenberg photo block a try!
|
661 |
|
662 |
+
<strong>[Product Rating](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display product ratings on the WooCommerce products of your store using this product rating Gutenberg block. For a shopper, product rating is one of the most important things to consider when choosing a product from an online store. ShopLentor (Gutenberg addon) offers a rating Gutenberg block or star rating block that allows businesses to showcase product ratings on the WooCommerce product page using the WordPress Gutenberg block editor.
|
663 |
|
664 |
WooCommerce product ratings give your potential customers an insight into what other customers think about a specific WooCommerce product that can help them make a more informed purchasing decision. When visitors look at a WooCommerce rating or product rating, they get an honest opinion from someone who has actually used the product.
|
665 |
|
670 |
This WooCommerce Gutenberg block will give you full control over the presentation of the WooCommerce product tabs or product page tabs on the single product pages of your WooCommerce website. Aside from that, you can manage the appearance of product page tabs
|
671 |
for various devices by using the settings offered by this tabs block for Gutenberg block editor.
|
672 |
|
673 |
+
<strong>[Related Products](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – ShopLentor (Gutenberg addon) has made it possible to showcase WooCommerce related products on your online storefront using the WordPress Gutenberg block editor. WooCommerce related products help boost your sales and encourage customers to purchase additional items. You can enable Gutenberg product block and use it on the WooCommerce product page or WooCommerce product template to show products related to the category you are currently viewing, making it easy for customers to find the right WooCommerce product.
|
674 |
|
675 |
In short, this WooCommerce Gutenberg block or product block for Gutenberg editor is mainly designed to display WooCommerce related products, similar products, or product recommendations based on the WooCommerce product whose details page you are on. Since the WooCommerce Gutenberg block for WooCommerce related products lets you show products related to a specific category, it can be really handy for your customers to find the WooCommerce related products they are looking for.
|
676 |
|
678 |
|
679 |
Showing WooCommerce recommendations or WooCommerce product recommendations on the product details page can improve the usability of your WooCommerce site. There are multiple ways to accomplish this, but one of the most effective ways is to add a WooCommerce related products section in a WooCommerce responsive grid or responsive grid for WooCommerce. By utilizing this WooCommerce Gutenberg block, you can easily achieve that.
|
680 |
|
681 |
+
<strong>[Product Meta](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display WooCommerce product meta on the single product page of your online storefront using ShopLentor's product meta block for Gutenberg block editor. WooCommerce Product meta refers to product categories, WooCommerce product tags, product SKUs, and so on. You can also change the appearance of your WooCommerce product meta data using this WooCommerce Gutenberg block for product meta data.
|
682 |
|
683 |
+
You can even customize WooCommerce terms or WooCommerce product meta like product category and Woo product tags on the WooCommerce product page or WooCommerce single product page using the product meta block of ShopLentor (Gutenberg addon). For example, WooCommerce product meta color, meta link color, meta link hover color, etc.
|
684 |
|
685 |
Therefore, if you intend to display the WooCommerce category and WooCommerce tags of your WooCommerce products on the WooCommerce product page of your store, this WooCommerce product meta block for Gutenberg editor is an ideal solution.
|
686 |
|
687 |
+
<strong>[Additional Information or Additional Description](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – When it comes to providing customers with as much information about your WooCommerce product as possible, adding a product additional description or product additional information on the WooCommerce product page is very important. Enable Gutenberg product block for product additional information offered by ShopLentor (Gutenberg addon). The additional WooCommerce product description can include additional descriptions, such as weight, color, dimension, and some other information.
|
688 |
|
689 |
Displaying such information on the single product page can be handy for customers as they can view specific details for a WooCommerce product they are interested in. You can also customize some necessary styles to change the look and feel of the additional description block for the Gutenberg block editor. As a result, the description under products or additional Woo description can lead to happier customers and increased sales for your business.
|
690 |
|
691 |
Including product additional information or additional description under products on the product details page can also help to improve your search engine ranking, as it provides more content for search engines to index. If you're looking for a way to enhance your WooCommerce store, consider using this WooCommerce Gutenberg block and show additional product information for WooCommerce products on the WooCommerce product pages.
|
692 |
|
693 |
+
<strong>[Product Stock](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display the product stock or stock count on the WooCommerce product page or WooCommerce single product page using the product stock block of ShopLentor (Gutenberg addon). WooCommerce product stock refers to the number of units of a particular WooCommerce product available for sale. This WooCommerce Gutenberg block helps your customers get an idea about the stock status of the stock quantity of your WooCommerce products.
|
694 |
|
695 |
Plus, they can see which WooCommerce product is low in terms of stock count. So, you can utilize this product page block to show WooCommerce stock currently available for the WooCommerce products of your store. On top of that, this stock quantity or stock count block for the WordPress Gutenberg editor can work like a WooCommerce products stock notification, stock available notice, stock alert, stock label, etc.
|
696 |
|
698 |
|
699 |
Once the store owner takes steps to update product stock from the WooCommerce product inventory, the out of stock message will be replaced by the new stock count. Aside from helping customers make informed purchase decisions, this Gutenberg builder block for product stock allows you to customize the style of your WooCommerce product stock status.
|
700 |
|
701 |
+
<strong>[QR Code](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Add a WooCommerce QR code to the product details page of your WooCommerce site using this WooCommerce QR block for the WordPress Gutenberg block editor. Once you include a WooCommerce QR code into the WooCommerce single product page, it will allow your customers to add their desired WooCommerce products to their carts from their mobile devices. To do so, they only need to scan the QR WooCommerce code or QR image generated by this simple QR code block of ShopLentor (Gutenberg addon).
|
702 |
+
|
703 |
+
After customers are done performing a WooCommerce QR scan or simple QR code scan on a specific product page, the product will automatically be added to their cart by the WooCommerce QR block designed for the Gutenberg editor. Adding a WooCommerce QR code to the product details page is a great way to streamline the shopping experience for your customers.
|
704 |
+
|
705 |
+
This WooCommerce block for the Gutenberg block editor functions exactly like the QR code widget or QR widget available in ShopLentor for the Elementor page builder. If you want to provide a positive customer experience and boost sales, don’t forget to enable this Gutenberg ready product block.
|
706 |
+
|
707 |
+
<strong>[Product Upsell](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Showcase WooCommerce upsell products on your WooCommerce store using this WooCommerce Gutenberg block for product upsells. In this product upsell block for Gutenberg editor, you will find settings to control the number of columns in a grid, the number of products, product order, etc. Furthermore, you can customize some styles for the upsell WooCommerce products section heading.
|
708 |
+
|
709 |
+
Product upselling is an effective marketing strategy for any business that sells products online. Displaying WooCommerce upsell products can help you convince customers to purchase higher-priced items and boost your profits at the same time. By offering customers a more expensive WooCommerce product related to the one they are already interested in, businesses can encourage them to spend more money.
|
710 |
+
|
711 |
+
The product upsell or upsells products block can also play the role of a WooCommerce upsell plugin that lets you build an upsell system in your online store. This WooCommerce Gutenberg block will display WooCommerce upsell products on the product details page and persuade customers to spend more on those WooCommerce upsells products.
|
712 |
+
|
713 |
+
If you are managing your online storefront using the Gutenberg block editor or Gutenberg builder and want to increase the average order value of your WooCommerce site, you should definitely check the WooCommerce product upsell or upsell WooCommerce block.
|
714 |
+
|
715 |
+
|
716 |
+
<strong>For Cart Page</strong>
|
717 |
|
718 |
+
<strong>[Cart Table](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Display all the cart items in a WooCommerce table layout or WooCommerce table view with this Gutenberg table block. This Cart table block provides a quick and easy way for customers to view the WooCommerce products they have added to their cart, along with the product images, quantities, and prices. You can also customize various elements of this Gutenberg table block to match the look and feel of your website.
|
719 |
|
720 |
+
That's not all; Aside from showing the cart contents in a WooCommerce product list table or Woo product table, this WooCommerce Gutenberg table block gives you the flexibility to control what product attributes to display in the cart table row. You can even personalize the action button styles and other necessary cart table styles.
|
721 |
|
722 |
+
The WooCommerce cart table is a great way to view what items are available in a shopping cart and ensure that customers have everything they need before they checkout. If you want to provide a smooth and efficient shopping experience for customers by making some tweaks in the cart table, this WooCommerce Gutenberg table block is worth considering.
|
723 |
|
724 |
+
<strong>[Cart Total](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Add a cart total table on the cart page and get control over the table styles and layout. With this WooCommerce Gutenberg table block, you can display the subtotal and total price in a WooCommerce table along with a WooCommerce button to proceed to checkout. If your store offers WooCommerce cart discounts or WooCommerce coupons, it will also be shown in the cart total table.
|
725 |
+
|
726 |
+
You can leverage this WordPress Gutenberg table block to give customers a clear idea about what is subtotal of all WooCommerce products and what the total price will be after taxes, shipping, and discounts (if available). The Gutenberg table block lets you customize different elements of your cart total table like the table header, tabel cell, table content, checkout, etc.
|
727 |
+
|
728 |
+
<strong>[Cross Sell](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Enables you to display WooCommerce cross-sell products on the cart page of your online storefront while having control to customize the styles for various elements of this WooCommerce cross-sell products block.
|
729 |
+
|
730 |
+
WooCommerce cross-sell products are a great way to increase your sales and encourage customer loyalty. Cross selling is when you offer a related product to a customer who is already interested in what you're selling or has already purchased something from your store. ShopLentor makes it easy to set up cross sells or crosssells with this WooCommerce Gutenberg block.
|
731 |
+
|
732 |
+
You can add this WooCommerce cross-sell block to your cart page. It is also possible to manage the number of WooCommerce cross-sell products to show, the number of columns you want in a single WooCommerce cross-sell products row, the product order they are shown in, etc. Cross-selling is an incredibly effective way to persuade customers to buy more from your WooCommerce store.
|
733 |
+
|
734 |
+
Another important fact is that this WooCommerce Gutenberg block for WooCommerce cross-sell products or cross-selling offered by ShopLentor is perfectly compatible with WooCommerce's built-in feature for cross selling, crosssell, or cross-sells.
|
735 |
+
|
736 |
+
<strong>[Return to Shop](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> – Allows you to add a return to shop button anywhere in your WooCommerce store. By default, this button block for Gutenberg editor usually links to the shop page. Meaning customers can visit the shop page no matter what WooCommerce page they are on. Even though the WooCommerce Gutenberg block can be used anywhere you want, it is mainly designed to be used on the Cart page, so customers can quickly return to shop page when there are no items available in the cart.
|
737 |
+
|
738 |
+
In short, this button block for Gutenberg will help your customers return to shop page from an empty cart page, so they can continue shopping. If you are using Gutenberg, you should leverage this return to shop button block on your WooCommerce store.
|
739 |
+
|
740 |
+
The Gutenberg block even lets you insert a custom link for the return to shop button. This WooCommerce block feature for the WordPress Gutenberg editor will come in handy if you want to avoid linking the button to the shop page. So, make sure to check this Gutenberg button block from ShopLentor.
|
741 |
+
|
742 |
+
<strong>[Empty Cart Message](https://woolentor.com/demo/product/rock-colorful-suit/)</strong> –
|
743 |
+
|
744 |
+
|
745 |
+
== 💪 ShopLentor's WooCommerce Module: ==
|
746 |
|
747 |
= 🎨 WooCommerce Variation Swatches Module =
|
748 |
Love the look of those variations swatches in your favorite online store, but don’t know how to get that effect on your own site?
|
755 |
|
756 |
Using WooCommerce variation swatches module Addon, as opposed to the traditional dropdown method of displaying product variants (variation switcher), provides exceptional convenience for your customers and gives your store a professional look. Product variation swatches for WooCommerce provide a user-friendly way for your customers to select product variations (variations checkbox for WooCommerce swatches attributes swatches) without having to click on the dropdown menu. Customers can quickly identify and choose from different colors, sizes, styles (color and label variations), or other attributes that you have selected for each product.
|
757 |
|
758 |
+
If you need a lot of flexibility and customizability, then WooCommerce variation swatches module or variation swatches addons is an excellent option. ShopLentor's variation swatches module is easy to use and comes with a powerful variation switcher. With this variation switcher, you can incorporate WooCommerce colors and labels variations in the form of variation swatches or Woo variation swatches. On the other hand, these product variation swatches for WooCommerce will enable your customers to easily switch between different WooCommerce product variation swatches on your product.
|
759 |
|
760 |
Start using WooCommerce product variation swatches or variations swatches module now!
|
761 |
|
771 |
[More Details](https://woolentor.com/doc/sales-notification-for-woocommerce/)
|
772 |
|
773 |
= 🎨 WooCommerce Product Filter Module =
|
774 |
+
ShopLentor has recently introduced a powerful WooCommerce products filter module that enables store owners to incorporate multiple WooCommerce product filters or Woo products filters into their shop page or product archive page. With the help of this remarkable WordPress WooCommerce product filter or product filter for WooCommerce module, your potential customers can easily filter WooCommerce products by various product filters or criteria of your WooCommerce products.
|
775 |
|
776 |
This way it becomes way more easier for them to find exactly what WooCommerce products they're looking for. And when customers can find their desired WooCommerce products, they're more likely to make a purchase.
|
777 |
|
781 |
|
782 |
If you don’t want to see the filtered results immediately after you apply a product filter, you can also customize product filters even more by including an additional button to apply the selected filters in a click or clear the product filters. Doing so, will require visitors to click on the “Apply” button in order to search for products based on different product filters and “Clear” button to uncheck all the previously applied filters.
|
783 |
|
784 |
+
Once you add and configure a WooCommerce product filter item inside the WordPress product filter with WooCommerce module settings panel, an intuitive shortcode will be generated automatically. All you need to do is place the shortcode on the Shop and/or Archive page(s) alongside a product archive widget that ShopLentor offers.
|
785 |
|
786 |
Apart from providing your customers with the option to select which product attributes to filter by, you can also include an AJAX search form or a handy WooCommerce search bar using which they can search WooCommerce products by keywords. Another incredible feature of this module is that it comes with an advanced product filter widget. This Elementor WooCommerce product filter widget is quite useful if you plan to add WooCommerce product filtering options through the Elementor page builder.
|
787 |
|
805 |
Checkout Order Bump helps you boost conversions and sales by allowing you to offer a WooCommerce Order Bump product or service at the Checkout of your WooCommerce store. With Checkout Order Bump or WooCommerce order bump at the Checkout, there's no need for the customers to leave the page they're currently on. Checkout Order Bump is a great way to increase sales, reduce shopping cart abandonment, and boost your average order value using Upsell Order Bump Offer for WooCommerce is the way to go.
|
806 |
|
807 |
= ✏️ Rename Label =
|
808 |
+
ShopLentor (Woo builder) allows renaming WooCommerce labels for Shop, Product details, Cart, Checkout page text. For example, WooCommerce button text, WooCommerce text message, WooCommerce add custom text, WooCommerce add to cart button text, Change cart button text, Order button text, and checkout page fields text.
|
809 |
|
810 |
[More Details](https://woolentor.com/doc/change-woocommerce-text/)
|
811 |
|
823 |
[More Details](https://woolentor.com/doc/change-woocommerce-text/)
|
824 |
|
825 |
= ❤️ WooCommerce Wishlist Module =
|
826 |
+
ShopLentor's WooCommerce Wishlist Module is a fantastic module that enables you to integrate the woo wishlist or products wishlist feature on your WooCommerce store. With the help of this extraordinary Wishlist module, you can provide a seamless shopping experience to your potential customers by allowing them to create a wishlist for WooCommerce and add their desired WooCommerce products to that WooCommerce wishlist (Woo wishlist) so that they find all their items in one place later.
|
827 |
|
828 |
+
Once you enable the products wishlist or product wishlist module of ShopLentor (WooCommerce addon for wp page builder), an Elementor WooCommerce wishlist widget will get unlocked. With the wishlist widget, you can display a flexible wishlist tables or WooCommerce wishlist where customers can view the WooCommerce products they have added to the WooCommerce wishlist (Woo wishlist). You can even use this WooCommerce wishlist widget to give your customers the ability to share their products wishlists with friends and family.
|
829 |
|
830 |
+
Adding a wishlist widget to your WooCommerce store can be a great way to entice customers to come back and buy WooCommerce products they're interested in. Allowing customers to save WooCommerce products they want to purchase later, makes it easy for them to find and buy what they're looking for, increasing the chances that they'll make a purchase from your store. ShopLentor offers a WooCommerce wishlist or flexible wishlist module that allows creating a products wishlist or Woo wishlist of WooCommerce products on your WooCommerce-powered website.
|
831 |
|
832 |
After enabling this flexible wishlist or product wishlist module, a wishlist widget will be available, using which store owners can easily showcase the WooCommerce products available in a WooCommerce wishlist, wishlist WooCommerce, or Woo wishlist. This wishlist widget will also allow your customers to create and manage their own WooCommerce wishlists or Woo wishlists. Furthermore, this incredible products wishlist widget or WooCommerce wishlist widget can be quite handy if you want to promote specific WooCommerce products while improving your store's usability and engagement.
|
833 |
|
842 |
|
843 |
Product comparison is a great way to engage your customers and help them make informed decisions about the products they're interested in. Product comparison is an essential tool for any WooCommerce store, and the Product Comparison for WooCommerce module or WooCommerce compare module makes it easy to add this functionality to your site.
|
844 |
|
845 |
+
This WooCommerce compare products or WooCommerce product compare module enables you to do WooCommerce products comparison or comparison products within WooCommerce compare tables. This remarkable feature for products compare or product compare can be handy for customers who want to find the best deals on items. Moreover, the WooCommerce product compare module or products comparison module of ShopLentor plays the role of a WooCommerce compare products plugin that eCommerce businesses can leverage to provide store visitors with the option to compare prices, compare offers, compare WooCommerce products, and so on.
|
846 |
|
847 |
Products comparison is a crucial feature in a WooCommerce site to compare WooCommerce products to find the best possible product for your needs. The process of product comparison involves the evaluation of two or more WooCommerce products with the aim of finding out the differences and similarities between them. With so many options available, a functionality to perform product comparison is valuable for finding the right product at the right price.
|
848 |
|
849 |
+
Fortunately, ShopLentor (Woo builder) offers an exclusive product compare module or products comparison module that works like a WooCommerce product compare, WooCommerce compare products, or compare products plugin. As a result, you can compare various WooCommerce products simply by clicking on a compare button. Afterward, you can view the products comparison side-by-side on a product comparison table. With this product comparison module, shoppers can save time and effort while finding the perfect product for their needs.
|
850 |
|
851 |
Thus it becomes a lot easier for customers to make informed purchase decisions and find the best WooCommerce product in their budget with the help of this shopping comparison or comparison shopping feature. The compare WooCommerce product module is a great solution that can help you provide an informative and user-friendly shopping comparison experience to your customers. If you're looking for a way to incorporate the WooCommerce products comparison feature to your WooCommerce site, you should definitely check this WooCommerce product compare or WooCommerce compare products module out.
|
852 |
|
853 |
+
On top of that, ShopLentor (WooCommerce builder plugin) is fully compatible with the YITH WooCommerce compare plugin, which many users use to accomplish the same task.
|
854 |
|
855 |
[More Details](https://woolentor.com/doc/woocommerce-product-compare/)
|
856 |
|
861 |
|
862 |
The sales countdown WooCommerce addon or countdown timer WooCommerce addon is the perfect way to drive sales and boost product awareness. This sales countdown WooCommerce addon or countdown timer WooCommerce allows you to display a WooCommerce sale countdown or WooCommerce timer on your WooCommerce product pages or WooCommerce product templates. You can create a sense of urgency that encourages customers to buy before time runs out. You can also use this WooCommerce sale countdown or countdown timer WooCommerce to highlight special WooCommerce discounts or WooCommerce promotion as well as promote seasonal products.
|
863 |
|
864 |
+
If you want to increase sales and encourage customers to buy your products, a sale countdown timer WooCommerce, product time countdown for WooCommerce, or countdown timer WooCommerce can help you with that. By leveraging ShopLentor's sales countdown WooCommerce addon in the form of a WooCommerce countdown timer module or WooCommerce sale countdown module, you can incorporate a lot of things on your online storefront, such as WooCommerce sale countdown, WooCommerce sales countdown, sales countdown timer, sales timer, or WooCommerce timer.
|
865 |
|
866 |
When it comes to showing WooCommerce discounts or WooCommerce offers for a limited time, this sale countdown timer WooCommerce or product time countdown for WooCommerce module allows you to add a WooCommerce countdown timer or countdown timer WooCommerce on your WooCommerce store to show WooCommerce sale time.This way, you can create a sense of urgency that will motivate customers to make a purchase. So if you're looking for a way to convert more of your potential visitors into customers, consider adding a sale countdown timer WooCommerce plugin to your online store.
|
867 |
|
868 |
Running a WooCommerce flash sales work like a charm if you want to boost your overall sales. A flash sale is referred to limited-time WooCommerce offers or WooCommerce discounts for a few chosen WooCommerce products in your store. If you want to make the most of your flash sale, it's essential to display a flash sale countdown timer, sale flash, or flash bar on your WooCommerce website. The WooCommerce flash sales module allows you to add a flash sale countdown or product time countdown for WooCommerce using which you can apply flash sales for a short period of time.
|
869 |
|
870 |
+
If you're running a sale or special WooCommerce promotion on your WooCommerce store, a WooCommerce countdown timer or sale countdown timer WooCommerce can be a great way to create a sense of urgency and encourage customers to buy before the deal expires. You can use the flash sale countdown or WooCommerce sale countdown module of ShopLentor to create a WooCommerce countdown timer or WooCommerce timer.
|
871 |
|
872 |
+
This sales countdown WooCommerce addon or product time countdown for WooCommerce addon can also help you countdown to the launch of a new WooCommerce product, WooCommerce products announcement, WooCommerce offers, or WooCommerce discounts. ShopLentor's WooCommerce countdown or WooCommerce product countdown module is packed with a few options that allow you to fine-tune the appearance of the WooCommerce sale countdown timer or countdown timer WooCommerce.
|
873 |
|
874 |
This WooCommerce countdown timer works like a discount product scheduler, flash bars, flash notifications, sale flash, etc. Furthermore, with the discount product scheduler, you can set when the flash sale starts and ends. You can even configure on which WooCommerce products you want to apply discounts or display sale flash. With the proper planning and execution, a WooCommerce flash sale, sale flash, or flash bar can help you generate more revenues than usual.
|
875 |
|
876 |
By using the sale countdown timer WooCommerce or WooCommerce sale countdown module as a WooCommerce product scheduler or discount product scheduler, you can schedule the availability of WooCommerce products on your WooCommerce store. Moreover, the WooCommerce product countdown is packed with several useful features for configuring the time duration settings for each of your WooCommerce products. When it comes to providing a special WooCommerce discount or WooCommerce offer to a product, this sales countdown WooCommerce addon or WooCommerce product countdown is an ideal solution to set up a WooCommerce product scheduler or discount product scheduler.
|
877 |
|
878 |
+
Other than that, the sales countdown WooCommerce addon or countdown timer WooCommerce addon is highly customizable as well, so you can customize the appearance of the product time countdown for WooCommerce or WooCommerce timer to match your site's design. Therefore, if you're looking for a way to increase sales and clear out inventory quickly and efficiently, the sales countdown WooCommerce addon of ShopLentor is an excellent solution.
|
879 |
|
880 |
[More Details](https://woolentor.com/doc/enable-sales-countdown-timer-in-woocommerce/)
|
881 |
|
886 |
|
887 |
If you haven't heard about Shopify yet, Shopify is a popular eCommerce platform known for its streamlined and uncluttered checkout process. Despite the fact that WooCommerce offers a plethora of flexibility and customization options, its checkout process is not as user-friendly as Shopify's. This Shopify-like checkout module can help you convert the WooCommerce checkout page into a Shopify-like Checkout that is considerably easier to use. For WooCommerce store owners who wish to increase the usability of their online storefront, a Shopify-like checkout page or WooCommerce checkout like Shopify can be an excellent option.
|
888 |
|
889 |
+
As any online shopper knows, the WooCommerce checkout process is often the most frustrating part of the experience. Having to enter all of your information, including shipping and billing addresses, can be time-consuming and confusing. Fortunately, ShopLentor’s Shopify-like checkout module will streamline the entire process for the shoppers.
|
890 |
|
891 |
This WooCommerce module helps customers with WooCommerce quick order, WooCommerce fast checkout, or WooCommerce quick checkout through a Shopify-like checkout page or WooCommerce checkout like Shopify to further speed up the process.
|
892 |
|
893 |
[More Details](https://woolentor.com/shopify-style-checkout-page-in-woocommerce/)
|
894 |
|
895 |
= 📧 WooCommerce Email Customizer =
|
896 |
+
Email Customizer by ShopLentor is a powerful module that allows you to easily customize your WooCommerce Email Templates, giving you the professional look that many businesses desire. With the Email Customizer Elementor module, you can create custom email template designs or layouts for all of the default WooCommerce emails using the Elementor page builder.
|
897 |
|
898 |
+
You can easily create beautiful WooCommerce email templates or WooCommerce email template designs using ShopLentor's Elementor email template builder, WooCommerce email builder, or responsive email builder. This WooCommerce email designer or email template designer can also be utilized to design WooCommerce emails optimized for conversion and customer engagement.
|
899 |
|
900 |
Furthermore, the Elementor module includes a plethora of customization options, allowing you to get complete control over the look and style of those emails – so you can tailor the default WooCommerce email templates to match your brand perfectly. Whether you want to make a simple change or completely redesign your WooCommerce email templates, Email Customizer has you covered.
|
901 |
|
902 |
+
With the WooCommerce Email Builder module of ShopLentor, you can easily create beautiful, professional-looking WooCommerce custom emails (Woo custom emails) that represent your brand well. You can also use pre-designed WooCommerce email templates to save time and ensure a consistent look for your messages. Whether you're sending a shipping update, a special WooCommerce offer, or just a thank-you note, this email template builder, email template designer, WooCommerce email designer, or WooCommerce email editor makes it easy to create custom WooCommerce email templates, email template design, or WooCommerce custom emails.
|
903 |
|
904 |
+
The WooCommerce email customizer is one of the most useful Elementor modules in ShopLentor. This email customizer module allows businesses to customize the default WooCommerce email templates that are sent to customers. With the email customizer for WooCommerce, businesses can change the layout, colors, and logos of their WooCommerce emails.
|
905 |
|
906 |
This WordPress email customizer or email customizer WooCommerce offers the functionality of a WooCommerce email customizer plugin. Users can use this WooCommerce email customizer module as a WooCommerce email template customizer, email template customizer for WooCommerce, or email customizer WordPress to customize the look and feel of the WooCommerce emails to match their branding.
|
907 |
|
908 |
In short, you can leverage this powerful WooCommerce email customizer module as a WooCommerce email builder, email template builder, responsive email builder, visual email builder, email template designer, WooCommerce email designer, etc. to create stunning Elementor email templates or WooCommerce email templates.
|
909 |
|
910 |
= 🤖 WooCommerce Email Marketing Automation =
|
911 |
+
ShopLentor's WooCommerce email marketing automation module is extremely powerful. This module allows for the automated email sequences or WooCommerce automated emails to new customers, current clients, post-purchase emails, and more. WooCommerce Email marketing automation or may help promote online store sales through email marketing automation for WooCommerce. Within WooCommerce, this email automation or email workflow automation module enables the development of email automation workflow systems that include Triggers, Rules, and Actions in multiple combinations. ShopLentor's WooCommerce email sequences or email marketing automation module is the perfect tool for online store owners who are looking to take their business to the next level. With this automated email WooCommerce or email automation module, you'll be able to create sophisticated automated email marketing campaigns, automated email marketing campaigns, or email marketing automation campaigns that will engage your customers and boost your sales. So don't wait any longer, leverage ShopLentor's WooCommerce email marketing automation module today!
|
912 |
|
913 |
= 🔍 Advanced AJAX Search Widget Module =
|
914 |
+
For any online store, ShopLentor's WooCommerce Ajax search module is a must-have. It enables customers to locate what they want swiftly and efficiently, without having to go through other pages or wait for the page to load. The WooCommerce Ajax search widget by ShopLentor is quick, dependable, and simple to use.
|
915 |
|
916 |
[More Details](https://woolentor.com/doc/how-to-use-woocommerce-ajax-search/)
|
917 |
|
926 |
[More Details](https://woolentor.com/doc/how-to-enable-woocommerce-backorder/)
|
927 |
|
928 |
= 📋 WordPress Post and WooCommerce Product Duplicator =
|
929 |
+
This module may be handy if you want to build a new product based on an existing one or make a minor modification to an established article. The ShopLentor Post Duplicator makes it simple to duplicate any post type, including custom post kinds.
|
930 |
|
931 |
[More Details](https://woolentor.com/doc/duplicate-woocommerce-product/)
|
932 |
|
933 |
= ⭐ Checkout Field Editor or Checkout Field Manager (Pro) =
|
934 |
+
The checkout procedure is one of the most vital aspects of running a successful online store. It’s easy to lose customers at this crucial stage if you’re not careful. That’s why it’s essential to have a simple and user-friendly checkout process. With the ShopLentor Checkout Field Editor or Checkout Field Manager Module, you’ll be able to easily edit, add, and remove fields from your checkout page. Using this custom WooCommerce checkout fields editor or WooCommerce checkout editor, you can make sure that your customers have a smooth and hassle-free experience when they’re checking out.
|
935 |
|
936 |
This powerful WooCommerce checkout editor or checkout field manager module gives you absolute control over the checkout fields by providing you with an intuitive WooCommerce checkout form editor, WooCommerce checkout editor that gives you the ability to add WooCommerce extra checkout fields or WooCommerce custom checkout fields to the WooCommerce checkout form. You can even personalize the order of WooCommerce checkout fields or WooCommerce additional fields for checkout as well as change their labels and placeholders.
|
937 |
|
938 |
+
Adding WooCommerce additional fields or WooCommerce custom checkout fields can be a great way to gather additional information from your customers. For example, you may want to add WooCommerce custom checkout fields for custom WooCommerce customer messages, gift wrap options, or instructions about a schedule delivery for WooCommerce. Fortunately, ShopLentor comes with a powerful WooCommerce checkout field editor or WooCommerce checkout form editor module that allows adding WooCommerce extra fields to the WooCommerce checkout process.
|
939 |
|
940 |
You can use this WooCommerce add on or shipping module in Woo commerce to add WooCommerce custom fields to the checkout form. These extra WooCommerce fields can be extremely useful if you need to collect additional information from your customers during the checkout process. But that's not all; this custom WooCommerce checkout fields editor or WooCommerce checkout field manager module doesn't require you to write a single line of code. The WooCommerce custom checkout fields or checkout widget also allows you to manage the display of WooCommerce fields for checkout, set required fields, etc.
|
941 |
|
946 |
= ✨ Multi-Step Checkout (Pro) =
|
947 |
The checkout process is the most important step in your customer’s journey, and it should be as easy and seamless as possible. That’s why we created our Multi-Step Checkout feature that allows you to create a more effective and organized checkout page by dividing the process into several simpler steps.
|
948 |
|
949 |
+
With ShopLentor's multistep checkout module, you can simplify the checkout process by adding an easy-to-use WooCommerce multistep checkout wizard to your WooCommerce. Since the multistep checkout for WooCommerce breaks the lengthy checkout process into smaller and more manageable steps, it becomes less overwhelming for the customers to make a purchase. Once you enable the multistep checkout WooCommerce module, you'll find a new widget that helps you add the WooCommerce multistep checkout.
|
950 |
|
951 |
Furthermore, this Elementor WooCommerce widget for WooCommerce multi-step checkout lets you customize the necessary styles while making the checkout process even more user-friendly.
|
952 |
|
960 |
= ✨ Pre-Order Module (Pro) =
|
961 |
A preorder is a purchase in which a customer makes before the product officially becomes available. Pre-ordering is a powerful marketing module that lets you reserve items ahead of time and charge customers a deposit or full payment. Customers also enjoy pre-ordering as it ensures that they will obtain the product right after it has been released. The main benefit of utilizing a pre-order strategy is that it allows you to grow eCommerce sales and forecast consumer demand.
|
962 |
|
963 |
+
ShopLentor doesn’t only incorporate the WooCommerce preorder options into your WooCommerce store but also allows you to manage all of the WooCommerce preorders from the order menu. You can even display a pre-order notice on the Cart page.
|
964 |
|
965 |
As the WooCommerce preorder or pre-order WooCommerce feature gives a rough indication of which WooCommerce products are in demand, store owners can easily make an efficient marketing plan or strategy accordingly to create a buzz around those specific WooCommerce upcoming products. As a result, they understand beforehand which WooCommerce upcoming products are going to be popular once they are available in the store.
|
966 |
|
983 |
= 📌 Single Product Sticky Add to cart Module (Pro) =
|
984 |
One of the most essential aspects of building a successful online shop is to make the process as simple as possible for your consumers. Using the sticky add to cart WooCommerce module, you can easily achieve this as it allows you to incorporate a sticky add to cart bar, WooCommerce sticky bar, cart WooCommerce sticky, or sticky WooCommerce bar to the product page. A sticky add to cart, sticky cart bar, or stick bar for WooCommerce includes an add to cart button, a cart quantity field as well as some product information.
|
985 |
|
986 |
+
This sticky add to cart bar or stick bar for WooCommerce usually appears when you scroll past the add to cart button located at the top of the product details page. This sticky add to cart WooCommerce bar feature will come in handy when product information is too lengthy and customers can't decide whether or not to add a product to the cart. With ShopLentor's sticky add to cart module, you can display a WooCommerce sticky bar or sticky WooCommerce bar on the product page, using which customers can easily add a product to the cart even if they scroll past the default WooCommerce cart button.
|
987 |
|
988 |
This WooCommerce sticky bar module enables you to add a sticky add to cart bar on the WooCommerce product page of your WooCommerce site. By keeping the WooCommerce bar 'stick' to the bottom of the WooCommerce product page, you can make it easy for visitors to add WooCommerce products to their cart, as the sticky add to cart for WooCommerce or WooCommerce sticky add to cart will usually stay in place even when customers scroll up and down.
|
989 |
|
992 |
[More Details](https://woolentor.com/doc/single-product-sticky-add-to-cart/)
|
993 |
|
994 |
= 🛒 Side Mini Cart / Cart Drawer Module (Pro) =
|
995 |
+
ShopLentor’s Cart Drawer or Side Mini Cart for WooCommerce is a useful module that displays a list of current cart items on your website. This Side Mini Cart for WooCommerce or side cart WooCommerce module helps to list products that are currently added to the cart and improve the purchasing experience for your consumers by allowing them to keep track of their progress without ever having to leave the page. The WooCommerce minicart feature also makes removing things from their cart simple – there’s no need to go to the shopping cart page, users can just click the ''cross'' icon located at the top right corner of an WooCommerce product image in the WooCommerce mini cart or WooCommerce minicart.
|
996 |
|
997 |
A WooCommerce side cart appears as a WooCommerce cart icon on the right-hand side or left-hand side of your screen. It kind of works like a WooCommerce floating mini cart, Woo floating minicart, floating cart for WooCommerce, Woo floating cart, or WooCommerce offcanvas cart. When users click on that Woocommerce cart icon of the side cart WooCommerce, they can view their cart items before checking out. That’s the reason why customers find the WooCommerce mini cart or WooCommerce minicart convenient enough as it helps them save a lot of time while purchasing.
|
998 |
|
999 |
+
Leverage this incredible side mini cart or WooCommerce minicart module of ShopLentor to incorporate a side cart WooCommerce or side mini cart to your WooCommerce site. The side cart WooCommerce module allows your customers to see what WooCommerce products they have in their cart and makes it easy to add or remove items. You can also use the side cart WooCommerce module as an alternative to Woo floating minicart or Woo floating cart, as it works the same as a floating cart for WooCommerce.
|
1000 |
|
1001 |
+
A side cart WooCommerce can be a great way to encourage shoppers to complete their purchases. If you're looking for a Woo floating minicart, Woo floating cart, or floating cart for WooCommerce, then be sure to check out the side mini cart or side cart WooCommerce module of ShopLentor. It's easy to set up and use, and it's been designed to work seamlessly with WooCommerce. The Woo floating minicart or Woo floating cart is a great addition to any online storefront and can help increase sales and conversion rates.
|
1002 |
|
1003 |
This wonderful side mini cart module module enables you to add a WooCommerce side cart, side cart WooCommerce, WooCommerce minicart, WooCommerce mini cart, etc. that can help you convert many of your potential store visitors into loyal customers.
|
1004 |
|
1005 |
+
The Side Mini Cart module or side cart WooCommerce module of ShopLentor (Woo builder) is a great way to keep your customers' shopping carts organized and ensure they can always see what they have in their carts. Whenever a customer adds any WooCommerce products to the cart, the side mini cart slides in a WooCommerce minicart or WooCommerce mini cart from the side like a WooCommerce popup cart or WooCommerce cart popup.
|
1006 |
|
1007 |
This WooCommerce add to cart popup or WooCommerce added to cart popup allows customers to see what WooCommerce products they have in their carts. If you want to keep your online storefront organized, then the side cart WooCommerce module is the perfect solution for you.
|
1008 |
|
1011 |
[More Details](https://woolentor.com/doc/side-mini-cart-for-woocommerce/)
|
1012 |
|
1013 |
= 🔀 Redirect to checkout / Redirect to checkout after add to cart (Pro) =
|
1014 |
+
The Redirect to Checkout Module of ShopLentor (all in one for WooCommerce) is an excellent feature for keeping your customers on track and ensuring a quick checkout process. This WooCommerce checkout redirect module allows you to send visitors to the checkout page of your website after they click the add to cart button so they can complete the purchase promptly and easily. Adding a redirect to checkout after add to cart helps to provide an optimal user experience while boosting conversion rates and sales. This WooCommerce add to cart redirect or WooCommerce checkout redirect module will be extremely useful if you want to provide a smooth shopping experience to your customers via WooCommerce redirect.
|
1015 |
|
1016 |
[More Details](https://woolentor.com/doc/redirect-to-checkout/)
|
1017 |
|
1035 |
<strong>💷 [Multi Currency for WooCommerce Currency Switcher](https://wordpress.org/plugins/wc-multi-currency/)</strong>
|
1036 |
Multi-Currency for WooCommerce is a prominent currency switcher plugin for WooCommerce. This plugin allows your website or online store visitors to switch to their preferred currency or their country’s currency.
|
1037 |
|
1038 |
+
== <a href="https://woolentor.com/pricing/?utm_source=wprepo&utm_medium=freeplugin&utm_campaign=purchasepro">Purchase ShopLentor Pro</a> ==
|
1039 |
|
1040 |
|
1041 |
==🎥 Video Tutorials or Plugin Tutorials: ==
|
1059 |
[youtube https://youtu.be/-AXka-sc8hY]
|
1060 |
|
1061 |
== <a href="https://hasthemes.com/blog-category/woolentor/">More Video</a> ==
|
1062 |
+
* [Stock Progress bar for WooCommerce Product using ShopLentor](https://hasthemes.com/stock-progress-bar-for-woocommerce-product-using-woolentor/)
|
1063 |
+
* [How to build a custom product template using ShopLentor Plugin](https://hasthemes.com/how-to-build-a-custom-product-template-using-woolentor-plugin/)
|
1064 |
* [How to use Universal Product Grid Layouts](https://hasthemes.com/how-to-use-universal-product-grid-layouts/)
|
1065 |
|
1066 |
|
1073 |
|
1074 |
|
1075 |
==🔥 Premium WooCommerce Themes Included in The Pro Version ==
|
1076 |
+
We have included a few premium WooCommerce themes in the ShopLentor Pro Package to save money of our customers.
|
1077 |
[Flone](https://demo.hasthemes.com/flone-woo-preview/index.html)
|
1078 |
Flone is one of our most popular WooComemrce Themes using by 1000+ stores.
|
1079 |
[99Fy Pro](https://demo.hasthemes.com/99fy-preview/index.html)
|
1080 |
+
Pro version of 99fy is included in ShopLentor pro. 99 demos for 24 niche categories are included in this theme.
|
1081 |
[Holmes](http://demo.hasthemes.com/wp/holmes-preview.html)
|
1082 |
Holmes is a multipurpose premium WooCommerce Theme.
|
1083 |
+
[Check all of the themes](https://hasthemes.com/plugins/woolentor-pro-woocommerce-page-builder/#themes), included in the ShopLentor Pro version.
|
1084 |
|
1085 |
|
1086 |
==👨💻 Need Help? ==
|
1094 |
> Includes 360 Blocke & 15 Landing Pages.
|
1095 |
|
1096 |
== <a href="https://wordpress.org/plugins/elementor/">Elementor</a> page builder is required for this plugin. ==
|
1097 |
+
Elementor Pro is not required. But you can use ShopLentor with Elementor free & Pro.
|
1098 |
|
1099 |
== Changelog ==
|
1100 |
|
1101 |
+
= Version: 2.4.9 - Date: 17-11-2022 =
|
1102 |
+
* Solved : Template sample data import issue.
|
1103 |
+
* Changed : Menu name and menu slug.
|
1104 |
+
|
1105 |
= Version: 2.4.8 - Date: 13-11-2022 =
|
1106 |
+
* Solved : Single product add to cart issue with single product add to cart module.
|
1107 |
+
* Solved : Currency separate fetching issue in Filter addons.
|
1108 |
* Solved : Product Filter non taxonomy select warning.
|
1109 |
* Compatible: Multi Language supported.
|
1110 |
* Compatibility with the latest WooCommerce version.
|
1172 |
* Added : Support to display currency position with space in product filter widgets.
|
1173 |
* Added : Style option in wishlist table addon.
|
1174 |
* Tweak : Wishlist and Compare menu position change.
|
1175 |
+
* Solved : Shopify style checkout module compatibility with ShopLentor Pro checkout field manager module.
|
1176 |
* Solved : Tab labels change issue in Shopify Style Checkout page.
|
1177 |
* Solved : Repeater item adding issue in module setting.
|
1178 |
+
* Solved : PHP Warning issue, if ShopLentor Pro is deactivated from FTP / cPanel.
|
1179 |
* Solved : Wishlist counter PHP warning.
|
1180 |
* Solved : Client say color change issue in WL Testimonial Widget.
|
1181 |
|
1371 |
* Solved spelling issue.
|
1372 |
* Solved related product column issue.
|
1373 |
* Solved sale notification ( Price, By ) translate issue.
|
1374 |
+
* Added ShopLentor product option tab index.
|
1375 |
* Added hide out of stock item option.
|
1376 |
* Solved product column issue ( For JetBuilder plugin )
|
1377 |
* Solved Tax Query conflick issue (For YITH WooCommerce Auctions premium )
|
1382 |
* Solved sale badge style issue for twentytwentyone theme.
|
1383 |
|
1384 |
= Version: 1.8.9 - Date: 2021-24-05 =
|
1385 |
+
* Added ShopLentor product option tab index.
|
1386 |
* Added hide out of stock item option.
|
1387 |
* Solved product column issue ( For JetBuilder plugin )
|
1388 |
* Solved Tax Query conflick issue (For YITH WooCommerce Auctions premium )
|
1590 |
* Enable/Disable All Elements Toggle button ( Pro ).
|
1591 |
|
1592 |
== Installation ==
|
1593 |
+
This section describes how to install the ShopLentor - WooCommerce Addons for Elementor Page Builder plugin and get it working.
|
1594 |
|
1595 |
= 1) Install =
|
1596 |
|
1597 |
1. Go to the WordPress Dashboard "Add New Plugin" section.
|
1598 |
+
2. Search For "ShopLentor".
|
1599 |
3. Install, then Activate it.
|
1600 |
|
1601 |
= OR: =
|
1605 |
= 2) Configure =
|
1606 |
1. After install and activate the plugin you will get a notice to install Elementor Plugin ( If allready install it then do not show notice. ).
|
1607 |
2. To install the plugin click on the "Button" Install Elementor.
|
1608 |
+
3. ‘SHOPLENTOR’ Category will be appear in Elementor page Editor
|
1609 |
4. Create new Product slider or product tab and relax!
|
1610 |
|
1611 |
== Frequently Asked Questions ==
|
1612 |
|
1613 |
+
= Can I use ShopLentor without WooCommerce? =
|
1614 |
|
1615 |
+
No, ShopLentor is a plugin for WooCommerce and cannot be used without it. You need to use WooCommerce with ShopLentor for your online store.
|
1616 |
|
1617 |
+
= What are the minimum requirements for using ShopLentor? =
|
1618 |
|
1619 |
+
ShopLentor has been tested with the most up-to-date versions of both WordPress and WooCommerce.
|
1620 |
|
1621 |
= How can I redirect to checkout page in WooCommerce? =
|
1622 |
|
1623 |
Yes, you can set up a redirect to the checkout page in WooCommerce to skip the cart page. To do this, please follow these steps:
|
1624 |
|
1625 |
+
1. Go to Dashboard > ShopLentor > Modules.
|
1626 |
|
1627 |
2. Enable Redirect to Checkout on Add to Cart.
|
1628 |
|
1632 |
|
1633 |
= How do I create a multi-step checkout in WooCommerce? =
|
1634 |
|
1635 |
+
ShopLentor Pro provides an easy way to create a multi-step checkout. You can follow this [online documentation](https://woolentor.com/doc/woocommerce-multi-step-checkout/) to create a multi-step checkout in WooCommerce.
|
1636 |
|
1637 |
+
1. Go to Dashboard > ShopLentor > Modules.
|
1638 |
|
1639 |
2. Enable Multi-Step Checkout.
|
1640 |
|
1641 |
+
3. From ShopLentor Template Builder > Add New Template
|
1642 |
|
1643 |
4. Select the template type “Checkout”
|
1644 |
|
1646 |
|
1647 |
= How do I add a wishlist in WooCommerce? =
|
1648 |
|
1649 |
+
ShopLentor provides a module for Wishlist, using that module you can easily add a wishlist to the WooCommerce product and archive page. You can follow the [documentation here](https://woolentor.com/doc/wishlist-for-woocommerce/):
|
1650 |
|
1651 |
+
1. Go to Dashboard > ShopLentor > Modules.
|
1652 |
|
1653 |
2. Enable Wishlist.
|
1654 |
|
1655 |
+
3. ShopLentor > Wishlist
|
1656 |
|
1657 |
4. Make necessary setting
|
1658 |
|
1660 |
|
1661 |
Yes, you can use the WooCommerce Product Compare plugin to compare products in WooCommerce. You can follow the steps below:
|
1662 |
|
1663 |
+
1. Install and activate the ShopLentor plugin.
|
1664 |
|
1665 |
+
2. Go to Dashboard > ShopLentor > Modules and enable the Product Compare module.
|
1666 |
|
1667 |
3. Enable the Compare module
|
1668 |
|
1669 |
+
4. Go to ShopLentor > Compare
|
1670 |
|
1671 |
5. Compare Settings
|
1672 |
|
1676 |
|
1677 |
Yes, you can use the [WooCommerce Product Flash sale Countdown](https://woolentor.com/doc/enable-sales-countdown-timer-in-woocommerce/) module to add pre schedule or on schedule sale discount countdown timer in WooCommerce. You can follow the steps below:
|
1678 |
|
1679 |
+
1. Install and activate the ShopLentor plugin.
|
1680 |
|
1681 |
+
2. Go to Dashboard > ShopLentor > Modules.
|
1682 |
|
1683 |
3. Enable the Countdown module.
|
1684 |
|
1685 |
+
WooCommerce Sales countdown can boost your sales. If you are looking for a countdown plugin for WooCommerce, then you can use ShopLentor for your online store. ShopLentor has an Elementor countdown addon or sales countdown WooCommerce addon which helps to display sale countdown timer WooCommerce for any special days offers like Christmas countdown, Black Friday countdown, etc.
|
1686 |
|
1687 |
= How to enable backorder in WooCommerce? =
|
1688 |
|
1689 |
+
You can enable backorder in WooCommerce using ShopLentor's backorder module. Follow the following steps:
|
1690 |
|
1691 |
Step 1: Enable the Backorder module
|
1692 |
|
1698 |
|
1699 |
= How to make WooCommerce checkout look like Shopify? =
|
1700 |
|
1701 |
+
ShopLentor provides a module to customize the default WooCommerce checkout design to look like Shopify. You can follow these steps:
|
1702 |
|
1703 |
+
1. Install and activate the ShopLentor plugin
|
1704 |
|
1705 |
+
2. Go to Dashboard > ShopLentor > Modules
|
1706 |
|
1707 |
3. Enable the Shopify Style Checkout
|
1708 |
|
1712 |
|
1713 |
= How do I add AJAX search in WooCommerce? =
|
1714 |
|
1715 |
+
ShopLentor comes with the Ajax Live Product search, WooCommerce search products, or WooCommerce search form module. It helps your customers to find their desired products quickly and easily from your WooCommerce store without full-text searching through an advanced search widget. ShopLentor's ajax search form enables category wise search widget or WooCommerce search taxonomy search bar. The benefits of using this WooCommerce fast search/Woo ajax search module are - Ajax shopping experience, visual product search/product image search, ajax search suggestion, etc.
|
1716 |
|
1717 |
You can follow these steps:
|
1718 |
|
1719 |
+
1. Install and activate the ShopLentor plugin
|
1720 |
|
1721 |
+
2. Go to Dashboard > ShopLentor > Modules.
|
1722 |
|
1723 |
3. Enable Ajax Search Widget.
|
1724 |
|
1725 |
+
4. Edit the page template from the ShopLentor > Template Builder.
|
1726 |
|
1727 |
5. Drag and drop the ajax product search widget.
|
1728 |
|
1729 |
= How to add Ajax Add to cart on WooCommerce product Page? =
|
1730 |
|
1731 |
+
ShopLentor has a module for ajax based cart or quick add to cart. You can use the ShopLentor Ajax add to cart module for adding ajax add to cart functionality on WooCommerce product page. You can follow these steps:
|
1732 |
|
1733 |
+
1. Install and activate the ShopLentor plugin.
|
1734 |
|
1735 |
+
2. Go to Dashboard > ShopLentor > Modules.
|
1736 |
|
1737 |
3. Enable Ajax Add To Cart Module.
|
1738 |
|
1739 |
= How to add a custom field in WooCommerce checkout? =
|
1740 |
|
1741 |
+
ShopLentor Pro has a module for WooCommerce checkout field editor. You can use the WooCommerce checkout fields manager module to add custom fields/WooCommerce additional fields/WooCommerce extra checkout fields, hide checkout fields, and remove billing fields on the WooCommerce checkout page or Elementor WooCommerce checkout template. You can follow these steps:
|
1742 |
|
1743 |
+
1. Install and activate the ShopLentor plugin.
|
1744 |
|
1745 |
+
2. Go to Dashboard > ShopLentor > Modules.
|
1746 |
|
1747 |
3. Enable Checkout Field Manager Module.
|
1748 |
|
1754 |
|
1755 |
= How do I add a Product size chart in WooCommerce? =
|
1756 |
|
1757 |
+
ShopLentor pro has the size chart WooCommerce module. You can use the WooCommerce size guide module to add a size chart on the product page. You can follow these steps:
|
1758 |
|
1759 |
+
1. Install and activate the ShopLentor plugin.
|
1760 |
|
1761 |
+
2. Go to Dashboard > ShopLentor > Modules.
|
1762 |
|
1763 |
3. Enable WooCommerce Size Chart Module.
|
1764 |
|
1765 |
+
4. Go to ShopLentor > Size Charts
|
1766 |
|
1767 |
5. Add a New Size chart.
|
1768 |
|
1770 |
|
1771 |
= How to edit labels in WooCommerce? =
|
1772 |
|
1773 |
+
ShopLentor has a module for WooCommerce label customization. You can use the WooCommerce custom product label module to edit/change labels on product label, WooCommerce add to cart button label, out of stock label, categories/Archive page labels, and tags pages of the WooCommerce store. You can follow these steps:
|
1774 |
|
1775 |
+
1. Install and activate the ShopLentor plugin.
|
1776 |
|
1777 |
+
2. Go to Dashboard > ShopLentor > Modules.
|
1778 |
|
1779 |
3. Enable WooCommerce rename Label Module.
|
1780 |
|
1784 |
|
1785 |
= How to show best selling products by category? =
|
1786 |
|
1787 |
+
You can show best selling products using the Universal Widget of ShopLentor. This widget can be used as a WooCommerce best selling product widget WooCommerce. Where you can show best selling products by category. To do this, follow these steps
|
1788 |
|
1789 |
1. Edit a page where you want to add the best selling products.
|
1790 |
2. Drag the Universal Widget.
|
1792 |
|
1793 |
= How to show featured products in WooCommerce? =
|
1794 |
|
1795 |
+
ShopLentor comes with the Universal Layout widget to show WooCommerce featured products. you can use the WooCommerce featured product query to show featured products in different ways on your store. You can follow these steps:
|
1796 |
|
1797 |
+
1. Install and activate the ShopLentor plugin.
|
1798 |
|
1799 |
2. Edit a Page where you want to add the featured WooCommerce Products.
|
1800 |
|
1804 |
|
1805 |
5. To Show Featured product by category name, add categories.
|
1806 |
|
1807 |
+
= How does ShopLentor compare with other WooCommerce Elementor Addons? =
|
1808 |
|
1809 |
+
Although ShopLentor and other WooCommerce Elementor Addons like ShopEngine or JetWidgets are also focused on making the entire WooCommerce website building experience easier with the Elementor page builder, ShopLentor WooCommerce addon offers some remarkable features while some of its competitors don't. To name a few, Shopify Style Checkout, MultiStep Checkout for WooCommerce, custom WooCommerce Checkout Fields Editor, Email Customizer, Email Automation, GTM Conversion Tracking, and several others.
|
1810 |
|
1811 |
+
= Can I use ShopLentor along with any other plugins that are powered by Elementor & WooCommerce? =
|
1812 |
|
1813 |
+
ShopLentor is meticulously crafted with all the standards and best practices of both Elementor and WooCommerce. So, it is not likely to create any conflicts with other Elementor and WooCommerce plugins. On top of that, we have tested the ShopLentor plugin with several popular Elementor plugins or Elementor Addons and WooCommerce-based plugins. While doing so, we made sure that they worked perfectly with ShopLentor. Some of them are Master Addons, PowerPack Addons, Exclusive Addons, ElementsKit, Livemesh Addons, WooCommerce Shipping, WooCommerce PDF Invoices, YITH WooCommerce Wishlist, YITH WooCommerce Compare, Product Labels For Woocommerce (Sale Badges), Mailchimp for WooCommerce Integration, YayMail – WooCommerce Email Customizer, Wholesale Suite, Booster for WooCommerce, ShopReady, JetWidgets, CoDesigner and so on.
|
1814 |
|
1815 |
+
= Is it possible to add WooCommerce extra checkout fields with ShopLentor? =
|
1816 |
|
1817 |
+
Yes, of course. ShopLentor's Checkout Field Manager or Checkout Field Editor module allows users to add or remove WooCommerce custom fields checkout or WooCommerce checkout fields. Besides, users can also customize existing WooCommerce checkout fields as per their needs.
|
1818 |
|
1819 |
+
= Can I use any third-party WooCommerce newsletter plugin with ShopLentor? =
|
1820 |
|
1821 |
+
As you may already know, ShopLentor is designed by following all the best practices and standards of WooCommerce, so we can assure you that it will be compatible with a third-party WooCommerce advanced newsletter plugin, WooCommerce newsletter subscription plugin, or WooCommerce Mailchimp integration plugin.
|
1822 |
|
1823 |
If you run into any issues, feel free to contact us through our support website.
|
1824 |
|
1825 |
+
= Does ShopLentor support WooCommerce digital product sales and deliver digital files to customers? =
|
1826 |
|
1827 |
+
Yes, ShopLentor can handle WooCommerce digital products or WooCommerd downloadable products (e.g. sell digital print, Ebook, etc.) without any issues. In case you want to integrate any specific functionality on your digital products store that WooCommerce doesn't offer by default, you may need to use third-party plugins.
|
1828 |
|
1829 |
+
= How much does ShopLentor impact WooCommerce speed or page speed? =
|
1830 |
|
1831 |
+
With great pleasure, we'd like to inform you that our team runs several tests before releasing any major ShopLentor update to ensure that it doesn't affect a website's performance in terms of WooCommerce speed or page speed 🚀
|
1832 |
|
1833 |
+
Aside from that, ShopLentor allows users to enable or disable specific Elementor WooCommerce widgets and modules as per their needs to speed up Elementor WooCommerce widgets' performance 💪
|
1834 |
|
1835 |
+
Another noteworthy fact is that no heavy PHP rendering is required to render any of ShopLentor's widgets and modules from the server side. Therefore, it is unlikely that the plugin will have a detrimental impact on the speed of a website.
|
1836 |
|
1837 |
|
1838 |
== Screenshots ==
|
woolentor_addons_elementor.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Plugin Name:
|
4 |
* Description: An all-in-one WooCommerce solution to create a beautiful WooCommerce store.
|
5 |
* Plugin URI: https://woolentor.com/
|
6 |
-
* Version: 2.4.
|
7 |
* Author: HasThemes
|
8 |
* Author URI: https://hasthemes.com/plugins/woolentor-pro/
|
9 |
* License: GPL-2.0+
|
@@ -17,14 +17,13 @@
|
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
19 |
|
20 |
-
define( 'WOOLENTOR_VERSION', '2.4.
|
21 |
define( 'WOOLENTOR_ADDONS_PL_ROOT', __FILE__ );
|
22 |
define( 'WOOLENTOR_ADDONS_PL_URL', plugins_url( '/', WOOLENTOR_ADDONS_PL_ROOT ) );
|
23 |
define( 'WOOLENTOR_ADDONS_PL_PATH', plugin_dir_path( WOOLENTOR_ADDONS_PL_ROOT ) );
|
24 |
define( 'WOOLENTOR_ADDONS_DIR_URL', plugin_dir_url( WOOLENTOR_ADDONS_PL_ROOT ) );
|
25 |
define( 'WOOLENTOR_PLUGIN_BASE', plugin_basename( WOOLENTOR_ADDONS_PL_ROOT ) );
|
26 |
define( 'WOOLENTOR_TEMPLATE', trailingslashit( WOOLENTOR_ADDONS_PL_PATH . 'includes/templates' ) );
|
27 |
-
define( 'WOOLENTOR_ITEM_NAME', 'WooLentor - WooCommerce Elementor Addons + Builder' );
|
28 |
|
29 |
// Required File
|
30 |
require_once ( WOOLENTOR_ADDONS_PL_PATH.'includes/base.php' );
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Plugin Name: ShopLentor – WooCommerce Builder for Elementor & Gutenberg
|
4 |
* Description: An all-in-one WooCommerce solution to create a beautiful WooCommerce store.
|
5 |
* Plugin URI: https://woolentor.com/
|
6 |
+
* Version: 2.4.9
|
7 |
* Author: HasThemes
|
8 |
* Author URI: https://hasthemes.com/plugins/woolentor-pro/
|
9 |
* License: GPL-2.0+
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
19 |
|
20 |
+
define( 'WOOLENTOR_VERSION', '2.4.9' );
|
21 |
define( 'WOOLENTOR_ADDONS_PL_ROOT', __FILE__ );
|
22 |
define( 'WOOLENTOR_ADDONS_PL_URL', plugins_url( '/', WOOLENTOR_ADDONS_PL_ROOT ) );
|
23 |
define( 'WOOLENTOR_ADDONS_PL_PATH', plugin_dir_path( WOOLENTOR_ADDONS_PL_ROOT ) );
|
24 |
define( 'WOOLENTOR_ADDONS_DIR_URL', plugin_dir_url( WOOLENTOR_ADDONS_PL_ROOT ) );
|
25 |
define( 'WOOLENTOR_PLUGIN_BASE', plugin_basename( WOOLENTOR_ADDONS_PL_ROOT ) );
|
26 |
define( 'WOOLENTOR_TEMPLATE', trailingslashit( WOOLENTOR_ADDONS_PL_PATH . 'includes/templates' ) );
|
|
|
27 |
|
28 |
// Required File
|
29 |
require_once ( WOOLENTOR_ADDONS_PL_PATH.'includes/base.php' );
|