Forum Replies Created

Viewing 20 posts - 3,261 through 3,280 (of 14,507 total)
  • Author
    Posts
  • Sakin
    Keymaster

    @Pius: Sorry for the delay. It will be by this weekend. We are doing final testing.

    in reply to: Chicago Pro breadcrumb after header image #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.

    in reply to: Frozen Slider on Iphone #60016
    Sakin
    Keymaster

    Also add the following css in “Appearance = Customize => Theme Options => Custom CSS Options” box:
    #feature-slider .cycle-slideshow .hentry.displaynone { display: none; }

    in reply to: Frozen Slider on Iphone #60015
    Sakin
    Keymaster

    @Mark: Right now when I check in from my iPhone, it’s working fine just after 2 second of loading.

    in reply to: complete document #60012
    Sakin
    Keymaster

    @Andreau: Sorry let me know what type of documentation are you looking for. Catch Evolution Pro currently is prices at $44.99 and you have simple theme instructions http://catchthemes.com/theme-instructions/, change log http://catchthemes.com/changelogs/, fast support http://catchthemes.com/support-forum/ and blog http://catchthemes.com/blog/.

    in reply to: complete document #60004
    Sakin
    Keymaster

    @Andreau: I am not sure which document at you looking for. If you are looking for theme instructions then you can view at http://catchthemes.com/theme-instructions/catch-responsive-pro/ and if you are looking for change log then you can view at http://catchthemes.com/changelogs/catch-responsive-pro-theme/. We don’t have any other documents.

    in reply to: Frozen Slider on Iphone #60003
    Sakin
    Keymaster

    @Mark: I check in your site and see your slider settings for image loader as “Wait”. Which means that your slider will not slide until all the images in the slider get loaded. Go to “Appearance => Customize => Featured Slider => Featured Slider Options” and change that from Wait to true or false then it will show fast. It’s internet and hosting speed issue. You can try installing pluign like W3 Total Cache or WP Rocket to improve site loading.

    in reply to: Menu Colours #60002
    Sakin
    Keymaster

    @beatmaniaNZ: If you are using Catch Responsive Pro theme, then you can customize your menu color from “Appearance => Customize => Color Options” and for “Primary Menu” color, go to “Primary Menu Color Options” and change the Menu background color as per your need. You can either choose from color picker or add color code.

    If you still cannot find in then post in your site URL, I can check that what’s missing.

    in reply to: Featured Image takes over the header in posts #60001
    Sakin
    Keymaster

    @kathiejs: that option is there only in Pro version where you will get “Header Featured Image Options”. But in free version, you need to build child. For child theme and sample child themes, refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and the add the following code in your child theme functions.php file:

    /**
     * Header Image
     */
    function catchevolution_featured_header() { 
    
    	if ( get_header_image() ) : ?>
    		<div id="header-image">
    			<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
    		</div>
    	<?php endif;	
    	
    } // catchevolution_featured_header
    in reply to: Breadcrumbs, change the background colour #59998
    Sakin
    Keymaster

    @Bert: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box to change the background and text color of current breadcrumb item in most right box:

    #breadcrumb-list .breadcrumb-current {
        background-color: #000;
        color: #ddd;
    }
    Sakin
    Keymaster

    @tunedinapps: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box to hide slider navigation and controllers.

    #feature-slider .cycle-prev, 
    #feature-slider .cycle-next, 
    #feature-slider .cycle-pager { 
        display:none;
    }

    Further, if you want to hide slider content as well then add the following css instead:

    #feature-slider .entry-container,
    #feature-slider .cycle-prev, 
    #feature-slider .cycle-next, 
    #feature-slider .cycle-pager { 
        display:none;
    }
    in reply to: Linked text doesn't show on the Featured Page #59994
    Sakin
    Keymaster

    @alexch: Sorry I don’t get it what you mean, the links that you have posted in in so weird.

    in reply to: Blockquote #59993
    Sakin
    Keymaster

    @Herbie: You can add border on the left by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    blockquote {
        border-left: 4px solid #1b8be0;
        padding-left: 10px;
    }

    The double quote mark in the blockquote is from the following css and change it as per your need.

    blockquote:before {
        content: "\201C";
    }
    in reply to: Remove Page Name from Homepage and Shortcode Bug #59968
    Sakin
    Keymaster

    @Kaydev: Sorry there in no option to do that. For that you need to build child theme and then create page template for blog page and then set latest post in the home and then assign that blog page the blog template.

    in reply to: attachment page #59967
    Sakin
    Keymaster

    @effess: If you want to remove that then you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ where you can even download sample child theme. Then add the following code in your child theme functions.php file.

    function catchkathmandu_unhook_functions() {
    	remove_filter( 'attachment_link', 'catchkathmandu_enhanced_image_navigation', 10, 2 );
    }
    add_action( 'init','catchkathmandu_unhook_functions');
    in reply to: Add Title to Posts Page #59966
    Sakin
    Keymaster

    @tinsonit: Ok for that, you need to build child theme and then copy index.php file in your child theme and then add the following code just below the code: <main id="main" class="site-main" role="main">

    <?php if( is_home() && get_option('page_for_posts') ) : ?>
    	<header class="page-header">
    		<h1 class="page-title"><?php echo apply_filters('the_title',get_page( get_option('page_for_posts') )->post_title); ?></h1>
    	</header>
    <?php endif; ?>
    in reply to: Featured Image takes over the header in posts #59965
    Sakin
    Keymaster

    @kathiejs: When I check in your site, its’ working fine. I am bit confused which option what you want to disable.

    in reply to: Widget Centering and Footer Padding #59964
    Sakin
    Keymaster

    @Anne: Thanks a lot for your appreciation.

    in reply to: Move Secondary Menu Above Featured Slider #59963
    Sakin
    Keymaster

    @Kaydev: Your settings will be automatically there in child theme. You might just need to reassign menu if you are using custom menus.

    in reply to: Increase body width/decrease sidebar width #59962
    Sakin
    Keymaster

    @warekart: You site is not accessible. It is showing 503 Service unavailable. So, let me know once your site is live back.

Viewing 20 posts - 3,261 through 3,280 (of 14,507 total)