K
K
koroleva78302019-08-15 16:25:04
WooCommerce
koroleva7830, 2019-08-15 16:25:04

How to sort products of a separate woocommerce category by price?

On the website of the online store, the sorting of goods is displayed by date. How to make it so that on the page of a separate category of goods, sorting was by price (ascending), and the rest remained by date? wordpress, woocommerce.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Pychev Anatoly, 2019-08-15
@pton

something like this

/************************************************************************/
/* Выставляем порядок товаров для некоторых категорий */
/* порядок только для сортировки "по умолчанию" */

add_filter( 'woocommerce_get_catalog_ordering_args', 'my_woocommerce_get_catalog_ordering_args' );

function my_woocommerce_get_catalog_ordering_args( $args ) {

  // сортировка для этой категории "от дешевых к дорогим"
  // /product-category/novyie-postupleniya/aksessuaryi-dlya-podarkov/

  if ( is_product_category('aksessuaryi-dlya-podarkov') && false !== stripos($args['orderby'], 'menu_order') ) {
    $args['orderby'] = 'meta_value_num ID';
    $args['order'] = 'ASC'; //(или 'DESC';)
    $args['meta_key'] = '_price';
  }

  return $args;
}
/************************************************************************/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question