Viewing 18 results - 2,381 through 2,398 (of 2,398 total)
  • Author
    Search Results
  • #2263
    Sakin
    Keymaster

    @jean-rene: if you are using Simple Catch Pro then just choose the “Featured Image” and then just add in the images. Don’t add any title and description. This will make it show only the images you have.

    #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.

    #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.

    #2033
    dvmachado
    Participant

    http://pressclipping.xtrweb.com/press/

     

    is a test site because I am changing some theme design.

    now appears only featured slider will not slide.

    I removed the “#”.

    in the home, if you’ll notice, I modified to display 6 news in summary, but when I click on a post, so changes and I would like the full-page news, as you have created this issue, but in the home appear to sum.

     

    thanks,

    #2028
    dvmachado
    Participant

    problems with “featured slider” to catch box wordpress theme

    not in the home. When I enter the ID of the post and give it to save, delete them automatically.

    #1930
    Sakin
    Keymaster

    @regalaffair: you can use the same. We will add this fix in new version update. thanks for reporting bug.

    #1928
    Sakin
    Keymaster

    @ntillman: We need to add the option for enabling and disabling slider. We will look in for future update. For now you can just hide it using the css. Add the following css in “Custom CSS” box in Theme Options under Appearance Tab in your WordPress Dashboard:
    .blog .featured-slider, .blog #controllers {
    display:none;
    }

    #1927
    regalaffair
    Member

    Same here. I have the latest version and I have the homepage / frontpage checked also. titaniumrib.org

    #1925
    Sakin
    Keymaster

    @dpmaki: Hum that’s really strange. I will have my support team look at it. I don’t know why it is showing in you site. But for a quick fix until we release the new version. You can add the following css in the “Custom CSS” box in your Theme Options.

    .blog .featured-slider {
    display: none;
    }

    #1908
    dpmaki
    Member

    I already have the latest version installed.

    #1898
    Sakin
    Keymaster

    @dpmaki: Can you download the latest version of Simple Catch Pro from your account in Catch Themes and then upload it. If this latest version doesn’t fix it then I will need to check in with you. So, let me know the status.

    #1883
    dpmaki
    Member
    #1882
    Sakin
    Keymaster

    @dpmaki: can you send me your site url. It’s little strange.

    #1873
    dpmaki
    Member

    I have “Homepage/Frontpage Only” selected and the featured slider is appearing on both my home page as well as my news page (which is my blog). Can you tell me what the issue might be here, as I only want the images on the main page.

    #1553

    In reply to: editing thumbnail

    sandyboyack
    Member

    on the page with the post below it. the title is babies. it shows the tab for the slider that matches babies… the thumbnail that matches the slider babies is center and makes no sense, thumbnail needs to show the left side to show the babies face. — in the section where you add the slider image to the site (theme options, featured slider) – underneath the pict is button to edit, in that edit it says you can edit just the thumbnail. How do you do that? I tried to go to the choices above the pict chose crop, cropped to just the face, and chose only thumbnail, then there is a save button under the pict. — the save button is not clickable…

    #1550
    bbauld
    Member

    Hi, thanks for the Simple catch theme!
    My image slider works well, but I only want the slider on the static home page and I do not wish the Feature image posts to appear in my blog or anywhere – they are just for the feature images.
    Thanks for your help.

    Robert

    #1527
    Sakin
    Keymaster

    @regalaffair: In Simple Catch Pro theme there is slider option to enable slider in “Homepage / Frontpage” only.

    Check the settings id “Theme Options -> Featured Slider -> Slider Options”

    #1178

    In reply to: Simple Catch Slider

    Sakin
    Keymaster

    This is really simple. In your WordPress Dashboard. Go to Appearance -> Featured Slider.

    Then click on “Slider Effect Options”. From there check the box to Disable Slider Background Effect.

Viewing 18 results - 2,381 through 2,398 (of 2,398 total)