Forum Replies Created

Viewing 20 posts - 11,001 through 11,020 (of 14,509 total)
  • Author
    Posts
  • 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; }

    in reply to: Header Enlargement #13103
    Sakin
    Keymaster

    @karenstl: Yes, you can upload the full width header image from “Appearance => Header”. You header image should be 1140px width. After you upload the image, it will show the crop box, there you click on don’t crop the image and use it.

    After this your site will load the full width header image with padding and margin. To remove the padding and margin, you need to add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #hgroup-wrap { padding: 0; }
    #site-logo { padding: 0; }

    For background color of menu and all, I recommend you to upgrade to Catch Everest Pro, where there is color option to change it all.

    in reply to: Font size and bold #13102
    Sakin
    Keymaster

    @karenstl: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-content h1, .entry-content h2, .entry-content h3 { font-weight: bold; }

    in reply to: Feature Header Image appears twice on page #13101
    Sakin
    Keymaster

    @s-design: If you are locally then can you share with me your screenshots with the explanation. I will try to work how I can help you with it and which version you are using it.

    in reply to: Theme Update #13100
    Sakin
    Keymaster

    @juanelomzt: I have just conformed with sales that they have fixed your issue.

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

    @impresnet: I see that you have already set it large for submenu in your Custom CSS box. Look a the CSS code that I found in your site Custom CSS box.

    #header-menu ul.menu ul a {
        background-color: #0000ff;
        font-size: 21px;
    }
    in reply to: Upgrade #13098
    Sakin
    Keymaster

    @juanelomzt: I don’t see any issue in your account. Please consult with our sales at http://catchthemes.com/contact-us/

    in reply to: leave a reply form #13097
    Sakin
    Keymaster

    @iroersma: For individual pages, you need to edit individual page and then remove Allow comment from Discussion box, which is mentioned in above link.

    Also we have just added option in Theme Options panel for Pro version where you can just disable it from “Appearance => Theme Options => Discussion Box”. But for this you need to upgrade to Catch Everest Pro Version.

Viewing 20 posts - 11,001 through 11,020 (of 14,509 total)