Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@dbevarly: when you change the theme, you don’t need to copy and paste the content. Your content will be in stored in database so it will not be depended on Theme.
You can simple change the theme to Catch Box Free Theme and then use the plugin “Regenerate Thumbnails” plugin to regenerate your old image to new size of Catch Box theme. Then you can set Header, background and all changes from “Appearance => Theme Options” panel.
Once you set it in Free version, you can simple activate Catch Box Pro version. Which is just a featured addition to Catch Box Free Version. So, it will all go smooth. You just need to set you menu and header, that is also though just a click in settings.
Sakin
Keymaster@crusehh: I don’t get it what you mean. You can remove the header image form “Appearance => Header”.
If you are not talking about this then can you send me your Site URL and the screenshot of what you want to do it.
Sakin
Keymaster@karenstl: There is Pinterest icon in Catch Everest Theme. Just add your Pinterest URL from “Appearance => Theme Options => Social Links”.
Sakin
Keymaster@karenstl: For remove it, you need to upgrade to Catch Everest Pro version. But in free version you can hide it by add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.single .featured-image { display: none; }Sakin
Keymaster@spiritexpressing: Multiple H1 is allowed in HTML5 and we have carefully designed H1 tags with special attention on header tag and headings.
You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
Sakin
Keymaster@crusehh: WordPress 3.6 uses jQuery version 1.10.2. See this in your site http://mmghealth.com/wp-includes/js/jquery/jquery.js?ver=1.10.2
So, this is not a theme or plugin issue. Either you need to change your map to Google Map or you need to add new version of jQuery through Google CDN. For that you need to build child theme and add the following Code in your child theme functions.php
function catchchild_jquery_enqueue() { if ( !is_admin() ) { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js', false, '2.0.3' ); wp_register_script( 'jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", false, null); wp_enqueue_script( 'jquery' ); } } add_action( 'wp_enqueue_scripts', 'catchchild_jquery_enqueue' );For more please take help from WordPress Support Forum as this is not a theme or plugin issue.
Sakin
Keymaster@Nixos: For menu, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header-menu ul.menu { text-align: left; } #header-menu ul.menu a { padding: 0 15px; }For SEO stuff. I see that you have remove the Site Title from “Settings => General”. That is why it is empty after |. It is recommended add title. Also for SEO stuff, I recommend you to use WordPress SEO by Yoast plugin and do the setting. From that plugin you can change the Title as well as description.
Sakin
Keymaster@impresnet: That is possible only in Catch Everest Pro theme.
Sakin
Keymaster@Cassandra: Yes try adding in the following css.
#header #mainmenu ul li ul { background-color: #fff; } #header #mainmenu ul li ul li a { background-color: #fff; }Sakin
Keymaster@ashrafashraf: For Widgets go to “Appearance => Widgets”, there you will see Footer Area One, Two and Three. Those are the three boxes widgets in the footer. You can edit from there.
Sakin
Keymaster@jsilver: Yes, I know about that. As that page is a blog page that you have set it from “Settings => Reading”. So, this setting take the layout from Theme Options panel.
For blog and category, it take the Theme Options panel Layout settings.
Sakin
Keymaster@spiritexpressing: That is how the HTML5 is coded. You can have h1 in each section. So, why do you have to change that. Also that cannot be changes thorough CSS. It’s the HTML Code.
Sakin
Keymaster@franklinchristianacademy: At this time you can disable it though your “Settings => Discussion” where it will remove it from all new pages and posts. But for those which has already been created, you need to manually remove it from you page and post settings. See this for more details http://en.support.wordpress.com/enable-disable-comments/
Also there is option to remove it completely by building child theme and editing then copy the following code in child theme functions.php file
// Function to show the loop content function catchthemes_theloop() { global $post; do_action( 'catchthemes_before_post' ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php do_action( 'catchthemes_before_post_header' ); ?> <header class="entry-header"> <h1 class="entry-title"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php the_title(); ?></a> <?php if( is_post_type_archive( 'testimonials' ) || is_singular( 'testimonials' ) ) { $designation = get_post_meta( $post->ID, 'catchthemes_author_designation', true ); if( $designation ) { echo ' | <span class="testimonial-meta">'.esc_attr( $designation ).'</span>'; } } ?> </h1> <?php if ( ( is_single() || is_archive() || is_author() || is_front_page() ) && ( !is_singular( 'testimonials' ) && !is_singular( 'services' ) && !is_post_type_archive( 'testimonials' ) ) ) { ?> <footer class="entry-meta"> <span class="by-author vcard"><?php _e( 'By ', 'catchthemes' ); ?><a class="url fn n" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" title="<?php echo esc_attr(get_the_author_meta( 'display_name' ) ); ?>" rel="author"><?php the_author(); ?></a></span> <span class="date updated"><?php the_time(get_option('date_format')); ?></span> <?php if( has_tag() ) { ?> <span class="cat-links"><?php the_tags(''); ?></span> <?php } ?> <!-- <span class="comments-link"><?php //comments_popup_link( __( 'No Comments', 'catchthemes' ), __( '1 Comment', 'catchthemes' ), __( '% Comments', 'catchthemes' ) ); ?></span> --> </footer><!-- .entry-meta --> <?php } elseif( is_singular( 'testimonials' ) || is_post_type_archive( 'testimonials' ) ) { ?> <footer class="entry-meta"> <span class="date updated"><?php the_date( 'j F Y' ); ?></span> </footer><!-- .entry-meta --> <?php } ?> </header> <?php do_action( 'catchthemes_after_post_header' ); ?> <?php do_action( 'catchthemes_before_post_content' ); ?> <div class="entry-content clearfix"> <?php if( is_archive() || is_author() || is_home() || is_post_type_archive( 'testimonials' ) ) { $photos = get_children( array('post_parent' => $post->ID, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID') ); if( has_post_thumbnail() || !empty ( $photos ) ) { if ( has_post_thumbnail() ) { $image = get_the_post_thumbnail( $post->ID, 'blog' ); } else { $image = catchthemes_get_first_attached_image ( 'blog' ); } echo ' <div class="thumb"> <a href="' . get_permalink() . '" title="Permalink to '.the_title( '', '', false ).'"> '.$image.' </a> </div><!-- .thumb -->'; echo '<div class="content">'; the_excerpt(); echo '</div><!-- .content --> '; } else { echo '<div class="content-full">'; the_excerpt(); echo '</div><!-- .content-full --> '; } } elseif ( is_search() ) { the_excerpt(); } else { the_content(); // copy this <!--nextpage--> and paste at the post content where you want to break the page wp_link_pages(array( 'before' => '<div class="pagination clearfix">'.__( 'Pages:', 'catchthemes' ), 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', 'pagelink' => '%', 'echo' => 1 ) ); } ?> </div><!-- .entry-content --> <?php do_action( 'catchthemes_after_post_content' ); ?> </article><!-- .post --> <?php do_action( 'catchthemes_after_post' ); if( !is_singular( 'testimonials' ) && !is_singular( 'services' ) ) { do_action( 'catchthemes_before_comments_template' ); //comments_template(); do_action( 'catchthemes_after_comments_template' ); } }Sakin
Keymaster@jsilver: Can you show me the page when you try to set the right sidebar and it’s not working. Send me the page url and is possible the page admin section screenshot where you have selected the layout.
Sakin
Keymaster@wanos: Yes when I check in your site in iPhone it’s ok. Sorry we don’t support plugins. When you add custom css you need to add only for that specific button and also add custom css for responsive width.
Sakin
Keymaster@fritzhesse: Not sure about this. I haven’t done this anywhere. This is issue with the WordPress throughout. Maybe you can ask in WordPress support forum for fast answer.
Sakin
Keymaster@fritzhesse: Yes, you can customize the social icon image
social-profile.pngwhich you will find it in image directory of Catch Everest Pro theme. Also there is Custom Social Icon options in new version of Catch Everest Pro theme.Sakin
Keymaster@fritzhesse: Yes we can hide it by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
#slider-nav { display: none; } -
AuthorPosts
