Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #588464

    Hi Kriesi,

    Brilliant theme, so well done to you and the team!
    Two quick questions:

    1. How can we remove the text ‘You are here’

      in breadcrumb trail please?
      &
      2. When in the posts area, there are two tabs on the far left and right of the screen, which once clicked take clients through to the next/previous posting. How can these be removed please?

      Thank you in advance for your help, it is genuinely appreciated.

      Kind regards,
      Andy.

    #588466

    try this one:

    .breadcrumb-title {
        display: none !important;
    }
    #588467

    Hi,

    You can use some css to hide it

    span.trail-before {
    display: none!important;
    }

    Hope that helps

    TJ

    #588471

    And to remove the previous / next arrows try…

    #top .avia-post-nav {
    display:none!important;
    }

    TJ

    #588478

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Stylign tab

    .breadcrumb-title {
        display: none!important;
    }


    @tjswarbs78
    and @guenni007, thanks :)

    Best regards,
    Yigit

    #588491

    There is a filter in Enfold to manipulate the breadcrump:

    add_filter('avia_breadcrumbs_args', 'mmx_change_home_breadcrumb', 50, 1);
    function mmx_change_home_breadcrumb($args){
        $args['before'] = '';
        return $args;
    }
    #588493

    Yigit, Guenni007, tjswarbs78, mensmaximus!

    Thank you so much guys for all your quick responses, I’m impressed and really appreciative. I’ll go and put these into place and thank you again guys, you’re the best! :)

    Kind regards,
    Andy.

    #588499

    Hi!

    You are welcome Andy. It is great to have such helpful community :)

    @mensmaximus
    Thanks! :)

    Best regards,
    Yigit

    #588501

    It’s terrific Yigit, best theme, support and community help I’ve found to date!

    10/10 :)

    Kind regards,
    Andy.

    #588505

    Oh and I forgot there is a filter for the post navigation entries too:

    add_filter( 'avia_post_nav_entries', 'mmx_remove_nav_entries', 10, 2 );
    function remove_nav_entries( $entries, $settings ){
    	$entries = '';
    	return $entries;
    }
    

    btw. both filters can be used not only to remove things but to customize ;-)

    #588507

    Wow! Thank you very much mensmaximus!

    It gets better and better, and you’re all so helpful.

    You’re a star my friend :)

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Removal of 'You are here' in breadcrumb trail’ is closed to new replies.