Forum Replies Created

Viewing 20 posts - 3,881 through 3,900 (of 14,504 total)
  • Author
    Posts
  • in reply to: Home Page Load Problem #57121
    Sakin
    Keymaster

    @Mark: Don’t worry, we will be adding this in new version update soon. Give us sometime, we are not fully operational due to massive earthquake in Nepal.

    in reply to: Move my 728×90 ad down on homepage #57091
    Sakin
    Keymaster

    @Marcus: Which ad are you talking about? When I check in your site it’s center.

    in reply to: Home Page Load Problem #57072
    Sakin
    Keymaster

    @Mark: You can try the same fixed mentioned above.

    in reply to: Home Page Load Problem #57071
    Sakin
    Keymaster

    @Eero: If you are using Catch Base Pro theme. Then you can download child theme from http://catchthemes.com/blog/create-child-theme-wordpress/. Then in your child theme functions.php file add the function mention above.

    in reply to: Change nav menu font colour #57070
    Sakin
    Keymaster

    @canehoyer: Yes, that possible can you send me the color code that you want and your site URL. Then I will send you css to do that.

    in reply to: Varying header images #57064
    Sakin
    Keymaster

    @afeauto: this is strange. I need to check in your site as it’s working fine our site. I will email you.

    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.

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