Forum Replies Created
-
AuthorPosts
-
Mahesh
ParticipantHi @Loudmind,
For the removing space below slider, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#feature-slider{ padding-bottom: 0; }
And for the space between the text and footer, it is because of the empty widget in the footer area. Please go to “Dashboard=> Appearance=> Widgets” And remove the empty Text widget from Footer Area 1.
Regards,
MaheshMahesh
ParticipantHi @kerrigo,
Sorry, this feature was missing in Create Free. Thank you for letting us know. This will be fixed in the next update which will be released soon.
Regards,
MaheshMahesh
ParticipantHi @Carina,
1. You haven’t activated the child theme. Go to “Dashboard=> Appearance=> Themes” and activate Catch Responsive Child theme.
2. It seem you’re using static front page. Go to “Dashboard=> Appearance=> Customize=> Static Front Page” and select Your Latest Post from Front Page Displays option and click save.
3. Please replace the above CSS with the following. The background-color should only contain hex value. It will fix the footer color.
#site-generator { background-color: #000; color: #fff; }
Let me know if this helps.
Regards,
MaheshMahesh
ParticipantHi @Petr Sabata,
This is a bug and will be fixed in the next update. For now please go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
#content .gallery-item { display: inline-block; margin: 0; }
Regards,
MaheshMahesh
ParticipantHi @jie66,
Sorry, there were still some bug in some files. Just fixed now. Please wait for next update 4.2.2. Sorry for the inconvenience.
Thank you for letting us know and fix the bug.Regards,
MaheshMahesh
ParticipantHi @Petr Sabata,
Please post in your site url.
Regards,
MaheshMahesh
ParticipantHi @rflores,
Have you replaced the codes in your
functions.php
with the codes I’ve given above? The code is working fine in our server. Can you please share yourfunctions.php
code?Regards,
MaheshMahesh
ParticipantHi @huskser,
For the above, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
.featured-content-image{ text-align: center; } #featured-content.layout-three .hentry{ width: 25%; } #featured-content.layout-three .hentry:nth-child(3n+2){ width: 50%; }
Regards,
MaheshMahesh
ParticipantHi @kerrigo,
Could you clarify your problem more. By full-width page do you mean removing sidebar and display content to full-width ( This feature is only available in Create Pro version )? Or do you mean to make your site full-width instead of fixed-layout?
Please post in your site url.Regards,
MaheshMahesh
ParticipantHi @Josh
The issue may be because ChatX and Catch Everest Pro use same jquery library. Or the way that ChatX has enqueued those libraries. Please contact the ChatX support for the issue. And we do not have access to ChatX plugin so that we can check it.
Regards,
MaheshMahesh
ParticipantHi @andrewf90,
This feature is only available in Catch Flames Pro version, so I recommend you to upgrade to Pro. In Catch Flames Free version, by default copyright displays the site title, therefore you have to change you site title instead.
Or you can customize it with a child theme.Regards,
MaheshMahesh
ParticipantHi @Loudmind,
Thank you for using Catch Responsive Pro.
Just checked your site and seems you have managed it to change the homepage to static front page. Now only the content of the page is being displayed.
Let me know if you are still having issues.
Regards,
MaheshMahesh
ParticipantWhere actually are you seeing this? Only published date are displaying in our server. Please post in your site url.
Regards,
MaheshJanuary 28, 2016 at 10:42 am in reply to: Want “Leave a Reply” field at bottom of the home-page post, too #83927Mahesh
ParticipantFor this you have to create child theme. For more details on creating child theme, visit this LINK. Then in child theme create a file and name it
index.php
and add the following codes in it and save.<?php /** * The main template file. * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @package Catch Themes * @subpackage Catch Base Pro * @since Catch Base 1.0 */ get_header(); ?> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to override this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', get_post_format() ); ?> <?php $withcomments = 1; // force comments form and comments to show on front page comments_template(); ?> <?php endwhile; ?> <?php catchbase_content_nav( 'nav-below' ); ?> <?php else : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?> </main><!-- #main --> <?php get_sidebar(); ?> <?php get_footer(); ?>
This will display comments section in your home page.
Regards,
MaheshMahesh
ParticipantYou do not have to touch the theme’s code for this. It can be done with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
.wp-caption-text { font-size: 12px; }
Regards,
MaheshMahesh
ParticipantHi @rcstani,
Please post in your site url.
Regards,
MaheshMahesh
ParticipantHi @rflores,
Do you have any other functions added in your
functions.php
. If you do not have any other modifications made, please replace all your code with the following codes:<?php /** * Child Theme functions and definitions * */ /** * Loading Parent theme stylesheet * */ add_action( 'wp_enqueue_scripts', 'simplecatch_child_enqueue_styles' ); function simplecatch_child_enqueue_styles() { wp_enqueue_style( 'simplecatch-parent-style', get_template_directory_uri() . '/style.css' ); } add_action( 'init' , 'simplecatch_child_adjust_image_size'); function simplecatch_child_adjust_image_size() { remove_image_size( 'featured'); add_image_size( 'featured', 210, 210, false); }
Regards,
MaheshMahesh
ParticipantHi @Raielene,
I understand your issue. But the links in the slider is dynamically generated from the code and always points to the very post that the featured is of. I mean slider image of post1 links to post1 and so on. But you mean to have all the slider link to the same page say Post-X. For that you have to override the theme’s function with child theme and place a static link (hard coded) in the anchor tag. And whenever you want to change the link you have to go through the code.
That is why I recommend you to upgrade to Pro.
But if you want to change it within the Free version, create a child theme. You can find more details on creating a child theme HERE. Then in child theme’sfunctions.php
add the following codes./** * Change slider's links to one custom link * */ function catchkathmandu_post_sliders() { //delete_transient( 'catchkathmandu_post_sliders' ); global $post; global $catchkathmandu_options_settings; $options = $catchkathmandu_options_settings; if( ( !$catchkathmandu_post_sliders = get_transient( 'catchkathmandu_post_sliders' ) ) && !empty( $options[ 'featured_slider' ] ) ) { echo '<!-- refreshing cache -->'; $catchkathmandu_post_sliders = ' <div id="main-slider" class="container"> <section class="featured-slider">'; $get_featured_posts = new WP_Query( array( 'posts_per_page' => $options[ 'slider_qty' ], '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 = 'post postid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'post postid-'.$post->ID.' hentry slides displaynone'; } $catchkathmandu_post_sliders .= ' <article class="'.$classes.'"> <figure class="slider-image"> <a title="Permalink to '.the_title('','',false).'" href=" http://your-site/link-to-some-post "> '. get_the_post_thumbnail( $post->ID, 'slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ).' </a> </figure> <div class="entry-container"> <header class="entry-header"> <h1 class="entry-title"> <a title="Permalink to '.the_title('','',false).'" href=" http://your-site/link-to-some-post ">'.the_title( '<span>','</span>', false ).'</a> </h1> </header>'; if( $excerpt !='') { $catchkathmandu_post_sliders .= '<div class="entry-content">'. $excerpt.'</div>'; } $catchkathmandu_post_sliders .= ' </div> </article><!-- .slides -->'; endwhile; wp_reset_query(); $catchkathmandu_post_sliders .= ' </section> <div id="slider-nav"> <a class="slide-previous"><</a> <a class="slide-next">></a> </div> <div id="controllers"></div> </div><!-- #main-slider -->'; set_transient( 'catchkathmandu_post_sliders', $catchkathmandu_post_sliders, 86940 ); } echo $catchkathmandu_post_sliders; } // catchkathmandu_post_sliders
Note: Please replace http://your-site/link-to-some-post in the above code with your desired link. There are two occurrences.
Let me know if this helps.
Regards,
MaheshMahesh
Participant -
AuthorPosts