Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #873800

    Hi,

    I believe Enfold has changed the way the breadcrumbs are generated. Is that correct?

    Can you submit me the code to remove (not show) the “category” from the breadcrumb for single posts? Either by CSS or via functions.php (in the Child theme).

    Thanks in advance!

    Best regards,
    Monique

    #874352

    Hey Monique,

    Please add following code to Functions.php file in Appearance > Editor

    add_filter( 'avia_breadcrumbs_args', 'avia_breadcrumbs_args_mod', 10, 1 );
    function avia_breadcrumbs_args_mod( $args ) {
    	$args['show_categories'] = false;
    	return $args;
    }

    Best regards,
    Yigit

    #877626

    Hi Yigit,

    That works well! Thanks!

    Can you flag this topic as solved please?

    Best regards,
    Monique

    #877638

    Hi,

    Sure! Glad we could help Monique! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How to remove the category from breadcrumb?’ is closed to new replies.