Forum Replies Created

Viewing 20 posts - 14,301 through 14,320 (of 14,493 total)
  • Author
    Posts
  • in reply to: Catch Box on mobile devices #2257
    Sakin
    Keymaster

    @vaskrupp: First when you do the heavy customization you need to build child theme and work on it. This will prevent it from loosing your customizing work.

    I check in your site and you have already done so much so customization without considering the “Responsive Design” css. So, you need to redo most of the css with the considering custom css.

    in reply to: How do I… #2256
    Sakin
    Keymaster

    @Piirus: You can add the following css in “Theme Options -> Theme Options -> Custom CSS” in your WordPress dashboard.

    .entry-meta .no-padding-left {
    display: none;
    }

    in reply to: Comment Box #2255
    Sakin
    Keymaster

    @UndeadStooge: You can remove the comments box at the bottom of the different pages. To do you can edit your page and then you will see the “Discussion” box where you can just uncheck “Allow comments” and “Allow trackbacks and pingbacks on this page.” If you are confused then you can see this http://en.support.wordpress.com/enable-disable-comments/

    But to change the words in the comments. You need to know about the php coding. Build child theme and then change it in comments.php

    in reply to: Header and Footer #2254
    Sakin
    Keymaster

    @UndeadStooge: You can add the following css in “Theme Options -> Theme Options -> Custom CSS” in your WordPress Dashboard.

    I see that there is issue in site logo as it is overlapping the logo. For the logo overlap, use the following css:

    #branding .logo-wrap {
    max-width: 100%;
    }

    For the grey header, use the following css:

    #branding {
    background: url("images/bg-header.jpg") repeat-x scroll left bottom transparent;
    }

    But I don’t understand about the what you want to do with the footer.

    in reply to: Gap between menu nav bar and dropdown options #2253
    Sakin
    Keymaster

    @skistud33: It would be great if you could send me your site URL. So, that I can check in the issue. As if you see the demo site http://catchthemes.com/demo/simplecatch-pro/ it is working fine. Let me know and I will suggest you the solution.

    in reply to: Content Color Options doesn't work #2203
    Sakin
    Keymaster

    @Elisabetta: I just check in and it is working for me in the latest version. Can you send me the side access through http://catchthemes.com/contact-us/ . I need to check in your site configuration as I cannot replicate the problem in my server.

    in reply to: I should mention my error message. #2156
    Sakin
    Keymaster

    @Piirus: It’s really strange how you cannot get in. Try log out and then log in to your account and see it.

    in reply to: Can't seem to access the private boards #2155
    Sakin
    Keymaster

    @Piirus: purchasing pro theme will give you access to private forum. No need to buy membership to get forum access. I see that you have access to private forum. You need to log in and then post it. If there is still problem then you need to send me your password through http://catchthemes.com/contact-us/

    in reply to: Help Editing #2154
    Sakin
    Keymaster

    @thewahm: Sorry I am bit confused what do you mean by under every post. Is it under every single post or in the homepage/archive page under every post.

    So if it is under every single post then you can check single.php

    in reply to: Content Color Options doesn't work #2153
    Sakin
    Keymaster

    @Elisabetta: Please upgrade to latest version and check it. If there is still problem then let me know it. I need to check in your site.

    in reply to: Editing the footer #2152
    Sakin
    Keymaster

    @vosjoe: Just upgrade to Simple Catch Pro theme and there is footer editor where you can change the footer text.

    in reply to: Looking for a feature by feature comparison. #2150
    Sakin
    Keymaster

    @Piirus: that’s great that you have purchased the Simple Catch Pro theme. But for those who want to know I would like to highlight the features:

    1. Simple Catch Theme is build in HTML4 and CSS2 with static layout whereas Simple Catch Pro Theme is build in HTML5, CSS3 and Responsive layout.

    2. Featured Slider: Simple Catch only have Featured Post Slider where to use the slider you need to assign post ID. But in Simple Catch Pro there is option between Featured Post and Featured Image Slider. If you choose featured image slider you can assign image, tittle, description and links manually.

    3. Simple Catch Theme has 3 default layouts whereas Simple Catch Pro Theme has 5 default layouts.

    4. Simple Catch Pro has custom footer editor where you can edit the footer text.

    5. Simple Catch Pro has adspace widget for adding advertisement in the sidebar.

    in reply to: Simple Catch Pro Questions #2149
    Sakin
    Keymaster

    @Piirus: Looks like you have lot of customization to be made in your theme. So, it’s better you use our service “Hire a Customizer” where you send all the details of changes and also the draft layout design.

    in reply to: How to disable link in the slider? #2148
    Sakin
    Keymaster

    @rumyan: if you want to make changes to the theme then I recommend you to build child theme and then add in the changes there in child theme. If you make changes directly in the theme core files then it will be reverted back after you make the updates.

    You need to replace the below code
    [php]
    /**
    * This function to display featured posts on homepage header
    *
    * @get the data value from theme options
    * @displays on the homepage header
    *
    * @useage Featured Image, Title and Content of Post
    *
    * @uses set_transient and delete_transient
    */
    function simplecatch_sliders() {
    global $post;
    //delete_transient( ‘simplecatch_sliders’ );

    global $simplecatch_options_settings;
    $options = $simplecatch_options_settings;

    $postperpage = $options[ ‘slider_qty’ ];

    if( ( !$simplecatch_sliders = get_transient( ‘simplecatch_sliders’ ) ) && !empty( $options[ ‘featured_slider’ ] ) ) {
    echo ‘<!– refreshing cache –>’;

    $simplecatch_sliders = ‘
    <div class="featured-slider">’;
    $get_featured_posts = new WP_Query( array(
    ‘posts_per_page’ => $postperpage,
    ‘post__in’ => $options[ ‘featured_slider’ ],
    ‘orderby’ => ‘post__in’,
    ‘ignore_sticky_posts’ => 1 // ignore sticky posts
    ));
    $i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++;
    $title_attribute = apply_filters( ‘the_title’, get_the_title( $post->ID ) );
    $excerpt = get_the_excerpt();
    if ( $i == 1 ) { $classes = "slides displayblock"; } else { $classes = "slides displaynone"; }
    $simplecatch_sliders .= ‘
    <div class="’.$classes.’">
    <div class="featured">
    <div class="slide-image">’;
    if( has_post_thumbnail() ) {

    $simplecatch_sliders .= ‘<a href="’ . get_permalink() . ‘" title="Permalink to ‘.the_title(”,”,false).’" rel="nofollow">’;

    if( $options[ ‘remove_noise_effect’ ] == "0" ) {
    $simplecatch_sliders .= ‘<span class="img-effect pngfix"></span>’;
    }

    $simplecatch_sliders .= get_the_post_thumbnail( $post->ID, ‘slider’, array( ‘title’ => esc_attr( $title_attribute ), ‘alt’ => esc_attr( $title_attribute ), ‘class’ => ‘pngfix’ ) ).'</a>’;
    }
    else {
    $simplecatch_sliders .= ‘<span class="img-effect pngfix"></span>’;
    }
    $simplecatch_sliders .= ‘
    </div> <!– .slide-image –>
    </div> <!– .featured –>
    <div class="featured-text">’;
    if( $excerpt !=”) {
    $simplecatch_sliders .= the_title( ‘<span>’,'</span>’, false ).’: ‘.$excerpt;
    }
    $simplecatch_sliders .= ‘
    </div><!– .featured-text –>
    </div> <!– .slides –>’;
    endwhile; wp_reset_query();
    $simplecatch_sliders .= ‘
    </div> <!– .featured-slider –>
    <div id="controllers">
    </div><!– #controllers –>’;

    set_transient( ‘simplecatch_sliders’, $simplecatch_sliders, 86940 );
    }
    echo $simplecatch_sliders;
    } // simplecatch_sliders
    [/php]

    with
    [php]
    /**
    * This function to display featured posts on homepage header
    *
    * @get the data value from theme options
    * @displays on the homepage header
    *
    * @useage Featured Image, Title and Content of Post
    *
    * @uses set_transient and delete_transient
    */
    function simplecatch_sliders() {
    global $post;
    //delete_transient( ‘simplecatch_sliders’ );

    global $simplecatch_options_settings;
    $options = $simplecatch_options_settings;

    $postperpage = $options[ ‘slider_qty’ ];

    if( ( !$simplecatch_sliders = get_transient( ‘simplecatch_sliders’ ) ) && !empty( $options[ ‘featured_slider’ ] ) ) {
    echo ‘<!– refreshing cache –>’;

    $simplecatch_sliders = ‘
    <div class="featured-slider">’;
    $get_featured_posts = new WP_Query( array(
    ‘posts_per_page’ => $postperpage,
    ‘post__in’ => $options[ ‘featured_slider’ ],
    ‘orderby’ => ‘post__in’,
    ‘ignore_sticky_posts’ => 1 // ignore sticky posts
    ));
    $i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++;
    $title_attribute = apply_filters( ‘the_title’, get_the_title( $post->ID ) );
    $excerpt = get_the_excerpt();
    if ( $i == 1 ) { $classes = "slides displayblock"; } else { $classes = "slides displaynone"; }
    $simplecatch_sliders .= ‘
    <div class="’.$classes.’">
    <div class="featured">
    <div class="slide-image">’;
    if( has_post_thumbnail() ) {

    if( $options[ ‘remove_noise_effect’ ] == "0" ) {
    $simplecatch_sliders .= ‘<span class="img-effect pngfix"></span>’;
    }

    $simplecatch_sliders .= get_the_post_thumbnail( $post->ID, ‘slider’, array( ‘title’ => esc_attr( $title_attribute ), ‘alt’ => esc_attr( $title_attribute ), ‘class’ => ‘pngfix’ ) );
    }
    else {
    $simplecatch_sliders .= ‘<span class="img-effect pngfix"></span>’;
    }
    $simplecatch_sliders .= ‘
    </div> <!– .slide-image –>
    </div> <!– .featured –>
    <div class="featured-text">’;
    if( $excerpt !=”) {
    $simplecatch_sliders .= the_title( ‘<span>’,'</span>’, false ).’: ‘.$excerpt;
    }
    $simplecatch_sliders .= ‘
    </div><!– .featured-text –>
    </div> <!– .slides –>’;
    endwhile; wp_reset_query();
    $simplecatch_sliders .= ‘
    </div> <!– .featured-slider –>
    <div id="controllers">
    </div><!– #controllers –>’;

    set_transient( ‘simplecatch_sliders’, $simplecatch_sliders, 86940 );
    }
    echo $simplecatch_sliders;
    } // simplecatch_sliders
    [/php]

    Then you need to clear the cache by making changes on any theme setting in your slider.

    But if you want to use simple image slider with your own link, title and description. Everything is optional then you can upgrade to Simple Catch Pro theme.

    in reply to: Simple Catch Widget Areas #2147
    Sakin
    Keymaster

    @sumit.nagi: Nice site and thanks for your feedback. Yes we will add new features soon. This will include different sidebar for home and other pages and also there will be footer sidebar like in our catch box themes. But we are not in plan right now to add header widgets.

    So, it’s all your deal. Right now we are offering introductory price which will be over soon and will be on full price.

    Cheers 🙂

    in reply to: MAKING LOGO BIGGER #2146
    Sakin
    Keymaster

    @yagoleon: You can change any size image to the logo. But then you need to add in custom css in “Custom CSS” box in your Theme Options. As the max height set for the logo is 90px.

    So go to Appearance -> Theme Options -> Custom CSS and add in the following css:

    h1#site-title a img {
    height: auto;
    max-height: inherit;
    max-width: 250px;
    }

    in reply to: Removing links from the meta widget in sidebar #2145
    Sakin
    Keymaster

    @ntillman: You can add and remove any widgets in Sidebar through Appearance -> Widgets in your WordPress Dashboard.

    in reply to: Using Simple Catch as a parent theme? #2144
    Sakin
    Keymaster

    @TJBraatveit: Simple Catch and Simple Catch Pro there have a lot on difference. The directory is also different. So, you have to set style.css in the child theme as below:

    /*
    Theme Name: Simple Catch Pro Child
    Theme URI: http://catchthemes.com/themes/simple-catch-pro/
    Description: Child theme for the Simple Catch Pro theme
    Author: Catch Themes
    Author URI: http://catchthemes.com
    Template: simple-catch-pro
    */
    @import url("../simple-catch-pro/style.css");

    in reply to: Changing Header bg color #2061
    Sakin
    Keymaster

    @smgrayson8 : No problem. You are doing great. You are using Simple Catch Pro theme which is different then simple catch theme. So, for this you can use the css as below:

    #branding {
    background: none #000;
    }

    in reply to: Remove search at top right of page #2060
    Sakin
    Keymaster

    @dpreiser: You are using simple catch pro. So for this you need to add the following css:

    #header-content .searchform {
    display: none;
    }

Viewing 20 posts - 14,301 through 14,320 (of 14,493 total)