Forum Replies Created

Viewing 20 posts - 3,021 through 3,040 (of 14,507 total)
  • Author
    Posts
  • in reply to: Breadcrumbs on Catch Box Pro #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 );
    in reply to: simple catch archive #61079
    Sakin
    Keymaster

    @roche5000: Nice. Thanks 🙂

    in reply to: Page Load Wait #61078
    Sakin
    Keymaster

    @CJSwanepoel: Sorry no option to do that from Theme. You might want to try plugin like lazy loader and w3 total cache and son on.

    in reply to: file CSS #61077
    Sakin
    Keymaster

    @marcodimi: Check if there is minify and combine option in Wp Super Cache plugin or other plugin. Nothing much to do from theme.

    in reply to: slider #61076
    Sakin
    Keymaster

    @polack47: Sorry there is no option for that. You can just make that text to right from custom css. Maybe you can to try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #main-slider .entry-container {
        right: 0;
    }
    in reply to: mobile menu disappearing #61075
    Sakin
    Keymaster

    @mityo: Have you customize any files/folder inside catch-evolution. If so then you need to revert that back. But if you haven’t change then, please check in your plugin. It might be plugin issue. So, try disabling plugin one by one. You need to have menu like this http://catchthemes.com/demo/catch-evolution/

    About the menu in two like, it because of your custom css padding left. Please find the following css in your custom css and remove it.

    #header-menu ul.menu {
        padding-left: 160px;
    }
    in reply to: Featured Slider is not Working #61074
    Sakin
    Keymaster

    @Lars: Ok cool. Yes, most of the time plugin conflict is the main cause.

    in reply to: Child theme query #61071
    Sakin
    Keymaster

    @Intergame: Child theme in necessary only then you are doing high level of customization. Like if you want to add/edit functions or add/edit any files in ‘adventurous’ theme folder. Customization like style can be done with just custom css box. But if you want to start child theme, then refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    To remove auto hyphens, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:

    #content article {
    	-webkit-hyphens: manual;
    	-moz-hyphens: manual;
    	hyphens: manual;
    }
    in reply to: Menu Height & Home Page Removal #61028
    Sakin
    Keymaster

    @Hair Bear: Can you post in your friend site URL.

    Basically for this, you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    Then remove slider by adding the following code in your child theme functions.php

    // Unhook default Adventurous functions
    function unhook_adventurous_functions() {
    	remove_action( 'adventurous_before_main', 'adventurous_slider_display', 40 );
    }
    add_action( 'init', 'unhook_adventurous_functions' );

    Then you can hook it in the position you like. Like below:

    //Adding Slider Image  in main content box
    add_action( 'adventurous_content_sidebar', 'adventurous_slider_display', 40 );

    Or you can simply call the function.

    in reply to: Main Nav Font Size #61027
    Sakin
    Keymaster

    @Kim: In the following css, you can increase the padding as per your need and then add it in Custom CSS box:

    @media screen and (min-width: 940px) {
        #header-menu ul.menu a, #footer-menu ul.menu a {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
    in reply to: Menu Bar Length? #61026
    Sakin
    Keymaster

    @Shawn: That menu width is 1200px width. Also you can see in our theme instructions page about recommended image sizes http://catchthemes.com/theme-instructions/catch-responsive-pro/#featured-image

    Sakin
    Keymaster

    @fcexclusive: It’s because of your custom css. Check your menu colors and also from widgetize navigation menu plugin. This is not theme issue. You menu need to come like this http://catchthemes.com/demo/catch-base/

    in reply to: Breadcrumbs on Catch Box Pro #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.

    in reply to: Remove descriptive text under Menu Bar #61023
    Sakin
    Keymaster

    @Albert: You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide that.
    .page-header { display: none; }

    in reply to: How to make classic view default on mobile device #61020
    Sakin
    Keymaster

    @Cesar R: Nice that you fixed it 🙂

    in reply to: mobile-menu: wrong sort order #61019
    Sakin
    Keymaster

    @bfischer: Can you post in your site URL then I can check that for you.

    in reply to: WP Passworded Page #61018
    Sakin
    Keymaster

    @bigoslesli: When I check your page, it is required to enter password. So, it’s working fine. Just a note that login user with access permission will not need to enter password. Also after you clear W3 Total Cache, you need to log out, refresh your browser and check in.

    in reply to: removing post date and time #61017
    Sakin
    Keymaster

    @heidiho5050: You can hide it by adding the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .entry-meta .posted-on {
        display: none;
    }
    in reply to: Changing Pagination Colors #61016
    Sakin
    Keymaster

    @2 Brown Dawgs Blog: We found the issue in the Color Options for pagination and will be fixed in next version update.

    So for now, you can change the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    /* Pagination Background and text color */
    .nav-links a {
        background-color: #f2f2f2;
        color: #21759b;
    }
    /* Pagination Hover Background and text color */
    .nav-links a:hover { 
        background-color: #f2f2f2;
        color: #21759b;
    }
    in reply to: need help with Paypal #61015
    Sakin
    Keymaster

    @Anne-Pia: Sorry I only know it by adding plugin such as WooCommerce and Easy Digital Download. You might have to ask in PayPal support forum.

Viewing 20 posts - 3,021 through 3,040 (of 14,507 total)