Forum Replies Created
-
AuthorPosts
-
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
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 } }Sakin
Keymaster@Sheila: That buy now is demo text. You can change that or hide that from “Appearance => Customize => Theme Options => Promotion Headline Options”.
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.
Sakin
Keymaster@wzingrone: Bit confused, as your title and tagline is already left aligned. So, what are you trying to do it.
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.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; } }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.
Sakin
Keymaster@Consciousness: Thanks a lot
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.
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/
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.
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/
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.
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.
Sakin
Keymaster@Kingfisher: I see that you are directly edited files inside core theme directory
catch-evolutionfolder. 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.
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' ); -
AuthorPosts
