Welcome, guest!

Feel free to read the blog, browse for themes, or join the club.

How do I modify default Hybrid breadcrumb with child theme breadcrumb?

  1. I want to replace the separator ‘/’ with ‘>’ in the breadcrumb trail .

    I copied the ‘breadcrumb-trail.php’ from ‘hybrid’ theme and then uploaded my modified one to:
    themes/hybrid-news/library/extensions/breadcrumb-trail.php but it doesn’t show the update. Is this what I am meant to do?

    When I upload it to the default ‘hybrid’ theme and it works, but this is not ideal as the next time I upgrade it will be overwritten. Is there something I am missing? Am I meant to do something to the functions.php file as well?

    Thanks heaps for your time, Ian

    P.S. I am using the latest version hybrid.0.7.1, but had also tried this before with hybrid.0.7 which didn't work either.

  2. Don't touch the breadcrumb file. Just add the following to your functions.php:

    add_filter( 'breadcrumb_trail_args', 'custom_breadcrumb_args' );
    
    function custom_breadcrumb_args( $args = '') {
    	$args['separator'] = '>';
    	return $args;
    }
  3. Thank you very much Kyle, worked perfectly :)

    I wonder if you can help with another problem I have.
    I want to be able to display different category post intros on homepage in different areas and not sure how or where to do that .

    Eg; 'News' category latest 3 posts in one column. Another category latest posts in another area.

  4. I'd probably use the query posts plugin for something like that, but you are better off starting a new post for that question and let someone else offer a solution.

  5. Thanks Kyle, did that and got the answers :)
    http://themehybrid.com/support/topic/how-to-add-extra-category-posts-to-front-pagephp

Reply

You must log in to post.

Limited Access

If you have an account, please take a moment to log in.

Non-exclusive members have limited access to the support forums.

To enjoy the full range of support, sign up for an exclusive membership in the theme club.

Support Forums

  • Bliss Theme (188 posts)
  • Hybrid Theme (16,990 posts)
  • Options Theme (10,322 posts)
  • Structure Theme (2,624 posts)
  • Visionary Theme (767 posts)
  • bbPress Themes (293 posts)
  • WordPress Plugins (1,614 posts)
  • General Discussion (3,966 posts)