@hr: Hello there,
I will guide how you can remove the text category using a child theme.
Firstly you will need to create a child theme. You can use our plugin Generate Child Theme to create a child theme. Install and Activate the plugin.
Now,
Go to => Dashboard => Generate Child Theme => Select Parent Theme as Izabel, fill the remaining fields and Click Generate. This will create and activate the child theme.
Finally,
Go to => Child Theme Folder => functions.php and add the following Code.
add_filter( 'get_the_archive_title', function ($title) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
}
return $title;
});
Let me know if this works out!
Kind Regards,
Skandha