Forum Replies Created

Viewing 20 posts - 14,301 through 14,320 (of 14,488 total)
  • Author
    Posts
  • 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;
    }

    in reply to: Problem #2050
    Sakin
    Keymaster

    @josedebenidorm: you need to login first and then only you will be able to see that forum as that is private forum.

    in reply to: adding social links #2048
    Sakin
    Keymaster

    @anna_bki: For that you need to add it with the help of css and code in simplecatch_headersocialnetworks() function. If there is problem then you can user support ticket for this.

    in reply to: Problem #2046
    Sakin
    Keymaster

    @josedebenidorm : Please use the appropriate forum. As for all the simple catch pro user can access this private forum http://catchthemes.com/support-forum/forum/simple-catch-pro-premium/ . Add in here.

    The best to avoid this error. Simply delete the theme from your WordPress and add in the latest version.

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

    @smgrayson8: I need your site url to check in details.

    in reply to: Slider content not showing after update #2039
    Sakin
    Keymaster

    @dvmachado: I don’t think I still understand you. But my explanation about the slider is when you add the post ID you should just add the id only not # please.

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