Forum Replies Created

Viewing 20 posts - 10,981 through 11,000 (of 14,496 total)
  • Author
    Posts
  • in reply to: Theme Update #13137
    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.

    in reply to: Remove title from header #13136
    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.

    in reply to: Pinterest #13135
    Sakin
    Keymaster

    @karenstl: There is Pinterest icon in Catch Everest Theme. Just add your Pinterest URL from “Appearance => Theme Options => Social Links”.

    in reply to: Featured Image showing twice on blog posts #13134
    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; }

    in reply to: How to fix multiple h1 tags #13133
    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/

    in reply to: Catch Everest javascript version #13132
    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.

    in reply to: Font size and space between text in menu #13129
    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.

    in reply to: Decrease the size columns? #13127
    Sakin
    Keymaster

    @impresnet: That is possible only in Catch Everest Pro theme.

    in reply to: Menu Bar Lines and Menu Text Bold #13126
    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; }
    in reply to: Feature Header Image appears twice on page #13125
    Sakin
    Keymaster

    @s-design: Yes, thanks for sharing.

    in reply to: Problem with pictures #13121
    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.

    in reply to: Cannot Override No Sidebar Layout #13120
    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.

    in reply to: How to fix multiple h1 tags #13111
    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.

    in reply to: Comments #13110
    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' );
        }
    	
    }
    in reply to: Navi #13109
    Sakin
    Keymaster

    @Printsev: Yes you can.

    in reply to: Cannot Override No Sidebar Layout #13108
    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.

    in reply to: Responsive not working #13107
    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.

    in reply to: Static page shows "Oops! That page can't be found." #13106
    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.

    in reply to: Sample Custom Social Icon Image #13105
    Sakin
    Keymaster

    @fritzhesse: Yes, you can customize the social icon image social-profile.png which 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.

    in reply to: Turn off left and right arrows on Slider #13104
    Sakin
    Keymaster

    @fritzhesse: Yes we can hide it by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #slider-nav { display: none; }

Viewing 20 posts - 10,981 through 11,000 (of 14,496 total)