Hi Mohammed,
In this issue you solved the viewing of sale product in a mini layout for my sidebar. Unfortunately with recent Dante update it was overwritten. Can you give me the exact code to place in sf-products.php?
You made this note:
Hi,
I made changes and fixed the issue .How many products on sale ?
Code Remarks -:
sf-products.php at /dante/includes/
$meta_query[] = array( // Simple products type
‘key’ => ‘_sale_price’,
‘value’ => 0,
‘compare’ => ‘>’,
‘type’ => ‘numeric’
);
$args = array(
'no_found_rows' => 1,
'post_status' => 'publish',
'post_type' => 'product',
'orderby' => 'date',
'order' => 'ASC',
'product_cat' => $category,
'posts_per_page' => $item_count,
'meta_query' => $meta_query,
'post__in' => $product_ids_on_sale // remove this
Thanks :-)
With Best Regards
Swift Ideas