Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #324414

    Hi

    is it possible to customize the preview text of the categories?
    Such as Headlines, etc ?

    Thanks, Oliver

    #324420

    Hi heufti65!

    Can you please post a screenshot and show the exact element you would like to edit please?

    Regards,
    Yigit

    #325142
    This reply has been marked as private.
    #325462

    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

    #336969

    Hi
    the plugin works well.
    Thanks.

    #337123

    Hi!

    Glad it worked. If you have any questions, let us know.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Customizing Category Description’ is closed to new replies.