Forum Replies Created

Viewing 20 posts - 13,401 through 13,420 (of 14,500 total)
  • Author
    Posts
  • in reply to: background header #5421
    Sakin
    Keymaster

    @OmShanti: Send me your site URL?

    in reply to: Featured Post Slider dissappeared #5420
    Sakin
    Keymaster

    @neh: What have you changed in your Child theme?

    Sakin
    Keymaster

    @pitaandfreddy: That is really strange that the demo for Catch Responsive and Catch Mustang both are working fine on my site and they both uses Custom Menu not page menu. Can you refresh and check it.

    Sorry I though you were judging the theme as you didn’t explain for ask for support and then you directly write “responsive menu bug (exists on most if not all Catch themes)”. If you have asked for me then I would have given you the support to fix it.

    Ok I have taken this into consideration for the menu to support both page and custom menu soon.

    Thanks for your feedback.

    Sakin
    Keymaster

    @pitaandfreddy: Please use Custom Menu instead of Page Menu. See this http://en.support.wordpress.com/menus/

    in reply to: Catch Everest – Slider Text #5377
    Sakin
    Keymaster

    @@Dane: But I don’t understand why you are changing those function. Don’t edit any core theme file. To add Featured Post Slider see this support thread http://catchthemes.com/support-forum/topic/change-featured-image-slider/

    in reply to: Catch Everest – Slider Text #5376
    Sakin
    Keymaster

    @Dane: just change
    //delete_transient( 'catcheverest_default_sliders' );

    to
    delete_transient( 'catcheverest_default_sliders' );

    in reply to: Static Page #5374
    Sakin
    Keymaster

    @corawade: Yes for a time being play with this free theme. Our team is working really hard to make the pro version available as soon as possible. The most probable date will be the end of March.

    Sakin
    Keymaster

    @venkat: Sorry for this support forum in only for the theme specific issues and fixed. Not for the additional module added. Please get help from Tweaky services http://bit.ly/YANvfZ or WordPRess job board http://jobs.wordpress.net/

    in reply to: Static Page #5368
    Sakin
    Keymaster

    @corawade: You can add in the slider when you have ready. Just add the Post IDs in your Featured Post Slider Options and it will take the featured image, title and excerpt from those posts.

    There is not option to make the Blog page and add all the post there. You can create the category name “Blog” and assign all posts to that category and add that category in menu through Appearance => Menu.

    This is simple theme and for more advance options, you might need to wait for the Catch Everest Pro version.

    Sakin
    Keymaster

    @zumaneil: Sometimes there might be cache issue with the images.

    thanks for your correction in Social Icons title. Yes, we will change in next version update.

    Thanks for your compliments. It will be great if you post review at Theme Directory http://wordpress.org/support/view/theme-reviews/simple-catch

    in reply to: Centre align the menu #5365
    Sakin
    Keymaster

    @martynlyne: Catch Box theme menu is not design for center. However, you can try increasing the padding of the menu so that it covers up the space.
    Can you try adding in the following CSS in “Custom CSS” box in Theme Options panel.
    #branding ul.menu a { padding: 0 1.88em; }

    in reply to: Widgets under featured image slider #5363
    Sakin
    Keymaster

    @ibrokers: those widgets are Featured Post Widgets and Featured Page widgets. Just add in Featured Post Widget if you want your post to be highlighted there or user Featured Page Widgets if you want your page to be highlighted there.

    It take the Featured Image added in the respective Post or page that you have added. If you don’t know about how to add featured post then see this: http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    in reply to: CB Logo on Browser Tab – remove? #5362
    Sakin
    Keymaster

    @Mocklin: Great.

    in reply to: Static Page #5361
    Sakin
    Keymaster

    @corawade: Sorry I don’t understand your question. Also can you post in your Site URl with more details about the question.

    in reply to: How to change header in child theme? #5360
    Sakin
    Keymaster

    @TJBraatveit: This is bit complicated process. I suggest you to take help from professionals.

    First you have to unhook the parent theme function for which you want to change it.

    For example let’s unlook the parent theme simplecatch_headerdetails function

    // Unhook default Simple Catch Pro functions
    function unhook_simplecatch_functions() {
    // Don't forget the position number if the original function has one
    add_action( 'simplecatch_before_sidebartop', 'simplecatch_headerdetails', 10 );
    }
    add_action( 'init', 'unhook_simplecatch_functions' );

    Then you need to build the child theme function to change that

    add_action( 'simplecatch_before_sidebartop', 'simplecatch_headerdetails_child', 10 );
    function simplecatch_headerdetails_child() {
    //delete_transient( 'simplecatch_headerdetails' );

    global $simplecatch_options_settings;
    $options = $simplecatch_options_settings;

    if ( ( !$simplecatch_headerdetails = get_transient( 'simplecatch_headerdetails' ) ) && ( empty( $options[ 'remove_header_logo' ] ) || empty( $options[ 'remove_site_title' ] ) || empty( $options[ 'remove_site_description' ] ) ) ) {
    echo '<!-- refreshing cache -->';

    $simplecatch_headerdetails = '<hgroup class="logo-wrap clearfix">';

    if( empty( $options[ 'remove_header_logo' ] ) ) {

    $simplecatch_headerdetails .= '<h1 id="site-logo">'.'<a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">';
    if ( !empty( $options[ 'featured_logo_header' ] ) ):
    $simplecatch_headerdetails .= '<img src="'.esc_url( $options['featured_logo_header'] ).'" alt="'.get_bloginfo( 'name' ).'" />';
    else:
    // if empty featured_logo_header on theme options, display default logo
    $simplecatch_headerdetails .='<img src="'. get_template_directory_uri().'/images/logo.png" alt="logo" />';
    endif;
    $simplecatch_headerdetails .= '</a></h1>';
    }

    if ( empty( $options[ 'remove_site_title' ] ) || empty( $options[ 'remove_site_description' ] ) ) {

    $simplecatch_headerdetails .= '<div id="site-details">';

    if( empty( $options[ 'remove_site_title' ] ) ) {
    $simplecatch_headerdetails .= '<h1 id="site-title"><span><a href="'.esc_url( home_url( '/' ) ).'" title="'.esc_attr( get_bloginfo( 'name', 'display' ) ).'">'.esc_attr( get_bloginfo( 'name', 'display' ) ).'</a></span></h1>';
    }
    if( empty( $options[ 'remove_site_description' ] ) ) {
    $simplecatch_headerdetails .= '<h2 id="site-description">'.esc_attr( get_bloginfo( 'description' ) ).'</h2>';
    }
    $simplecatch_headerdetails .= '</div>';
    }

    $simplecatch_headerdetails .= '</hgroup>';

    set_transient( 'simplecatch_headerdetails', $simplecatch_headerdetails, 86940 );
    }
    echo $simplecatch_headerdetails;
    } // simplecatch_headerdetails


    in reply to: scaling images in everest #5359
    Sakin
    Keymaster

    @jonSellers: This is responsive theme and there will be image scaling as per the screen size used.

    in reply to: Featured Post Slider – preview text/read more #5358
    Sakin
    Keymaster

    @JanneS: In you post edit there will be “Excerpt” box. Just add the text in there. If you want to control the exact line.

    Sakin
    Keymaster

    @pitaandfreddy: the menu defined in the theme is perfectly fine. As we focus on Custom Menu feature of WordPress. Not the page menu. Custom Menu adds in current-menu-item for the current item.

    If you see at the demo of Catch Everest. http://catchthemes.com/demo/catch-everest/ Where is the bug. It is selecting the proper menu.

    No problem in demo of Catch Box http://catchthemes.com/demo/catchbox/
    No problem in demo of Catch Box Pro http://catchthemes.com/demo/catchbox-pro/

    No problem in demo of Catch Mustang http://catchthemes.com/demo/catch-mustang/

    No problem in demo of Catch Responsive http://catchthemes.com/demo/catchresponsive/

    No problem in Simple Catch Pro http://catchthemes.com/demo/simplecatch-pro/

    Please post the support query if you have problem. I will personally help you. But please don’t post false judgement.

    in reply to: Blog page features image slider, can't disable #5349
    Sakin
    Keymaster

    @chandrathompson: Youe site URL please.

    in reply to: Need help removing posts from home page #5348
    Sakin
    Keymaster

    @chandrathompson: It would have better if you have posted your question in New Thread. Send me your site URL and then I will provide you CSS to hide the Page titles.

Viewing 20 posts - 13,401 through 13,420 (of 14,500 total)