Home Forums WoodMart support forum Content Appears in Title Blog Categories

Content Appears in Title Blog Categories

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #138759

    lavitasarim
    Participant

    Hello there.

    When you hover your mouse over the blog category titles, the posts appear in the content.

    https://www.lavitasarim.com/ozgun-blog-sayfasi/

    How to prevent this.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    #138827

    Eric Watson
    Participant

    Hello,

    Try to add the following PHP code snippet to the child theme functions.php file to do this

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

    Kind Regards
    XTemos Studio

Viewing 2 posts - 1 through 2 (of 2 total)