Forum Replies Created

Viewing 20 posts - 5,021 through 5,040 (of 14,497 total)
  • Author
    Posts
  • in reply to: Page-Template Problem #51590
    Sakin
    Keymaster

    Hello All,

    Sorry for all the trouble. We are desperately waiting for the update from WordPress Review to get our Catch Box 3.4.2 live soon so that you can directly update from your WordPress Dashboard.

    But for now, you can download zip file of Catch Box 3.4.2 from http://bit.ly/cbox342 . If you know the FTP then you can just upload it manually. But if you want to upload from WordPress Dashboard, then you need to upload the theme using Catch Update plugin http://catchthemes.com/wp-plugins/catch-updater/. The update instructions is give in Catch Updater plugin page.

    in reply to: Page-Template Problem #51586
    Sakin
    Keymaster

    Sorry all. We are in the process of fixing the issue. But we have no control of free version update. So, we have to wait for WordPress Team to get it approved. We have prepared the patch in version 3.4.2 which is already schedule for release after WordPress update. For now, can you open the file functions.php and go to line no 715. You will see the following code:

    if ( ! function_exists( 'catchbox_body_classes' ) ) : 
    /**
     * Adds two classes to the array of body classes.
     * The first is if the site has only had one author with published posts.
     * The second is if a singular post being displayed
     *
     * @since Catch Box 1.0
     */
    function catchbox_body_classes( $classes ) {
    	$options = catchbox_get_theme_options();
    	$layout = $options['theme_layout'];
    	if ( function_exists( 'is_multi_author' ) && !is_multi_author() ) {
    		$classes[] = 'single-author';
    	}
    	if ( $layout == 'content-sidebar' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' )  && !is_page_template( 'page-onecolumn.php' ) ) {
    		$classes[] = 'content-sidebar';
    	}
    	elseif ( $layout == 'sidebar-content' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' )  && !is_page_template( 'page-onecolumn.php' ) ) {
    		$classes[] = 'sidebar-content';
    	}
    	elseif ( $layout == 'content-onecolumn' || is_page_template( 'page-onecolumn.php' ) && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) {
    		$classes[] = 'content-onecolumn';
    	}		
    	elseif ( is_page_template( 'page-disable-sidebar.php' ) || is_attachment() ) {
    		$classes[] = 'singular';
    	}
    	elseif ( is_page_template( 'page-fullwidth.php' ) || is_attachment() ) {
    		$classes[] = 'fullwidth';	
    	}	
    	return $classes;
    }
    endif; // catchbox_body_classes

    Replace the code with the following code:

    if ( ! function_exists( 'catchbox_body_classes' ) ) : 
    /**
     * Adds two classes to the array of body classes.
     * The first is if the site has only had one author with published posts.
     * The second is if a singular post being displayed
     *
     * @since Catch Box 1.0
     */
    function catchbox_body_classes( $classes ) {
    	$options = catchbox_get_theme_options();
    	$layout = $options['theme_layout'];
    	if ( function_exists( 'is_multi_author' ) && !is_multi_author() ) {
    		$classes[] = 'single-author';
    	}
    	if ( $layout == 'content-sidebar' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' )  && !is_page_template( 'page-onecolumn.php' ) ) {
    		$classes[] = 'right-sidebar';
    	}
    	elseif ( $layout == 'sidebar-content' && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' )  && !is_page_template( 'page-onecolumn.php' ) ) {
    		$classes[] = 'left-sidebar';
    	}
    	elseif ( $layout == 'content-onecolumn' || is_page_template( 'page-onecolumn.php' ) && !is_page_template( 'page-disable-sidebar.php' ) && !is_page_template( 'page-fullwidth.php' ) ) {
    		$classes[] = 'no-sidebar one-column';
    	}		
    	elseif ( is_page_template( 'page-disable-sidebar.php' ) || is_attachment() ) {
    		$classes[] = 'no-sidebar';
    	}
    	elseif ( is_page_template( 'page-fullwidth.php' ) || is_attachment() ) {
    		$classes[] = 'no-sidebar full-width';
    	}	
    	return $classes;
    }
    endif; // catchbox_body_classes
    in reply to: background color fixed header top #51585
    Sakin
    Keymaster

    @Evelien: To change the background color of fixed header top bar, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box. If you want transparent background like the demo page, then you can use RGBA color with opacity otherwise you can add solid color. That’s your choice.

    #header-top {
    	background: #fff; /* Old Browser Solid Color */
    	background: rgba(255, 255, 255, 0.7);	
    }
    in reply to: A few items to customize left #51581
    Sakin
    Keymaster

    @Keith:
    1. You can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #site-title a:hover, 
    #site-title a:focus, 
    #site-title a:active {
        color: #ecd78c;
    }

    2. Just add the following css in “Appearance => Theme Options => Custom CSS” box:

    #site-generator .copyright {
        text-align: center;
        width: 100%;
    }

    3.a. Just add the following css in “Appearance => Theme Options => Custom CSS” box:

    #supplementary.one {
        text-align: center;
    }
    #supplementary.one .widget-area {
        display: inline-block;
        float: none;
        margin: 0 auto;
    }
    #supplementary.one .widget-area .widget_adventurous_social_widget {
        margin-bottom: 0;
    }

    3.b. Just add the following css in “Appearance => Theme Options => Custom CSS” box:

    ul.social-profile li.facebook a {
        background-position: 0 -43px;
    }
    ul.social-profile li.google-plus a {
        background-position: -173px -43px;
    }
    ul.social-profile li.instagram a {
        background-position: -775px -43px;
    }
    in reply to: Mobile Navigation Menu Slider Not Responsive #51577
    Sakin
    Keymaster

    @Alexander: Thanks for your appreciation:

    1. It’s strange, I try your site with both iPhone 6plus and 5s. It’s working nice with my finger.
    — But can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    .mobile-menu { height: 40px; width: 40px; }
    .mobile-menu a { padding: 10px; }
    #top-logo img { max-height: 40px; }

    2. If you see it’s center with the site width. If we just take full width and it will not look center due to menu toggle. Ok we will make it full size in next version update.

    3. Sorry there is no option to add description under your slider in Catch Flames Pro. We have this option in other themes which we call it as Promotion Headline/Homepage Headlines. We are planning to add feature content and promotion headline in future. But at this stage you need to build child theme. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/. Then you can add message function in your child theme functions.php file. For example:

    function catchflames_chid_promotion() { ?>
    	<div id="promotion-headline">
    		<div class="wrapper">
    			<h2>Your Message</h2>
    		</div>
    	</div>
    <?php
    }
    add_action( 'catchflames_before_main', 'catchflames_chid_promotion', 60 );

    4. In Event category page and all, the posts are arrange in the order of posted date. So, you can edit those posts and edit the published date.

    5. For this, you need to build child theme and create function in your child theme functions.php file. For Example:

    function catchflames_category_header_image() { ?>
    	<div id="header-image">
    
    		<?php if ( is_category( 'restaurants' ) { ?>
    			<img id="main-feat-img" alt="image title" src="Image URL" />
    		<?php 
    		}
    		elseif ( is_category( 'lounges' ) { ?>
    			<img id="main-feat-img" alt="image title" src="Image URL" />
    		<?php
    		}
    		elseif ( is_category( 'nightclubs' ) { ?>
    			<img id="main-feat-img" alt="image title" src="Image URL" />
    		<?php
    		}
    		elseif ( is_category( 'events' ) { ?>
    			<img id="main-feat-img" alt="image title" src="Image URL" />
    		<?php
    		} ?>		
    
    	</div>
    <?php
    }
    add_action( 'catchflames_after_header', 'catchflames_category_header_image', 20 );
    in reply to: Missing RSS feed #51566
    Sakin
    Keymaster

    @Ronel: Have you customize the theme, as feed is working fine in our sites http://catchthemes.com/demo/adventurous/. Also there might be some conflicting plugin, so try disabling plugins as well.

    If after disabling plugin and loading original theme and still your feed doesn’t work then you can install plugin Fix My Feed RSS Repair

    in reply to: Responsive format of buttons #51565
    Sakin
    Keymaster

    @Ronel: Sorry can you post in your site URL and let me know which buttons are you talking about. Then I can show you the css.

    in reply to: Adding a line between paragraphs #51564
    Sakin
    Keymaster

    @Keith: Sorry this is how WordPress editor work. We have no control on it. It create auto <p></p> tags and for <br /> you need to go to text mode. You can change to any default theme and check in. It’s not the theme issue.

    in reply to: category archives label #51563
    Sakin
    Keymaster

    @Kim:
    1. To change the category archives label, you need to build child theme. You can refer to this blog post http://catchthemes.com/blog/create-child-theme-wordpress/. Then copy category.php from catch-flames-pro to your child theme and edit

    <?php printf( __( 'Category Archives: %s', 'catchflames' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?>

    2. You can remove grey line and adjust the padding-top and padding-bottom as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    .page-header {
        border-bottom: none;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    3. Sorry I don’t get it what you mean by this.

    in reply to: Header Title is too big #51562
    Sakin
    Keymaster

    @scottc: Create Pro theme is designed to make the large site title. But if you want to change then you can change the font size as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    .site-title { font-size: 133px; }

    in reply to: Featured image size #51452
    Sakin
    Keymaster

    @Keith: Not sure about that. I don’t think it’s WordPress issue. It must be your server have some cache or file storing. Maybe it’s hosting server or plugin issue.

    in reply to: How do I change default Image sizes in Blog listings? #51451
    Sakin
    Keymaster

    @Dan Davies: That option is only there in Pro version. So, you might want to upgrade to pro version. In Catch Everest Pro, you can go to “Appearance => Theme Options => Content Featured Image Options”, there you can select the image size as “Featured Image”, “Full Image”, “Slider Image” or “Disable Image”

    in reply to: How do I change default Image sizes in Blog listings? #51450
    Sakin
    Keymaster

    @Consciousness: That place is there to select the page which you want to set as blog So that you can have static front page.

    in reply to: Social Icons in line with menu #51449
    Sakin
    Keymaster

    @Eduardo: Please check your child theme functions.php file. If there is any php error then yes your site will be blank. Then you need to edit that file and fix that php error or delete that child theme. Be careful with the codes. You can use FTP or cPanel to access that file and make changes.

    in reply to: Automatic change copyright date in footer #51430
    Sakin
    Keymaster

    @Matthew: It should be automatic. It’s strange. Can you go to W3 Total Cache plugin settings and clear the cache. Then let me know it.

    in reply to: Image in Media library is not the one I uploaded #51429
    Sakin
    Keymaster

    @Keith: Can you try uploading another image with different name. There must be some confusing. Also when you upload the image, the media uploader generate various image sizes depending on theme and plugin used.

    Can you post in the image URL that is being uploaded.

    in reply to: Blank page opens when clicking the email link #51428
    Sakin
    Keymaster

    @Denys: Email icon is supposed to do like that. It is supposed to open new message is you have email setup.

    About the loading can you post in your site URL and then I will check in. If you have loading issue then I recommend you adding in Cache plugin like WP Rocket or W3 total Cache.

    in reply to: Featured image size #51427
    Sakin
    Keymaster

    @Keith: Sorry I don’t get it what you mean. Can you post in your site URL and explain.

    in reply to: Home page change picture #51426
    Sakin
    Keymaster

    @wpbv: If you are using Catch Evolution Free theme, then you must be viewing default demo slider images. If this free version, you have option to replace those image by adding your own set of image from “Featured Post Slider” or disable it.

    To add Featured Post Slider, please refer to theme instructions page at http://catchthemes.com/theme-instructions/catch-evolution/ or screencast at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

    Note: If you want to use Featured Image Slier or Page Slider or Category slider then you need to upgrade to pro version. So, please check in Theme Instruction of Pro version for additional options at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: Responsive.css not active in child theme #51425
    Sakin
    Keymaster

    @Sandra1970: For adventurous theme, if you want to remove the parent theme responsive css and add your own child theme responsive.css file. Then you need to add the following code in you child theme functions.php file.

    // Remove Parent theme responsive.css and adding new responsive.css in child theme 
    function adventurous_child_enqueue_scripts() {
        wp_dequeue_style( 'adventurous-responsive' );
        wp_enqueue_style( 'adventurous-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' );
    }
    add_action( 'wp_enqueue_scripts', 'adventurous_child_enqueue_scripts', 11 );
Viewing 20 posts - 5,021 through 5,040 (of 14,497 total)