Sort by Popularity uses total sales of all time and sorts by those.
Is it possible for it to sort by total sales but within the last two months?
public function order_by_popularity_post_clauses( $args ) {
$args['join'] = $this->append_product_sorting_table_join( $args['join'] );
$args['orderby'] = ' wc_product_meta_lookup.total_sales DESC, wc_product_meta_lookup.product_id DESC ';
return $args;
}
Any help is appreciated, thanks
question from:
https://stackoverflow.com/questions/65626767/woocommerce-popularity-sorting-by-date 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…