Version Description
Download this release
Release Info
Code changes from version 2.2.4 to 2.2.5
- assets/addons/ajax-search/css/ajax-search.css +51 -12
- assets/addons/ajax-search/js/ajax-search.js +12 -9
- includes/addons/wb_archive_product.php +1 -1
- includes/helper-function.php +3 -2
- includes/modules/ajax-search/base.php +62 -21
- includes/modules/ajax-search/widget-product-search-ajax.php +11 -3
- includes/modules/compare/includes/classes/Admin/Dashboard.php +1 -1
- includes/modules/wishlist/includes/classes/Admin/Dashboard.php +1 -1
- languages/woolentor.pot +53 -44
- readme.txt +6 -1
- woolentor_addons_elementor.php +5 -5
assets/addons/ajax-search/css/ajax-search.css
CHANGED
@@ -3,25 +3,61 @@
|
|
3 |
position: relative;
|
4 |
}
|
5 |
|
6 |
-
.
|
|
|
|
|
|
|
7 |
background: transparent none repeat scroll 0 0;
|
8 |
border: 1px solid #c8c6c6;
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
}
|
14 |
|
15 |
-
.
|
16 |
background: transparent none repeat scroll 0 0;
|
17 |
-
border:
|
18 |
color: #000;
|
19 |
font-size: 14px;
|
20 |
-
height:
|
21 |
-
padding: 2px 55px 2px 18px;
|
22 |
-
width: 100%;
|
23 |
}
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
/* clears the 'X' from Internet Explorer */
|
26 |
.woolentor_widget_psa input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
|
27 |
.woolentor_widget_psa input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
|
@@ -39,13 +75,14 @@
|
|
39 |
border-image: none;
|
40 |
border-style: none none none solid;
|
41 |
border-width: medium medium medium 1px;
|
|
|
42 |
padding: 0 15px;
|
43 |
-
position: absolute;
|
44 |
right: 0;
|
45 |
top: 50%;
|
46 |
-webkit-transform: translateY(-50%);
|
47 |
-ms-transform: translateY(-50%);
|
48 |
-
transform: translateY(-50%);
|
49 |
cursor: pointer;
|
50 |
color: #938989;
|
51 |
-webkit-transition: all .3s ease 0s;
|
@@ -53,6 +90,8 @@
|
|
53 |
transition: all .3s ease 0s;
|
54 |
font-size: 20px;
|
55 |
border-radius: 0;
|
|
|
|
|
56 |
}
|
57 |
|
58 |
#woolentor_psa_results_wrapper {
|
3 |
position: relative;
|
4 |
}
|
5 |
|
6 |
+
.woolentor_widget_psa_field_area {
|
7 |
+
display: flex;
|
8 |
+
justify-content: space-between;
|
9 |
+
align-items: center;
|
10 |
background: transparent none repeat scroll 0 0;
|
11 |
border: 1px solid #c8c6c6;
|
12 |
+
padding: 4px 0;
|
13 |
+
}
|
14 |
+
.woolentor_widget_psa_input_field{
|
15 |
+
width: 100%;
|
16 |
}
|
17 |
|
18 |
+
.pro-sidebar-search-form input {
|
19 |
background: transparent none repeat scroll 0 0;
|
20 |
+
border: none;
|
21 |
color: #000;
|
22 |
font-size: 14px;
|
23 |
+
height: 40px;
|
|
|
|
|
24 |
}
|
25 |
|
26 |
+
.woolentor_widget_psa input[type="search"] {
|
27 |
+
background: transparent none repeat scroll 0 0;
|
28 |
+
border: none;
|
29 |
+
color: #000;
|
30 |
+
font-size: 14px;
|
31 |
+
height: 40px;
|
32 |
+
padding: 0px 10px;
|
33 |
+
width: 100%;
|
34 |
+
}
|
35 |
+
.woolentor_widget_psa input[type=search]:focus {
|
36 |
+
outline: none;
|
37 |
+
}
|
38 |
+
.woolentor_widget_psa_category{
|
39 |
+
position: relative;
|
40 |
+
padding-right: 15px;
|
41 |
+
}
|
42 |
+
.woolentor_widget_psa_category select {
|
43 |
+
background: transparent;
|
44 |
+
border: none;
|
45 |
+
padding: 10px 10px;
|
46 |
+
}
|
47 |
+
.woolentor_widget_psa_category select:focus-visible{
|
48 |
+
outline: none;
|
49 |
+
}
|
50 |
+
.woolentor_widget_psa_category::after {
|
51 |
+
position: absolute;
|
52 |
+
content: "";
|
53 |
+
width: 2px;
|
54 |
+
height: 60%;
|
55 |
+
border-left: 1px solid #c8c6c6;
|
56 |
+
right: 0;
|
57 |
+
top: 50%;
|
58 |
+
-webkit-transform: translateY(-50%);
|
59 |
+
transform: translateY(-50%);
|
60 |
+
}
|
61 |
/* clears the 'X' from Internet Explorer */
|
62 |
.woolentor_widget_psa input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
|
63 |
.woolentor_widget_psa input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
|
75 |
border-image: none;
|
76 |
border-style: none none none solid;
|
77 |
border-width: medium medium medium 1px;
|
78 |
+
border-color: #c8c6c6;
|
79 |
padding: 0 15px;
|
80 |
+
/* position: absolute;
|
81 |
right: 0;
|
82 |
top: 50%;
|
83 |
-webkit-transform: translateY(-50%);
|
84 |
-ms-transform: translateY(-50%);
|
85 |
+
transform: translateY(-50%); */
|
86 |
cursor: pointer;
|
87 |
color: #938989;
|
88 |
-webkit-transition: all .3s ease 0s;
|
90 |
transition: all .3s ease 0s;
|
91 |
font-size: 20px;
|
92 |
border-radius: 0;
|
93 |
+
flex: 0 0 45px;
|
94 |
+
height: 40px;
|
95 |
}
|
96 |
|
97 |
#woolentor_psa_results_wrapper {
|
assets/addons/ajax-search/js/ajax-search.js
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
});
|
17 |
|
18 |
$('.woolentor_widget_psa_clear_icon').on('click', function(){
|
19 |
-
$(this).
|
20 |
$(this).parents('.woolentor_widget_psa').removeClass('woolentor_widget_psa_clear');
|
21 |
$(this).siblings('input[type="search"]').val('');
|
22 |
});
|
@@ -38,30 +38,33 @@
|
|
38 |
function doSearch( $this = '' ) {
|
39 |
|
40 |
if ( $this.length > 0 ) {
|
41 |
-
var searchString
|
|
|
|
|
42 |
if( searchString == '' ){
|
43 |
-
|
44 |
$this.parents('.woolentor_widget_psa').removeClass('woolentor_widget_psa_clear');
|
45 |
}
|
46 |
if ( searchString.length < 2 ) return; //wasn't enter, not > 2 char
|
47 |
var wrapper_width = $this.parents('.woolentor_widget_psa').width(),
|
48 |
settings = $this.parents('.woolentor_widget_psa form').data('settings'),
|
49 |
-
limit
|
50 |
|
51 |
$.ajax({
|
52 |
url: woolentor_addons.woolentorajaxurl,
|
53 |
data: {
|
54 |
'action': 'woolentor_ajax_search',
|
55 |
-
|
56 |
-
'
|
57 |
-
'
|
|
|
58 |
},
|
59 |
beforeSend:function(){
|
60 |
$this.parents('.woolentor_widget_psa').addClass('woolentor_widget_psa_loading');
|
61 |
},
|
62 |
success:function(response) {
|
63 |
-
|
64 |
-
|
65 |
$this.parents('.woolentor_widget_psa').removeClass('woolentor_widget_psa_loading');
|
66 |
},
|
67 |
error: function(errorThrown){
|
16 |
});
|
17 |
|
18 |
$('.woolentor_widget_psa_clear_icon').on('click', function(){
|
19 |
+
$(this).closest(".woolentor_widget_psa").find('#woolentor_psa_results_wrapper').html('');
|
20 |
$(this).parents('.woolentor_widget_psa').removeClass('woolentor_widget_psa_clear');
|
21 |
$(this).siblings('input[type="search"]').val('');
|
22 |
});
|
38 |
function doSearch( $this = '' ) {
|
39 |
|
40 |
if ( $this.length > 0 ) {
|
41 |
+
var searchString = $this.val(),
|
42 |
+
catagoryValue = $this.closest(".woolentor_widget_psa").find(".woolentor_widget_psa_category select").val(),
|
43 |
+
searchResultWrap = $this.closest(".woolentor_widget_psa").find("#woolentor_psa_results_wrapper");
|
44 |
if( searchString == '' ){
|
45 |
+
searchResultWrap.html('');
|
46 |
$this.parents('.woolentor_widget_psa').removeClass('woolentor_widget_psa_clear');
|
47 |
}
|
48 |
if ( searchString.length < 2 ) return; //wasn't enter, not > 2 char
|
49 |
var wrapper_width = $this.parents('.woolentor_widget_psa').width(),
|
50 |
settings = $this.parents('.woolentor_widget_psa form').data('settings'),
|
51 |
+
limit = settings.limit ? parseInt(settings.limit) : 10;
|
52 |
|
53 |
$.ajax({
|
54 |
url: woolentor_addons.woolentorajaxurl,
|
55 |
data: {
|
56 |
'action': 'woolentor_ajax_search',
|
57 |
+
'category': catagoryValue,
|
58 |
+
's' : searchString,
|
59 |
+
'limit' : limit,
|
60 |
+
'nonce' : woolentor_addons.ajax_nonce
|
61 |
},
|
62 |
beforeSend:function(){
|
63 |
$this.parents('.woolentor_widget_psa').addClass('woolentor_widget_psa_loading');
|
64 |
},
|
65 |
success:function(response) {
|
66 |
+
searchResultWrap.css({'width': wrapper_width});
|
67 |
+
searchResultWrap.html(response);
|
68 |
$this.parents('.woolentor_widget_psa').removeClass('woolentor_widget_psa_loading');
|
69 |
},
|
70 |
error: function(errorThrown){
|
includes/addons/wb_archive_product.php
CHANGED
@@ -213,7 +213,7 @@ class Woolentor_Wb_Archive_Product_Widget extends Widget_Base {
|
|
213 |
'type' => Controls_Manager::DIMENSIONS,
|
214 |
'size_units' => [ 'px', '%' ],
|
215 |
'selectors' => [
|
216 |
-
'{{WRAPPER}}.elementor-widget-woolentor-product-archive-addons ul.products li.product' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
|
217 |
],
|
218 |
]
|
219 |
);
|
213 |
'type' => Controls_Manager::DIMENSIONS,
|
214 |
'size_units' => [ 'px', '%' ],
|
215 |
'selectors' => [
|
216 |
+
'{{WRAPPER}}.elementor-widget-woolentor-product-archive-addons ul.products li.product' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important',
|
217 |
],
|
218 |
]
|
219 |
);
|
includes/helper-function.php
CHANGED
@@ -332,15 +332,16 @@ function woolentor_get_all_create_menus() {
|
|
332 |
*/
|
333 |
function woolentor_taxonomy_list( $taxonomy = 'product_cat', $option_value = 'slug' ){
|
334 |
$terms = get_terms( array(
|
335 |
-
'taxonomy'
|
336 |
'hide_empty' => true,
|
337 |
));
|
|
|
338 |
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
|
339 |
foreach ( $terms as $term ) {
|
340 |
$options[ $term->$option_value ] = $term->name;
|
341 |
}
|
342 |
-
return $options;
|
343 |
}
|
|
|
344 |
}
|
345 |
|
346 |
/*
|
332 |
*/
|
333 |
function woolentor_taxonomy_list( $taxonomy = 'product_cat', $option_value = 'slug' ){
|
334 |
$terms = get_terms( array(
|
335 |
+
'taxonomy' => $taxonomy,
|
336 |
'hide_empty' => true,
|
337 |
));
|
338 |
+
$options = [];
|
339 |
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
|
340 |
foreach ( $terms as $term ) {
|
341 |
$options[ $term->$option_value ] = $term->name;
|
342 |
}
|
|
|
343 |
}
|
344 |
+
return $options;
|
345 |
}
|
346 |
|
347 |
/*
|
includes/modules/ajax-search/base.php
CHANGED
@@ -35,16 +35,33 @@ class WooLentor_Ajax_Search_Base{
|
|
35 |
* Ajax Callback method
|
36 |
*/
|
37 |
public function ajax_search_callback(){
|
38 |
-
$s
|
39 |
-
$limit
|
|
|
40 |
|
41 |
check_ajax_referer('woolentor_psa_nonce', 'nonce');
|
42 |
|
43 |
$args = array(
|
44 |
-
'post_type'
|
45 |
-
'posts_per_page'
|
46 |
-
's'
|
47 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
$query = new WP_Query( $args );
|
49 |
|
50 |
ob_start();
|
@@ -101,30 +118,54 @@ class WooLentor_Ajax_Search_Base{
|
|
101 |
wp_enqueue_script( 'woolentor-ajax-search' );
|
102 |
|
103 |
extract( shortcode_atts( array(
|
104 |
-
'limit'
|
105 |
-
'placeholder'
|
|
|
|
|
106 |
), $atts, 'woolentorsearch' ) );
|
107 |
|
108 |
$data_settings = array(
|
109 |
-
'limit'
|
110 |
-
'wlwidget_id'=>'#wluniq-'.uniqid(),
|
111 |
);
|
112 |
|
|
|
|
|
|
|
|
|
|
|
113 |
ob_start();
|
114 |
-
|
115 |
-
|
116 |
-
<form role="search" method="get" action="
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
<div id="woolentor_psa_results_wrapper"></div>
|
125 |
</form>
|
126 |
-
</div>
|
127 |
-
|
128 |
$output .= ob_get_clean();
|
129 |
return apply_filters( 'woolentor_ajaxsearch', $output );
|
130 |
}
|
35 |
* Ajax Callback method
|
36 |
*/
|
37 |
public function ajax_search_callback(){
|
38 |
+
$s = isset( $_REQUEST['s'] ) ? sanitize_text_field( $_REQUEST['s'] ) : '';
|
39 |
+
$limit = isset( $_REQUEST['limit'] ) ? intval( $_REQUEST['limit'] ) : 10;
|
40 |
+
$category = isset( $_REQUEST['category'] ) ? $_REQUEST['category'] : '';
|
41 |
|
42 |
check_ajax_referer('woolentor_psa_nonce', 'nonce');
|
43 |
|
44 |
$args = array(
|
45 |
+
'post_type' => 'product',
|
46 |
+
'posts_per_page'=> $limit,
|
47 |
+
's' => $s
|
48 |
);
|
49 |
+
|
50 |
+
if( !empty( $category ) ) {
|
51 |
+
|
52 |
+
$categories = explode(',', trim( $category, ',' ) );
|
53 |
+
$clean_data = array_map( function ( $item ){ return intval( $item ); }, $categories );
|
54 |
+
|
55 |
+
$args['tax_query'] = array(
|
56 |
+
array(
|
57 |
+
'taxonomy' => 'product_cat',
|
58 |
+
'field' => 'term_id',
|
59 |
+
'terms' => $clean_data,
|
60 |
+
'operator' => 'IN'
|
61 |
+
)
|
62 |
+
);
|
63 |
+
}
|
64 |
+
|
65 |
$query = new WP_Query( $args );
|
66 |
|
67 |
ob_start();
|
118 |
wp_enqueue_script( 'woolentor-ajax-search' );
|
119 |
|
120 |
extract( shortcode_atts( array(
|
121 |
+
'limit' => 10,
|
122 |
+
'placeholder' => esc_html__( 'Search Products', 'woolentor' ),
|
123 |
+
'show_category' => false,
|
124 |
+
'all_category_text' => esc_html__('All Categories','woolentor')
|
125 |
), $atts, 'woolentorsearch' ) );
|
126 |
|
127 |
$data_settings = array(
|
128 |
+
'limit' => $limit,
|
129 |
+
'wlwidget_id' => '#wluniq-'.uniqid(),
|
130 |
);
|
131 |
|
132 |
+
$category_list = [ '' => $all_category_text ] + woolentor_taxonomy_list( 'product_cat','term_id' );
|
133 |
+
|
134 |
+
$show_category = $show_category == '1' ? true : $show_category;
|
135 |
+
|
136 |
+
$output = '';
|
137 |
ob_start();
|
138 |
+
?>
|
139 |
+
<div class="woolentor_widget_psa" id="wluniq-<?php echo uniqid(); ?>">
|
140 |
+
<form role="search" method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>" data-settings='<?php echo wp_json_encode( $data_settings ); ?>'>
|
141 |
+
<div class="woolentor_widget_psa_field_area">
|
142 |
+
<?php if( $show_category === true ):?>
|
143 |
+
<div class="woolentor_widget_psa_category">
|
144 |
+
<select name="product_cat">
|
145 |
+
<?php
|
146 |
+
foreach( $category_list as $cat_key => $cat ){
|
147 |
+
?>
|
148 |
+
<option value="<?php echo esc_attr( $cat_key );?>"><?php echo esc_html( $cat ); ?></option>
|
149 |
+
<?php
|
150 |
+
}
|
151 |
+
?>
|
152 |
+
</select>
|
153 |
+
</div>
|
154 |
+
<?php endif; ?>
|
155 |
+
<div class="woolentor_widget_psa_input_field">
|
156 |
+
<input type="search" placeholder="<?php echo esc_attr__( $placeholder, 'woolentor' ); ?>" value="<?php echo get_search_query(); ?>" name="s" autocomplete="off" />
|
157 |
+
<input type="hidden" name="post_type" value="product" />
|
158 |
+
<span class="woolentor_widget_psa_clear_icon"><i class="sli sli-close"></i></span>
|
159 |
+
<span class="woolentor_widget_psa_loading_icon"><i class="sli sli-refresh"></i></span>
|
160 |
+
</div>
|
161 |
+
<button type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'woolentor' ); ?>">
|
162 |
+
<i class="sli sli-magnifier"></i>
|
163 |
+
</button>
|
164 |
+
</div>
|
165 |
<div id="woolentor_psa_results_wrapper"></div>
|
166 |
</form>
|
167 |
+
</div>
|
168 |
+
<?php
|
169 |
$output .= ob_get_clean();
|
170 |
return apply_filters( 'woolentor_ajaxsearch', $output );
|
171 |
}
|
includes/modules/ajax-search/widget-product-search-ajax.php
CHANGED
@@ -22,9 +22,10 @@ class WooLentor_Product_Search_Ajax_Widget extends WP_Widget{
|
|
22 |
echo $args['before_widget'];
|
23 |
if( !empty( $instance['title'] ) ){ echo $args['before_title'] . $title . $args['after_title']; }
|
24 |
$shortcode_atts = [
|
25 |
-
'limit'
|
|
|
26 |
];
|
27 |
-
echo
|
28 |
echo $args['after_widget'];
|
29 |
}
|
30 |
|
@@ -33,7 +34,9 @@ class WooLentor_Product_Search_Ajax_Widget extends WP_Widget{
|
|
33 |
*/
|
34 |
public function form( $instance ) {
|
35 |
$title = ! empty( $instance['title'] ) ? $instance['title'] : '';
|
36 |
-
$limit = ! empty( $instance['limit'] ) ? $instance['limit'] : '';
|
|
|
|
|
37 |
<p>
|
38 |
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php echo esc_html__( 'Title:', 'woolentor' ) ?></label>
|
39 |
<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $title ); ?>" />
|
@@ -42,6 +45,10 @@ class WooLentor_Product_Search_Ajax_Widget extends WP_Widget{
|
|
42 |
<label for="<?php echo $this->get_field_id( 'limit' ); ?>"><?php echo esc_html__( 'Show Number of Product:', 'woolentor' ) ?></label>
|
43 |
<input type="number" class="widefat" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" value="<?php echo esc_attr( $limit ); ?>" />
|
44 |
</p>
|
|
|
|
|
|
|
|
|
45 |
<?php
|
46 |
}
|
47 |
|
@@ -52,6 +59,7 @@ class WooLentor_Product_Search_Ajax_Widget extends WP_Widget{
|
|
52 |
$instance = $old_instance;
|
53 |
$instance[ 'title' ] = strip_tags( $new_instance[ 'title' ] );
|
54 |
$instance[ 'limit' ] = strip_tags( $new_instance[ 'limit' ] );
|
|
|
55 |
return $instance;
|
56 |
}
|
57 |
|
22 |
echo $args['before_widget'];
|
23 |
if( !empty( $instance['title'] ) ){ echo $args['before_title'] . $title . $args['after_title']; }
|
24 |
$shortcode_atts = [
|
25 |
+
'limit' => ( !empty( $instance[ 'limit' ] ) ? $instance[ 'limit' ] : '' ),
|
26 |
+
'show_category' => ( !empty( $instance[ 'show_category' ] ) ? (bool) $instance[ 'show_category' ] : false ),
|
27 |
];
|
28 |
+
echo woolentor_do_shortcode( 'woolentorsearch', $shortcode_atts );
|
29 |
echo $args['after_widget'];
|
30 |
}
|
31 |
|
34 |
*/
|
35 |
public function form( $instance ) {
|
36 |
$title = ! empty( $instance['title'] ) ? $instance['title'] : '';
|
37 |
+
$limit = ! empty( $instance['limit'] ) ? $instance['limit'] : '';
|
38 |
+
$show_category = ! empty( $instance['show_category'] ) ? (bool) $instance['show_category'] : false;
|
39 |
+
?>
|
40 |
<p>
|
41 |
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php echo esc_html__( 'Title:', 'woolentor' ) ?></label>
|
42 |
<input type="text" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo esc_attr( $title ); ?>" />
|
45 |
<label for="<?php echo $this->get_field_id( 'limit' ); ?>"><?php echo esc_html__( 'Show Number of Product:', 'woolentor' ) ?></label>
|
46 |
<input type="number" class="widefat" id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" value="<?php echo esc_attr( $limit ); ?>" />
|
47 |
</p>
|
48 |
+
<p>
|
49 |
+
<input class="checkbox" type="checkbox" <?php checked( $show_category ); ?> id="<?php echo esc_attr($this->get_field_id( 'show_category' )); ?>" name="<?php echo esc_attr($this->get_field_name( 'show_category' )); ?>" value="1" />
|
50 |
+
<label for="<?php echo esc_attr($this->get_field_id( 'show_category' )); ?>"><?php echo esc_html__( 'Show Category Dropdown','woolentor' ); ?></label>
|
51 |
+
</p>
|
52 |
<?php
|
53 |
}
|
54 |
|
59 |
$instance = $old_instance;
|
60 |
$instance[ 'title' ] = strip_tags( $new_instance[ 'title' ] );
|
61 |
$instance[ 'limit' ] = strip_tags( $new_instance[ 'limit' ] );
|
62 |
+
$instance['show_category'] = ! empty( $new_instance['show_category'] ) ? (bool) $new_instance['show_category'] : false;
|
63 |
return $instance;
|
64 |
}
|
65 |
|
includes/modules/compare/includes/classes/Admin/Dashboard.php
CHANGED
@@ -41,7 +41,7 @@ class Dashboard {
|
|
41 |
|
42 |
Admin_Fields::instance();
|
43 |
|
44 |
-
add_action( 'admin_menu', [ $this, 'add_menu' ],
|
45 |
|
46 |
// Add a post display state for special EverCompare page.
|
47 |
add_filter( 'display_post_states', [ $this, 'add_display_post_states' ], 10, 2 );
|
41 |
|
42 |
Admin_Fields::instance();
|
43 |
|
44 |
+
add_action( 'admin_menu', [ $this, 'add_menu' ], 225 );
|
45 |
|
46 |
// Add a post display state for special EverCompare page.
|
47 |
add_filter( 'display_post_states', [ $this, 'add_display_post_states' ], 10, 2 );
|
includes/modules/wishlist/includes/classes/Admin/Dashboard.php
CHANGED
@@ -48,7 +48,7 @@ class Dashboard {
|
|
48 |
|
49 |
Admin_Fields::instance();
|
50 |
|
51 |
-
add_action( 'admin_menu', [ $this, 'add_menu' ],
|
52 |
|
53 |
// Add a post display state for special WishSuite page.
|
54 |
add_filter( 'display_post_states', [ $this, 'add_display_post_states' ], 10, 2 );
|
48 |
|
49 |
Admin_Fields::instance();
|
50 |
|
51 |
+
add_action( 'admin_menu', [ $this, 'add_menu' ], 225 );
|
52 |
|
53 |
// Add a post display state for special WishSuite page.
|
54 |
add_filter( 'display_post_states', [ $this, 'add_display_post_states' ], 10, 2 );
|
languages/woolentor.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: WooLentor - WooCommerce Elementor Addons + Builder\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2022-04-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
-
"X-Loco-Version: 2.6.1; wp-5.9.
|
17 |
"X-Domain: woolentor"
|
18 |
|
19 |
#. 1: Plugin name 2: PHP 3: Required PHP version
|
@@ -225,8 +225,8 @@ msgstr ""
|
|
225 |
msgid "Add to Cart Button Text"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: includes/helper-function.php:
|
229 |
-
#: includes/helper-function.php:
|
230 |
#: woolentor-blocks/includes/helper-functions.php:312
|
231 |
#: woolentor-blocks/includes/helper-functions.php:313
|
232 |
#: woolentor-blocks/includes/helper-functions.php:329
|
@@ -307,6 +307,7 @@ msgid "All Builders"
|
|
307 |
msgstr ""
|
308 |
|
309 |
#: includes/addons/wl_category_grid.php:75
|
|
|
310 |
msgid "All Categories"
|
311 |
msgstr ""
|
312 |
|
@@ -1139,14 +1140,14 @@ msgstr ""
|
|
1139 |
msgid "Columns"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/helper-function.php:
|
1143 |
#: includes/addons/product_image_accordion.php:150
|
1144 |
#: includes/addons/product_accordion.php:171
|
1145 |
#: includes/addons/product_curvy.php:206 includes/addons/product_tabs.php:165
|
1146 |
msgid "Comment count"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/helper-function.php:
|
1150 |
#: woolentor-blocks/includes/helper-functions.php:329
|
1151 |
#: includes/modules/compare/includes/classes/Admin/Dashboard.php:59
|
1152 |
#: includes/modules/compare/includes/classes/Admin/Dashboard.php:60
|
@@ -1334,7 +1335,7 @@ msgstr ""
|
|
1334 |
msgid "Data Saved successfully!"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: includes/helper-function.php:
|
1338 |
#: includes/addons/wb_product_upsell.php:66
|
1339 |
#: includes/addons/wb_archive_product.php:127
|
1340 |
#: includes/addons/product_image_accordion.php:147
|
@@ -1356,7 +1357,7 @@ msgstr ""
|
|
1356 |
msgid "Default"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: includes/helper-function.php:
|
1360 |
msgid "Default sorting"
|
1361 |
msgstr ""
|
1362 |
|
@@ -1417,7 +1418,7 @@ msgstr ""
|
|
1417 |
msgid "Disable all"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: includes/helper-function.php:
|
1421 |
msgid "div"
|
1422 |
msgstr ""
|
1423 |
|
@@ -1563,7 +1564,7 @@ msgstr ""
|
|
1563 |
msgid "FAQ Title"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: includes/helper-function.php:
|
1567 |
msgid "Featured"
|
1568 |
msgstr ""
|
1569 |
|
@@ -1706,27 +1707,27 @@ msgstr ""
|
|
1706 |
msgid "Gradient Color"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/helper-function.php:
|
1710 |
msgid "H1"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: includes/helper-function.php:
|
1714 |
msgid "H2"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: includes/helper-function.php:
|
1718 |
msgid "H3"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: includes/helper-function.php:
|
1722 |
msgid "H4"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: includes/helper-function.php:
|
1726 |
msgid "H5"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: includes/helper-function.php:
|
1730 |
msgid "H6"
|
1731 |
msgstr ""
|
1732 |
|
@@ -1796,7 +1797,7 @@ msgstr ""
|
|
1796 |
msgid "Here"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: includes/helper-function.php:
|
1800 |
msgid "here"
|
1801 |
msgstr ""
|
1802 |
|
@@ -1981,7 +1982,7 @@ msgstr ""
|
|
1981 |
msgid "Icon Width"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: includes/helper-function.php:
|
1985 |
#: includes/addons/product_image_accordion.php:146
|
1986 |
#: includes/addons/product_accordion.php:167
|
1987 |
#: includes/addons/product_curvy.php:202 includes/addons/product_tabs.php:161
|
@@ -2493,7 +2494,7 @@ msgstr ""
|
|
2493 |
msgid "N/A"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: includes/helper-function.php:
|
2497 |
#: includes/addons/wl_testimonial.php:82 includes/addons/wl_testimonial.php:576
|
2498 |
#: includes/addons/product_image_accordion.php:148
|
2499 |
#: includes/addons/product_accordion.php:169
|
@@ -2579,11 +2580,11 @@ msgstr ""
|
|
2579 |
msgid "No related products are available."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: includes/modules/ajax-search/base.php:
|
2583 |
msgid "No Results Found"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: includes/helper-function.php:
|
2587 |
msgid "No saved templates found."
|
2588 |
msgstr ""
|
2589 |
|
@@ -2604,7 +2605,7 @@ msgstr ""
|
|
2604 |
msgid "Nonce Varification Faild !"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: includes/helper-function.php:
|
2608 |
#: includes/addons/product_image_accordion.php:145
|
2609 |
#: includes/addons/product_accordion.php:166
|
2610 |
#: includes/addons/product_curvy.php:201
|
@@ -2775,7 +2776,7 @@ msgid ""
|
|
2775 |
"the pro version."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: includes/helper-function.php:
|
2779 |
msgid "Out of stock"
|
2780 |
msgstr ""
|
2781 |
|
@@ -2783,7 +2784,7 @@ msgstr ""
|
|
2783 |
msgid "Out of Stock Badge Color"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: includes/helper-function.php:
|
2787 |
msgid "p"
|
2788 |
msgstr ""
|
2789 |
|
@@ -3037,7 +3038,7 @@ msgstr ""
|
|
3037 |
msgid "Product Add To Cart"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: includes/helper-function.php:
|
3041 |
#: woolentor-blocks/includes/helper-functions.php:314
|
3042 |
msgid "Product Added"
|
3043 |
msgstr ""
|
@@ -3160,7 +3161,7 @@ msgstr ""
|
|
3160 |
msgid "Product Per Page"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: classes/class.widgets_control.php:345 includes/helper-function.php:
|
3164 |
#: includes/addons/product_flash_sale.php:466
|
3165 |
#: includes/addons/product_image_accordion.php:411
|
3166 |
#: includes/addons/product_accordion.php:490
|
@@ -3294,7 +3295,7 @@ msgstr ""
|
|
3294 |
msgid "Query Settings"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: includes/helper-function.php:
|
3298 |
#: includes/addons/wb_product_upsell.php:71
|
3299 |
#: includes/addons/wb_archive_product.php:132
|
3300 |
#: includes/addons/product_image_accordion.php:151
|
@@ -3483,7 +3484,7 @@ msgstr ""
|
|
3483 |
msgid "Sale Tag"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: includes/helper-function.php:
|
3487 |
msgid "Sale!"
|
3488 |
msgstr ""
|
3489 |
|
@@ -3521,6 +3522,10 @@ msgstr ""
|
|
3521 |
msgid "Search Form Placeholder"
|
3522 |
msgstr ""
|
3523 |
|
|
|
|
|
|
|
|
|
3524 |
#: includes/addons/wl_product_horizontal_filter.php:248
|
3525 |
msgid "Search Products..."
|
3526 |
msgstr ""
|
@@ -3543,7 +3548,7 @@ msgstr ""
|
|
3543 |
msgid "Seconds"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: includes/helper-function.php:
|
3547 |
msgid "Select"
|
3548 |
msgstr ""
|
3549 |
|
@@ -3582,7 +3587,7 @@ msgstr ""
|
|
3582 |
msgid "Select Table"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
-
#: includes/helper-function.php:
|
3586 |
msgid "Select Template"
|
3587 |
msgstr ""
|
3588 |
|
@@ -3606,7 +3611,7 @@ msgstr ""
|
|
3606 |
msgid "Set featured image"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
-
#: includes/helper-function.php:
|
3610 |
msgid "Set the initial stock amount from"
|
3611 |
msgstr ""
|
3612 |
|
@@ -3692,6 +3697,10 @@ msgstr ""
|
|
3692 |
msgid "Show By Id"
|
3693 |
msgstr ""
|
3694 |
|
|
|
|
|
|
|
|
|
3695 |
#: includes/addons/wl_category_grid.php:151
|
3696 |
msgid "Show Count"
|
3697 |
msgstr ""
|
@@ -3728,7 +3737,7 @@ msgstr ""
|
|
3728 |
msgid "Show items"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
-
#: includes/modules/ajax-search/widget-product-search-ajax.php:
|
3732 |
msgid "Show Number of Product:"
|
3733 |
msgstr ""
|
3734 |
|
@@ -3852,7 +3861,7 @@ msgstr ""
|
|
3852 |
msgid "Slider Option"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: includes/helper-function.php:
|
3856 |
msgid "Sold"
|
3857 |
msgstr ""
|
3858 |
|
@@ -3921,23 +3930,23 @@ msgstr ""
|
|
3921 |
msgid "Sort By"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: includes/helper-function.php:
|
3925 |
msgid "Sort by average rating"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: includes/helper-function.php:
|
3929 |
msgid "Sort by latest"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: includes/helper-function.php:
|
3933 |
msgid "Sort by popularity"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: includes/helper-function.php:
|
3937 |
msgid "Sort by price: high to low"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: includes/helper-function.php:
|
3941 |
msgid "Sort by price: low to high"
|
3942 |
msgstr ""
|
3943 |
|
@@ -3952,7 +3961,7 @@ msgstr ""
|
|
3952 |
msgid "Spacing"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: includes/helper-function.php:
|
3956 |
msgid "span"
|
3957 |
msgstr ""
|
3958 |
|
@@ -4071,7 +4080,7 @@ msgstr ""
|
|
4071 |
msgid "Submit Button"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: includes/modules/ajax-search/base.php:
|
4075 |
msgctxt "submit button"
|
4076 |
msgid "Search"
|
4077 |
msgstr ""
|
@@ -4334,7 +4343,7 @@ msgstr ""
|
|
4334 |
msgid "Thumbnails Position"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
-
#: includes/helper-function.php:
|
4338 |
#: includes/addons/wl_faq.php:342 includes/addons/product_flash_sale.php:136
|
4339 |
#: includes/addons/product_flash_sale.php:772
|
4340 |
#: includes/addons/wl_product_horizontal_filter.php:197
|
@@ -4393,7 +4402,7 @@ msgstr ""
|
|
4393 |
msgid "Title HTML Tag"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: includes/modules/ajax-search/widget-product-search-ajax.php:
|
4397 |
msgid "Title:"
|
4398 |
msgstr ""
|
4399 |
|
@@ -4413,7 +4422,7 @@ msgstr ""
|
|
4413 |
msgid "Top"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: includes/helper-function.php:
|
4417 |
msgid "Top Rated"
|
4418 |
msgstr ""
|
4419 |
|
@@ -4423,7 +4432,7 @@ msgstr ""
|
|
4423 |
msgid "Top Rated Products"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: includes/helper-function.php:
|
4427 |
msgid "Top Seller"
|
4428 |
msgstr ""
|
4429 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: WooLentor - WooCommerce Elementor Addons + Builder\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2022-04-17 04:28+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.6.1; wp-5.9.3\n"
|
17 |
"X-Domain: woolentor"
|
18 |
|
19 |
#. 1: Plugin name 2: PHP 3: Required PHP version
|
225 |
msgid "Add to Cart Button Text"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/helper-function.php:1046 includes/helper-function.php:1047
|
229 |
+
#: includes/helper-function.php:1063
|
230 |
#: woolentor-blocks/includes/helper-functions.php:312
|
231 |
#: woolentor-blocks/includes/helper-functions.php:313
|
232 |
#: woolentor-blocks/includes/helper-functions.php:329
|
307 |
msgstr ""
|
308 |
|
309 |
#: includes/addons/wl_category_grid.php:75
|
310 |
+
#: includes/modules/ajax-search/base.php:124
|
311 |
msgid "All Categories"
|
312 |
msgstr ""
|
313 |
|
1140 |
msgid "Columns"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/helper-function.php:1008 includes/addons/product_flash_sale.php:137
|
1144 |
#: includes/addons/product_image_accordion.php:150
|
1145 |
#: includes/addons/product_accordion.php:171
|
1146 |
#: includes/addons/product_curvy.php:206 includes/addons/product_tabs.php:165
|
1147 |
msgid "Comment count"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: includes/helper-function.php:1063
|
1151 |
#: woolentor-blocks/includes/helper-functions.php:329
|
1152 |
#: includes/modules/compare/includes/classes/Admin/Dashboard.php:59
|
1153 |
#: includes/modules/compare/includes/classes/Admin/Dashboard.php:60
|
1335 |
msgid "Data Saved successfully!"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/helper-function.php:1005 includes/addons/product_flash_sale.php:134
|
1339 |
#: includes/addons/wb_product_upsell.php:66
|
1340 |
#: includes/addons/wb_archive_product.php:127
|
1341 |
#: includes/addons/product_image_accordion.php:147
|
1357 |
msgid "Default"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/helper-function.php:803
|
1361 |
msgid "Default sorting"
|
1362 |
msgstr ""
|
1363 |
|
1418 |
msgid "Disable all"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: includes/helper-function.php:586
|
1422 |
msgid "div"
|
1423 |
msgstr ""
|
1424 |
|
1564 |
msgid "FAQ Title"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: includes/helper-function.php:1010
|
1568 |
msgid "Featured"
|
1569 |
msgstr ""
|
1570 |
|
1707 |
msgid "Gradient Color"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: includes/helper-function.php:579
|
1711 |
msgid "H1"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: includes/helper-function.php:580
|
1715 |
msgid "H2"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: includes/helper-function.php:581
|
1719 |
msgid "H3"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: includes/helper-function.php:582
|
1723 |
msgid "H4"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: includes/helper-function.php:583
|
1727 |
msgid "H5"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: includes/helper-function.php:584
|
1731 |
msgid "H6"
|
1732 |
msgstr ""
|
1733 |
|
1797 |
msgid "Here"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: includes/helper-function.php:932 includes/helper-function.php:950
|
1801 |
msgid "here"
|
1802 |
msgstr ""
|
1803 |
|
1982 |
msgid "Icon Width"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: includes/helper-function.php:1004 includes/addons/product_flash_sale.php:133
|
1986 |
#: includes/addons/product_image_accordion.php:146
|
1987 |
#: includes/addons/product_accordion.php:167
|
1988 |
#: includes/addons/product_curvy.php:202 includes/addons/product_tabs.php:161
|
2494 |
msgid "N/A"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: includes/helper-function.php:1006 includes/addons/product_flash_sale.php:135
|
2498 |
#: includes/addons/wl_testimonial.php:82 includes/addons/wl_testimonial.php:576
|
2499 |
#: includes/addons/product_image_accordion.php:148
|
2500 |
#: includes/addons/product_accordion.php:169
|
2580 |
msgid "No related products are available."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: includes/modules/ajax-search/base.php:76
|
2584 |
msgid "No Results Found"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: includes/helper-function.php:400
|
2588 |
msgid "No saved templates found."
|
2589 |
msgstr ""
|
2590 |
|
2605 |
msgid "Nonce Varification Faild !"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: includes/helper-function.php:1003 includes/addons/product_flash_sale.php:132
|
2609 |
#: includes/addons/product_image_accordion.php:145
|
2610 |
#: includes/addons/product_accordion.php:166
|
2611 |
#: includes/addons/product_curvy.php:201
|
2776 |
"the pro version."
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: includes/helper-function.php:731 includes/helper-function.php:775
|
2780 |
msgid "Out of stock"
|
2781 |
msgstr ""
|
2782 |
|
2784 |
msgid "Out of Stock Badge Color"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: includes/helper-function.php:585
|
2788 |
msgid "p"
|
2789 |
msgstr ""
|
2790 |
|
3038 |
msgid "Product Add To Cart"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: includes/helper-function.php:1048
|
3042 |
#: woolentor-blocks/includes/helper-functions.php:314
|
3043 |
msgid "Product Added"
|
3044 |
msgstr ""
|
3161 |
msgid "Product Per Page"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: classes/class.widgets_control.php:345 includes/helper-function.php:1011
|
3165 |
#: includes/addons/product_flash_sale.php:466
|
3166 |
#: includes/addons/product_image_accordion.php:411
|
3167 |
#: includes/addons/product_accordion.php:490
|
3295 |
msgid "Query Settings"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: includes/helper-function.php:1009 includes/addons/product_flash_sale.php:138
|
3299 |
#: includes/addons/wb_product_upsell.php:71
|
3300 |
#: includes/addons/wb_archive_product.php:132
|
3301 |
#: includes/addons/product_image_accordion.php:151
|
3484 |
msgid "Sale Tag"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: includes/helper-function.php:728 includes/helper-function.php:770
|
3488 |
msgid "Sale!"
|
3489 |
msgstr ""
|
3490 |
|
3522 |
msgid "Search Form Placeholder"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: includes/modules/ajax-search/base.php:122
|
3526 |
+
msgid "Search Products"
|
3527 |
+
msgstr ""
|
3528 |
+
|
3529 |
#: includes/addons/wl_product_horizontal_filter.php:248
|
3530 |
msgid "Search Products..."
|
3531 |
msgstr ""
|
3548 |
msgid "Seconds"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: includes/helper-function.php:377
|
3552 |
msgid "Select"
|
3553 |
msgstr ""
|
3554 |
|
3587 |
msgid "Select Table"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: includes/helper-function.php:402 includes/addons/wl_faq.php:97
|
3591 |
msgid "Select Template"
|
3592 |
msgstr ""
|
3593 |
|
3611 |
msgid "Set featured image"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: includes/helper-function.php:932 includes/helper-function.php:950
|
3615 |
msgid "Set the initial stock amount from"
|
3616 |
msgstr ""
|
3617 |
|
3697 |
msgid "Show By Id"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: includes/modules/ajax-search/widget-product-search-ajax.php:50
|
3701 |
+
msgid "Show Category Dropdown"
|
3702 |
+
msgstr ""
|
3703 |
+
|
3704 |
#: includes/addons/wl_category_grid.php:151
|
3705 |
msgid "Show Count"
|
3706 |
msgstr ""
|
3737 |
msgid "Show items"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: includes/modules/ajax-search/widget-product-search-ajax.php:45
|
3741 |
msgid "Show Number of Product:"
|
3742 |
msgstr ""
|
3743 |
|
3861 |
msgid "Slider Option"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: includes/helper-function.php:945
|
3865 |
msgid "Sold"
|
3866 |
msgstr ""
|
3867 |
|
3930 |
msgid "Sort By"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: includes/helper-function.php:805
|
3934 |
msgid "Sort by average rating"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: includes/helper-function.php:806
|
3938 |
msgid "Sort by latest"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: includes/helper-function.php:804
|
3942 |
msgid "Sort by popularity"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: includes/helper-function.php:808
|
3946 |
msgid "Sort by price: high to low"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: includes/helper-function.php:807
|
3950 |
msgid "Sort by price: low to high"
|
3951 |
msgstr ""
|
3952 |
|
3961 |
msgid "Spacing"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: includes/helper-function.php:587
|
3965 |
msgid "span"
|
3966 |
msgstr ""
|
3967 |
|
4080 |
msgid "Submit Button"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: includes/modules/ajax-search/base.php:161
|
4084 |
msgctxt "submit button"
|
4085 |
msgid "Search"
|
4086 |
msgstr ""
|
4343 |
msgid "Thumbnails Position"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: includes/helper-function.php:1007 includes/addons/wl_faq.php:68
|
4347 |
#: includes/addons/wl_faq.php:342 includes/addons/product_flash_sale.php:136
|
4348 |
#: includes/addons/product_flash_sale.php:772
|
4349 |
#: includes/addons/wl_product_horizontal_filter.php:197
|
4402 |
msgid "Title HTML Tag"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: includes/modules/ajax-search/widget-product-search-ajax.php:41
|
4406 |
msgid "Title:"
|
4407 |
msgstr ""
|
4408 |
|
4422 |
msgid "Top"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
+
#: includes/helper-function.php:1013
|
4426 |
msgid "Top Rated"
|
4427 |
msgstr ""
|
4428 |
|
4432 |
msgid "Top Rated Products"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
+
#: includes/helper-function.php:1012
|
4436 |
msgid "Top Seller"
|
4437 |
msgstr ""
|
4438 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: hasthemes, htplugins, devitemsllc, tarekht, aslamhasib
|
|
3 |
Tags: Elementor, WooCommerce, WooCommerce Elementor, WooCommerce Builder, WooCommerce Product
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.9
|
6 |
-
Stable tag: 2.2.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -345,6 +345,11 @@ Elementor Pro is not required. But you can use wooLentor with Elementor free & P
|
|
345 |
|
346 |
== Changelog ==
|
347 |
|
|
|
|
|
|
|
|
|
|
|
348 |
= Version: 2.2.4 - Date: 05-04-2022 =
|
349 |
* Added : Recently Viewed products addon.
|
350 |
* Solved : Product Column set issue in archive custom addon.
|
3 |
Tags: Elementor, WooCommerce, WooCommerce Elementor, WooCommerce Builder, WooCommerce Product
|
4 |
Requires at least: 4.7
|
5 |
Tested up to: 5.9
|
6 |
+
Stable tag: 2.2.5
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
345 |
|
346 |
== Changelog ==
|
347 |
|
348 |
+
= Version: 2.2.5 - Date: 17-04-2022 =
|
349 |
+
* Added : Category Dropdown Field in ajax search form.
|
350 |
+
* Solved : Product showing issue with custom pagination.
|
351 |
+
* Solved : Product right space issue in archive default addon.
|
352 |
+
|
353 |
= Version: 2.2.4 - Date: 05-04-2022 =
|
354 |
* Added : Recently Viewed products addon.
|
355 |
* Solved : Product Column set issue in archive custom addon.
|
woolentor_addons_elementor.php
CHANGED
@@ -3,21 +3,21 @@
|
|
3 |
* Plugin Name: WooLentor - WooCommerce Elementor Addons + Builder
|
4 |
* Description: The WooCommerce elements library for Elementor page builder plugin for WordPress.
|
5 |
* Plugin URI: https://woolentor.com/
|
6 |
-
* Version: 2.2.
|
7 |
* Author: HasThemes
|
8 |
* Author URI: https://hasthemes.com/plugins/woolentor-pro/
|
9 |
* License: GPL-2.0+
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
11 |
* Text Domain: woolentor
|
12 |
* Domain Path: /languages
|
13 |
-
* WC tested up to: 6.
|
14 |
-
* Elementor tested up to: 3.6.
|
15 |
-
* Elementor Pro tested up to: 3.6.
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
19 |
|
20 |
-
define( 'WOOLENTOR_VERSION', '2.2.
|
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 ) );
|
3 |
* Plugin Name: WooLentor - WooCommerce Elementor Addons + Builder
|
4 |
* Description: The WooCommerce elements library for Elementor page builder plugin for WordPress.
|
5 |
* Plugin URI: https://woolentor.com/
|
6 |
+
* Version: 2.2.5
|
7 |
* Author: HasThemes
|
8 |
* Author URI: https://hasthemes.com/plugins/woolentor-pro/
|
9 |
* License: GPL-2.0+
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
11 |
* Text Domain: woolentor
|
12 |
* Domain Path: /languages
|
13 |
+
* WC tested up to: 6.4.1
|
14 |
+
* Elementor tested up to: 3.6.4
|
15 |
+
* Elementor Pro tested up to: 3.6.5
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
19 |
|
20 |
+
define( 'WOOLENTOR_VERSION', '2.2.5' );
|
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 ) );
|