Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #59902
    Vidal
    Member

    Hi there,

    I purchased the Pro version. I was wondering how I can display the breadcrumb after the header image instead of above the header image?
    Is there a way to change the order? I see some order (hook) functions in the theme functions.php file

    Thanks

    #59943
    Sakin
    Keymaster

    @Vidal: Yes, for that you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ . Then you need to add the following code in your child theme functions.php file. But it won’t look nice.

    function chicago_unhook_functions() {
    	remove_action( 'chicago_after_header', 'chicago_add_breadcrumb', 10 );
    }
    add_action( 'init','chicago_unhook_functions');
    
    add_action( 'chicago_after_header', 'chicago_add_breadcrumb', 45 );
    #59969
    Vidal
    Member

    Mmm, I’m trying to make this child page, but I get a blank page after activating (you have no demo child theme on your site)
    http://89.31.97.49/~hostedvoip/chicago-pro-child.zip
    What am I doing wrong?

    #60018
    Sakin
    Keymaster

    @Vidal: Looks like you have downloaded Catch Box Pro sample theme. You need to download Chicago Pro child theme from http://catchthemes.com/blog/create-child-theme-wordpress/, here is it http://catchthemes.com/wp-content/uploads/2014/05/chicago-pro.zip

    Then you can add the code that I have given above. Also in your child theme, your functions.php have code like ' '. It shouldn’t have any code like that. See the code I have given above. It should look exactly like that.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Chicago Pro breadcrumb after header image’ is closed to new replies.