HEX
Server: Apache
System: Linux b5.s-host.com.ua 4.18.0-305.10.2.el7.x86_64 #1 SMP Fri Jul 23 21:00:55 UTC 2021 x86_64
User: unelbhzm (1470)
PHP: 8.0.18
Disabled: NONE
Upload Files
File: /sites/nuofama.com/wp-content/themes/blocksy/inc/components/woocommerce/archive/loop-elements.php
<?php

add_action(
	'wp',
	function () {
		if (get_theme_mod('has_shop_sort', 'yes') !== 'yes') {
			remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
		}

		if (get_theme_mod('has_shop_results_count', 'yes') !== 'yes') {
			remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
		}
	},
	5
);

add_action('woocommerce_after_subcategory', function ( $category ) {
	$has_excerpt = get_theme_mod('has_excerpt', 'no') === 'yes';

	if (! $has_excerpt) {
		return;
	}

	echo blocksy_entry_excerpt([
		'length' => get_theme_mod('excerpt_length', '40'),
		'class' => 'entry-excerpt',
		'source' => 'custom',
		'custom_exceprt' => $category->description
	]);
}, 15 );