Home Forums WoodMart support forum Всплывающее окно при наведении на боковое меню/Popup when hovering over sidebar Reply To: Всплывающее окно при наведении на боковое меню/Popup when hovering over sidebar

#230453

Hello,

Please add this code to the functions.php of the child theme:

add_filter( 'widget_categories_args', function($args){
	$args['use_desc_for_title'] = false;
	return $args;
} ); 

Best Regards