In the “Products (grid or carousel)” element, the code has a bug that prevents the Sort order control from being shown in the Elementor.
Path: woodmart/inc/integrations/elementor/elements/products/class-products.php
Line: 278
This is the current code:
'condition' => [
'post_type!' => 'ids', 'recently_viewed',
],
And it should be
'condition' => [
'post_type!' => ['ids', 'recently_viewed'],
],
The condition should be an array, just like all the other conditions.
-
This topic was modified 4 weeks ago by mozex.