Forum Replies Created

Viewing 20 posts - 8,581 through 8,600 (of 14,497 total)
  • Author
    Posts
  • in reply to: Responsive header image #20908
    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.

    in reply to: only home page with full content #20907
    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.

    in reply to: Featured Post Slider Questions #20905
    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.

    in reply to: only home page with full content #20904
    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”.

    in reply to: Embed video on home page #20903
    Sakin
    Keymaster

    @Cory: WoW you have two accounts. This mean you like Catch Themes very much. 🙂

    in reply to: Mobile Device Swipe #20902
    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.php it should be just ‘functions.php`

    in reply to: Horizontal Lines Above/Below Category #20891
    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; }
    in reply to: Secondary menu bar, size and text colors #20890
    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;
    }
    in reply to: Embed video on home page #20888
    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.

    in reply to: Mobile Device Swipe #20885
    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 "

    in reply to: Mobile Device Swipe #20882
    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.

    in reply to: adjusting responsive layout #20876
    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; }
    }
    in reply to: Remove Permalink To #20874
    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.

    in reply to: replace site title with logo above header image #20869
    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.

    in reply to: Enable Zooming in Child Theme #20868
    Sakin
    Keymaster

    @Websiteguy: That is for Catch Everest Theme and every theme will have different code.

    in reply to: Home Page Header Images #20867
    Sakin
    Keymaster

    @tkabe: Sorry I don’t get it what you mean? Waiting for?

    in reply to: Mobile Device Swipe #20866
    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 );
    in reply to: Remove Permalink To #20865
    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.

    in reply to: adjusting responsive layout #20864
    Sakin
    Keymaster

    @jp_grennier: Yes you can. Send me your site URL and then I will check in.

    in reply to: Default Font Sizes #20848
    Sakin
    Keymaster

    @delboorman: Still confused. Which element and what is the size that you want to change to.

Viewing 20 posts - 8,581 through 8,600 (of 14,497 total)