Forum Replies Created

Viewing 20 posts - 3,881 through 3,900 (of 14,498 total)
  • Author
    Posts
  • in reply to: Posts on frontpage #57063
    Sakin
    Keymaster

    @guuskoning: I check in new version only. You can post in your site URL after you change the Archive layout to Full Content. Then I can check in.

    You can download version 1.6 from https://wordpress.org/themes/download/catch-base.1.6.zip?nostats=1

    in reply to: Indvidual Header Featured Image #57062
    Sakin
    Keymaster

    @stringa: This theme doesn’t use random header so instead we added in Different header image option. You can build child theme and add the following code in your child theme functions.php file. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/

    /**
     * Random Header Image
     */
    function fullframe_featured_overall_image() {
    	$options 		= fullframe_get_theme_options();	
    	$header_image 	= get_header_image();
    			
    	if ( $header_image != '' ) { ?>
    		<div id="header-featured-image">
    			<div class="wrapper">
    				<?php
    				// Header Image Link and Target
    				if ( !empty( $options[ 'featured_header_image_url' ] ) ) {
    					//support for qtranslate custom link
    					if ( function_exists( 'qtrans_convertURL' ) ) {
    						$link = qtrans_convertURL($options[ 'featured_header_image_url' ]);
    					}
    					else {
    						$link = esc_url( $options[ 'featured_header_image_url' ] );
    					}
    					//Checking Link Target
    					if ( !empty( $options[ 'featured_header_image_base' ] ) )  {
    						$target = '_blank'; 	
    					}
    					else {
    						$target = '_self'; 	
    					}
    				}
    				else {
    					$link = '';
    					$target = '';
    				}
    				
    				// Header Image Title/Alt
    				if ( !empty( $options[ 'featured_header_image_alt' ] ) ) {
    					$title = esc_attr( $options[ 'featured_header_image_alt' ] ); 	
    				}
    				else {
    					$title = '';
    				}
    				
    				// Header Image
    				$feat_image = '<img class="wp-post-image" alt="'.$title.'" src="'.esc_url(  $header_image ).'" />';
    				
    				// Header Image Link 
    				if ( !empty( $options[ 'featured_header_image_url' ] ) ) :
    					echo '<a title="'. esc_attr( $title ).'" href="'. esc_url( $link ) .'" target="'.$target.'">' . $feat_image . '</a>'; 	
    				else:
    					// if empty featured_header_image on theme options, display default
    					echo $feat_image;
    				endif; ?>
    
    			</div><!-- .wrapper -->
    		</div><!-- #header-featured-image -->
    	<?php
    	}
    }
    in reply to: Mistake #57061
    Sakin
    Keymaster

    @Sheila: That buy now is demo text. You can change that or hide that from “Appearance => Customize => Theme Options => Promotion Headline Options”.

    in reply to: Center logo? #57060
    Sakin
    Keymaster

    @Adriana: I have already replied your question in http://catchthemes.com/support-forum/topic/center-logo-5/. Please don’t post in 2 places, it’s difficult to manage it.

    in reply to: Center logo? #57059
    Sakin
    Keymaster

    @wzingrone: Bit confused, as your title and tagline is already left aligned. So, what are you trying to do it.

    in reply to: License and theme specific questions #57058
    Sakin
    Keymaster

    @canehoyer:
    1. Yes, you need to buy each time.
    2. If you host and mange it for your client then in this case you can just buy one time
    3. Yes, you can use it in your own domain and also test sites.

    in reply to: Images on blog posts help #57057
    Sakin
    Keymaster

    @lmf33: Ok try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 768px) {
        #main .hentry img {
            display: block;
            margin: 0 auto;
        }
    }
    in reply to: Remove Author and Date Text from Posts #57056
    Sakin
    Keymaster

    @radz: You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide author in Catch Everest Theme.
    .by-author { display: none; }

    It’s not that possible to do just by css to hide date for some post only.

    in reply to: Please Donate to Catch Themes after Nepal Earthquake #57054
    Sakin
    Keymaster

    @Consciousness: Thanks a lot

    in reply to: Blog page set up #57052
    Sakin
    Keymaster

    @lorencowka: Yes, for open graph text and images. I suggest you to install WordPress SEO by Yoast Plugin. After you install that plugin you can go to “SEO => Social” from your WordPress Dashboard and configure it and further you can configure for your individual page/post with there WordPress SEO by Yoast metabox.

    Note: Sorry for the late reply as we are still in state of emergency due to massive earthquake in Nepal. Internet, electricity, water and sanitation are huge problem here. We are also helping others in the community so we are slowing getting back online.

    in reply to: center logo #57050
    Sakin
    Keymaster

    @Adriana:
    1. To center the logo you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #site-branding {
    width: 100%;
    text-align: Center;
    }

    2. The footer editor options is there only in Pro version. Where you can edit copyright information and all from “Appearance => Customize => Theme Options => Footer Editor Options”. For more about additional features in Pro version, you can check out theme instructions of Catch Responsive Pro at http://catchthemes.com/theme-instructions/catch-responsive-pro/

    in reply to: Background Disappeared #57049
    Sakin
    Keymaster

    @Leonie: It shouldn’t be like that. We will check and fixed it in next version update 3.0. Can you go to “Appearance => Theme Options => Color Options”, check Reset Color and save changes.

    in reply to: Right sidebar width #57048
    Sakin
    Keymaster

    @tadej: Please don’t post in 2 places. It will be difficult for us to manage it. This question has already been answered in http://catchthemes.com/support-forum/topic/width-of-the-right-sidebar/

    in reply to: Transparent Header #57047
    Sakin
    Keymaster

    @njw499: Sorry this is not the theme developed by Catch Themes and we are not are how it is build. So, please ask in the theme developer’s support forum.

    in reply to: Word "Menu" Next to Menu Icon #57044
    Sakin
    Keymaster

    @JDC: Nice Joe… Thanks

    in reply to: Restrict mobile menu to display top-level pages only #57020
    Sakin
    Keymaster

    @Kristin: Sorry this is beyond theme customization. It’s from tinynav and select box. So, you might want to take help from there or hire Javascript developer to work on it.

    in reply to: header image #57018
    Sakin
    Keymaster

    @Kingfisher: I see that you are directly edited files inside core theme directory catch-evolution folder. All the files edits will be reverted back to original when you update or upgrade the theme. So, if you want to edit core theme files then you need to build child theme and edit it. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/

    About the Header Image, you can add that from “Appearance => Header”, then upload then images as per your need and to random it, you can select Randomized and save & publish it.

    in reply to: Second Language in Featured Slider #57010
    Sakin
    Keymaster

    @Roberto: It’s same for Catch Everest Pro theme as well. Just build child theme and then add the following code in your child theme functions.php file.

    /**
     * Template for Ceceppa Multilingua Invalid Cache
     */
    function catcheverest_ceceppa_invalidcache() {
    	delete_transient( 'catcheverest_post_sliders' );
    	delete_transient( 'catcheverest_page_sliders' );
    	delete_transient( 'catcheverest_category_sliders' );
    	delete_transient( 'catcheverest_image_sliders' );
    	delete_transient( 'catcheverest_homepage_featured_content' );
    	delete_transient( 'catcheverest_homepage_headline' );
    	delete_transient( 'catcheverest_footer_content_new' );
    }
    
    add_action( 'after_setup_theme', 'catcheverest_ceceppa_invalidcache' );
    in reply to: Dissable link to article in the Feature Slider #57009
    Sakin
    Keymaster

    @Robert: Yes, just add title and it will replace that with your title.

    in reply to: Resize woocommerce product feature image #57008
    Sakin
    Keymaster

    @Sunyata: Thanks for the update.

Viewing 20 posts - 3,881 through 3,900 (of 14,498 total)