Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #61002
    Harry
    Participant

    Hi guys,

    I was using Catch Box (Free Version) and I liked it.

    When I upgraded it to Catch Box Pro, the breadcrumbs disappeared.

    What would I need to do to have it back?

    Please help.

    Thank you.

    #61024
    Sakin
    Keymaster

    @Harry: Breadcrumb is not there in both free and pro version. Which plugin you used in Catch Box Free version. Have you customize it.

    #61030
    Harry
    Participant

    Hi Sakin, when I used the free one, i used Breadcrumbs of the SEO by Yoast, but when i use the Pro, it doesn’t work.

    #61107
    Sakin
    Keymaster

    @Harry: Looks like you had customize Catch Box Free theme, as we don’t have support for Breadcrumb in both free and pro version. We are adding it in next version update which will be released soon. It’s under final testing.

    For now, you can add the following code in functions.php file:

    if ( ! function_exists( 'catchbox_breadcrumb_display' ) ) :
    	/**
    	 * Display breadcrumb on header
    	 */
    	function catchbox_breadcrumb_display() {
    		if ( function_exists( 'yoast_breadcrumb' ) ) {
    			echo '<div class="breadcrumbs wpseoyoast">';
    				yoast_breadcrumb();
    			echo '</div><!-- .wpseoyoast -->';
    		}
    		elseif ( function_exists( 'bcn_display' ) ) {
    			echo '<div class="breadcrumbs breadcrumbnavxt" xmlns:v="http://rdf.data-vocabulary.org/#">';
    					bcn_display();
    			echo '</div><!-- .breadcrumbnavxt -->';	
    		}
    		
    	}
    endif; // catchbox_breadcrumb_display	
    add_action( 'catchbox_content', 'catchbox_breadcrumb_display', 20 );
    #61114
    Harry
    Participant

    That works Sakin.

    Thank you for your help.

    #61196
    Harry
    Participant

    Also, I’d like to let you know that I really like this theme. The only thing that I wish it has on it was “Featured Content” under the Home Page Slider.

    Or this is something that we can ad?

    #61453
    Sakin
    Keymaster

    @Harry: Sorry there is no option for that. Every theme has different element. I have noted down and we might release it in future updates.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Breadcrumbs on Catch Box Pro’ is closed to new replies.