Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Anusha: If you are using Simple Catch Theme then the easiest way is to hide it from the css.
Go to “Appearance -> Theme Options -> Custom CSS” box in your WordPress Dashboard and add the following css:
#header .social-search form.searchform {
display: none;
}
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.
Sakin
Keymaster@yorgo67: it will be best if you create the child theme and then edit the header.php . Just add the image under:
get_search_form();
Second option, you may try adding it custom css in your “Custom CSS” box in theme options. Where you can add image for search. If you want to try this one then send me your site URL and the image URL.
Sakin
Keymaster@vaskrupp: How about the other files that you have changed. You need to move all the modified files to the child theme.
Sakin
Keymaster@todddd: Go to “Appearance -> Theme Options” and then in “Content Layout” select “Show Full Content”. This will give you same as in the posts.
After you activate this option. If you want to show only few text then you need to split with more tag. See this http://en.support.wordpress.com/splitting-content/more-tag/
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.
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;
}
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
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.
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.
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.
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.
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/
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
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.
Sakin
Keymaster@vosjoe: Just upgrade to Simple Catch Pro theme and there is footer editor where you can change the footer text.
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.
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.
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.
-
AuthorPosts
