pro_vitaly
Форумчанин

Необходимо удалить выпадающий список «Сортировать по...»
Но function.php темы wp-content\themes\bazar\functions.php имеет следующую начинку
Куда добавить код?
Код:
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
Код:
<?php
/**
* Your Inspiration Themes
*
* @package WordPress
* @subpackage Your Inspiration Themes
* @author Your Inspiration Themes Team <info@yithemes.com>
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
*
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.txt
*/
//let's start the game!
require_once('core/load.php');
Куда добавить код?