2
2
/**
3
3
* Wishlist for WooCommerce - Shortcodes.
4
4
*
5
- * @version 2.0.0
5
+ * @version 3.1.2
6
6
* @since 1.0.0
7
7
* @author WPFactory
8
8
*/
@@ -204,16 +204,16 @@ public static function sc_alg_wc_wl_counter( $atts ) {
204
204
/**
205
205
* Shortcode for showing wishlist.
206
206
*
207
- * @version 1.8.9
207
+ * @version 3.1.2
208
208
* @since 1.0.0
209
209
*/
210
210
public static function sc_alg_wc_wl ( $ atts ) {
211
211
if ( 'no ' === get_option ( 'alg_wc_wl_sc_alg_wc_wl ' , 'yes ' ) ) {
212
212
return '[ ' . self ::SHORTCODE_WISH_LIST . '] ' ;
213
213
}
214
214
$ atts = shortcode_atts ( array (
215
- 'is_email ' => 'false ' ,
216
- 'ignore_excluded_items ' => 'true '
215
+ 'is_email ' => 'false ' ,
216
+ 'ignore_excluded_items ' => 'true '
217
217
), $ atts , self ::SHORTCODE_WISH_LIST );
218
218
219
219
$ user_id_from_query_string = isset ( $ _REQUEST [ Alg_WC_Wish_List_Query_Vars::USER ] ) ? sanitize_text_field ( $ _REQUEST [ Alg_WC_Wish_List_Query_Vars::USER ] ) : '' ;
@@ -232,69 +232,67 @@ public static function sc_alg_wc_wl( $atts ) {
232
232
$ user = wp_get_current_user ();
233
233
$ user_id = $ user ->ID ;
234
234
}
235
-
235
+
236
236
$ current_tab_id = '' ;
237
237
238
- if ( isset ($ _GET ) && isset ($ _GET ['wtab ' ]) && $ _GET ['wtab ' ] > 0 ) {
238
+ if ( isset ( $ _GET ) && isset ( $ _GET ['wtab ' ] ) && $ _GET ['wtab ' ] > 0 ) {
239
239
$ current_tab_id = $ _GET ['wtab ' ];
240
240
}
241
-
242
- if ( $ current_tab_id > 0 ) {
241
+
242
+ if ( $ current_tab_id > 0 ) {
243
243
$ wishlisted_items = Alg_WC_Wish_List::get_multiple_wishlist_items ( $ user_id , $ use_id_from_unlogged_user , $ ignore_excluded_items );
244
244
} else {
245
245
$ wishlisted_items = Alg_WC_Wish_List::get_wish_list ( $ user_id , $ use_id_from_unlogged_user , $ ignore_excluded_items );
246
246
}
247
-
248
- $ alg_wc_wl_orderby = (isset ($ _GET ['alg_wc_wl_orderby ' ]) ? $ _GET ['alg_wc_wl_orderby ' ] : '' );
249
-
247
+
248
+ $ alg_wc_wl_orderby = ( isset ( $ _GET ['alg_wc_wl_orderby ' ] ) ? $ _GET ['alg_wc_wl_orderby ' ] : '' );
249
+
250
250
switch ( $ alg_wc_wl_orderby ) {
251
- case "name-asc " :
252
- $ order_by = 'title ' ;
253
- $ order = 'asc ' ;
254
- break ;
255
- case "name-desc " :
256
- $ order_by = 'title ' ;
257
- $ order = 'desc ' ;
258
- break ;
259
- case "date-asc " :
260
- $ order_by = 'modified ' ;
261
- $ order = 'asc ' ;
262
- break ;
263
- case "date-desc " :
264
- $ order_by = 'modified ' ;
265
- $ order = 'desc ' ;
266
- break ;
267
- case "price-asc " :
268
- $ meta_key = '_price ' ;
269
- $ order_by = 'meta_value_num ' ;
270
- $ order = 'asc ' ;
271
- break ;
272
- case "price-desc " :
273
- $ meta_key = '_price ' ;
274
- $ order_by = 'meta_value_num ' ;
275
- $ order = 'desc ' ;
276
- break ;
277
- case "sku-asc " :
278
- $ meta_key = '_sku ' ;
279
- $ order_by = 'meta_value ' ;
280
- $ order = 'asc ' ;
281
- break ;
282
- case "sku-desc " :
283
- $ meta_key = '_sku ' ;
284
- $ order_by = 'meta_value ' ;
285
- $ order = 'desc ' ;
286
- break ;
287
- default :
288
- $ order_by = 'post__in ' ;
289
- $ order = 'asc ' ;
251
+ case "name-asc " :
252
+ $ order_by = 'title ' ;
253
+ $ order = 'asc ' ;
254
+ break ;
255
+ case "name-desc " :
256
+ $ order_by = 'title ' ;
257
+ $ order = 'desc ' ;
258
+ break ;
259
+ case "date-asc " :
260
+ $ order_by = 'modified ' ;
261
+ $ order = 'asc ' ;
262
+ break ;
263
+ case "date-desc " :
264
+ $ order_by = 'modified ' ;
265
+ $ order = 'desc ' ;
266
+ break ;
267
+ case "price-asc " :
268
+ $ meta_key = '_price ' ;
269
+ $ order_by = 'meta_value_num ' ;
270
+ $ order = 'asc ' ;
271
+ break ;
272
+ case "price-desc " :
273
+ $ meta_key = '_price ' ;
274
+ $ order_by = 'meta_value_num ' ;
275
+ $ order = 'desc ' ;
276
+ break ;
277
+ case "sku-asc " :
278
+ $ meta_key = '_sku ' ;
279
+ $ order_by = 'meta_value ' ;
280
+ $ order = 'asc ' ;
281
+ break ;
282
+ case "sku-desc " :
283
+ $ meta_key = '_sku ' ;
284
+ $ order_by = 'meta_value ' ;
285
+ $ order = 'desc ' ;
286
+ break ;
287
+ default :
288
+ $ order_by = 'post__in ' ;
289
+ $ order = 'asc ' ;
290
290
}
291
-
292
291
293
-
294
292
if ( is_array ( $ wishlisted_items ) && count ( $ wishlisted_items ) > 0 ) {
295
293
$ query_args = array (
296
294
'post_type ' => array ( 'product ' , 'product_variation ' ),
297
- 'post_status ' => array ( 'publish ' ,'trash ' ),
295
+ 'post_status ' => array ( 'publish ' , 'trash ' ),
298
296
'posts_per_page ' => - 1 ,
299
297
'post__in ' => $ wishlisted_items ,
300
298
'orderby ' => $ order_by ,
@@ -303,7 +301,7 @@ public static function sc_alg_wc_wl( $atts ) {
303
301
if ( isset ( $ meta_key ) ) {
304
302
$ query_args ['meta_key ' ] = $ meta_key ;
305
303
}
306
-
304
+
307
305
$ the_query = new WP_Query ( $ query_args );
308
306
} else {
309
307
$ the_query = null ;
@@ -312,9 +310,10 @@ public static function sc_alg_wc_wl( $atts ) {
312
310
$ btn_params = Alg_WC_Wish_List_Toggle_Btn::get_toggle_btn_params ();
313
311
$ btn_params ['btn_class ' ] .= ' remove alg-wc-wl-remove-item-from-wl ' ;
314
312
$ btn_params ['remove_btn_icon_class ' ] = apply_filters ( 'alg_wc_wl_fa_icon_class ' , '' , 'remove_btn ' );
315
- $ params = array (
313
+ $ params = array (
316
314
'the_query ' => $ the_query ,
317
315
'can_remove_items ' => $ can_remove_items ,
316
+ 'default_wishlist_text ' => get_option ( 'alg_wc_wl_texts_default_wishlist ' , __ ( 'Default Wishlist ' , 'wish-list-for-woocommerce ' ) ),
318
317
'show_stock ' => $ show_stock ,
319
318
'remove_btn_params ' => $ btn_params ,
320
319
'show_add_to_cart_btn ' => $ show_add_to_cart_btn ,
0 commit comments