• Hi Guys can someone tel me how the top rated products work?

    We have rated a few of our products that just won’t appear on the homepage and a few products that have NO ratings are displayed on the homepage???

    Website url is:

    https://www.gents.co.nz

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author badjohnny

    (@badjohnny)

    Sorry for the delay. I’m checking this issue now. I will let you know the reason and solution today.

    Theme Author badjohnny

    (@badjohnny)

    You can try to change the top related products order by the following codes

    add_filter('lithestore_popular_products_args','top_rated_products');
    function top_rated_products(){
       $args =  array(
    				'limit' 			=> 4,
    				'columns' 			=> 4,
    				'orderby'			=> 'ID',
    				'order'				=> 'asc',
    				'title'				=> __( 'Top Rated Products', 'lithestore' ),
    			);
       return $args;
    }

    orderby argument value: title|date|ID|rand|menu_order
    order value: asc|desc

    https://woocommerce.wp-a2z.org/oik_sc_param/top_rated_products-orderby-parameter/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Top Rated Products’ is closed to new replies.