Tagged: categories, enfold
Hi
is it possible to customize the preview text of the categories?
Such as Headlines, etc ?
Thanks, Oliver
Hi heufti65!
Can you please post a screenshot and show the exact element you would like to edit please?
Regards,
Yigit
Hi!
Thank you for the screenshot.
You can try this plugin to allow html tags: https://wordpress.org/plugins/allow-html-in-category-descriptions/
If this plugin doesn’t work, add this on functions.php:
$filters = array('term_description','category_description','pre_term_description');
foreach ( $filters as $filter ) {
remove_filter($filter, 'wptexturize');
remove_filter($filter, 'convert_chars');
remove_filter($filter, 'wpautop');
remove_filter($filter, 'wp_filter_kses');
remove_filter($filter, 'strip_tags');
}
Best regards,
Ismael
Hi
the plugin works well.
Thanks.