Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Matthew: Sorry IE 7 and 8 are outdated. We already have 11 version. So, we can support till version 9 and maybe few IE8 issues. For IE8 even WordPress has remove it’s support. But there is one option, you can hire customizer http://catchthemes.com/hire-customizer/ and there you will find people who just add support for IE issues.
Sakin
Keymaster@shuttergirl: We don’t have that option. For that you need to build child theme and work on it. So, if you don’t do coding then you might need to hire customizer.
Sakin
Keymaster@Chaot112: What did you use for https. I mean any plugin. As we haven’t hardcoded link. It’s dynamic and generated from
get_permalink()WordPress core function.Sakin
Keymaster@shuttergirl: What do you mean by this? All pages and post will definitely show full content. If you want your homepage to show full content then you can do that from “Appearance => Theme Options => Layout Option => Content Layout”.
Sakin
Keymaster@Cory: WoW you have two accounts. This mean you like Catch Themes very much. 🙂
Sakin
Keymaster@tkabe: There is no such issue in the code that you have posted in GitHub, I have cleaned the code and proposed the changes in GitHub as your code didn’t have write permission. The only thing I am confused is why the file name is
cpa_child_functions.phpit should be just ‘functions.php`Sakin
Keymaster@shuttergirl: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box as per your need.
/* To remove Category Header */ .archive .page-header { display: none; } /* To change line color in Category Header */ .archive .page-header { border-color: #000; } /* To remove the lines in Category Header */ .archive .page-header { border: none; }Sakin
Keymaster@Tekstiltrold: The secondary menu has the same font site. Maybe you are confused as the current menu will be bold. Like when you check in Forside then menu title Forside will be bold. But the line height is deifferent. So, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to change the color and line height.
#branding #access-secondary ul.menu a { color: #FFFFFF; line-height: 3em; }Sakin
Keymaster@brewreviewcrew: It’s strange. Maybe when you activate simple catch pro the previous theme you used have post format. It’s cool that we just released the update for Simple Catch Theme which adds post format for video and when you choose post format as video in those post, it will show the video.
Sakin
Keymaster@tkabe: I cannot check in your child theme functions.php file form here. That is why you need paste our code in github and send me the link. Then I will check in the code and send you the feedback. I think you are not using the code with
' and "Sakin
Keymaster@tkabe: Your code looks messy. So, can you post your code in http://gist.github.com/ and send me the core link url. Then I will be able to check in.
Sakin
Keymaster@jp_grennier: You change the padding and margin as per your need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.
@media screen and (max-width: 960px) { #header-right { padding-top: 30px; } #header-right .widget.widget_catcheverest_social_widget, ul.social-profile li { margin-bottom: 10px; } }Sakin
Keymaster@tkabe: Yes you should copy that code in your child theme functions.php file and delete Permalink to . Then you need to change any value in theme options panel to clear the transient cache otherwise it will take 24 hours to see the changes.
Sakin
Keymaster@vicgimped: Sorry we don’t support theme developed by other companies. We only support theme form our own theme shop. That means only theme developed by Catch Themes will get free support.
Sakin
Keymaster@Websiteguy: That is for Catch Everest Theme and every theme will have different code.
Sakin
Keymaster@tkabe: Yes it’s not allowed. If you need that feature then you need to build child theme and create functions.php file in your child theme and add the following code:
<?php // Removing the Default Action Hook function unhook_catcheverest_functions() { remove_action( 'wp_head', 'catcheverest_responsive', 5 ); } add_action( 'init', 'unhook_catcheverest_functions' ); //Responsive Meta in Child Theme function catcheverest_child_responsive() { // Getting data from Theme Options global $catcheverest_options_settings; $options = $catcheverest_options_settings; $disable_responsive = $options[ 'disable_responsive' ]; if ( $disable_responsive == "0" ) { echo '<meta name="viewport" content="width=device-width, initial-scale=1.0">'; } } add_action( 'wp_head', 'catcheverest_child_responsive', 5 );Sakin
Keymaster@tkabe: I don’t get it what you mean. You don’t need to request to upgrade to pro version. You can simple purchase the theme from http://catchthemes.com/themes/catch-everest-pro/ and if you need help is installation. Then you can request in http://catchthemes.com/contact-us/
To remove the permalink to in your Featured Post Slide, just open your functions.php file in your child theme and copy the following code and edit it.
/** * Shows Featured Post Slider * * @uses catcheverest_header action to add it in the header */ function catcheverest_post_sliders() { //delete_transient( 'catcheverest_post_sliders' ); global $post, $catcheverest_options_settings; $options = $catcheverest_options_settings; if( ( !$catcheverest_post_sliders = get_transient( 'catcheverest_post_sliders' ) ) && !empty( $options[ 'featured_slider' ] ) ) { echo '<!-- refreshing cache -->'; $catcheverest_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 hentry slides displayblock"; } else { $classes = "post hentry slides displaynone"; } $catcheverest_post_sliders .= ' <article class="'.$classes.'"> <figure class="slider-image"> <a title="Permalink to '.the_title('','',false).'" href="' . get_permalink() . '"> '. 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="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a> </h1> </header>'; if( $excerpt !='') { $catcheverest_post_sliders .= '<div class="entry-content">'. $excerpt.'</div>'; } $catcheverest_post_sliders .= ' </div> </article><!-- .slides -->'; endwhile; wp_reset_query(); $catcheverest_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( 'catcheverest_post_sliders', $catcheverest_post_sliders, 86940 ); } echo $catcheverest_post_sliders; }Note: Please restore the Theme footer or upgrade to Pro version. I hope you understand.
Sakin
Keymaster@jp_grennier: Yes you can. Send me your site URL and then I will check in.
Sakin
Keymaster@delboorman: Still confused. Which element and what is the size that you want to change to.
-
AuthorPosts
