Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Melody: That’s not a problem. You can use it as per you need.
3. Not again if you want to move your header image below the menu, this option is there in theme option panel of pro version. But for free one, you need to build child theme and then create functions.php file in your child theme and change position with action hook.
So your child theme functions.php will be like below:<?php // Removing the Default Action Hook function unhook_catchevolution_functions() { remove_action( 'catchevolution_after_headercontent', 'catchevolution_featured_header', 10 ); } add_action( 'init', 'unhook_catchevolution_functions' ); add_action( 'catchevolution_after_header', 'catchevolution_featured_header', 20 );And then you need to create style.css to as below:
/* Theme Name: Catch Evolution Child Theme Theme URI: http://catchthemes.com/themes/catch-evolution Author: Catch Themes Team Author URI: http://catchthemes.com Description: Catch Evolution Child is a beautifully sleek creation of Catch Themes. It exudes a clean and super sharp look. It comes with a whole set of interesting, rich features and flexible theme options. Built on HTML5, CSS3, it has a responsive design which lets the content automatically adapt to the screen's size on different devices. Catch Evolution looks striking in a bigger screen. The layout is wider, bigger and luxuriously spacious. This theme is easily customizable with an advanced theme options panel. It supports popular plugins such as Jetpack, WordPress SEO by Yoast, WP-PageNavi, Contact Form 7, WooCommerce and many more. It is also translation ready and should you need support with this theme, please go to http://catchthemes.com/support/ Version: 1.0 Template: catch-evolution Text Domain: catchevolution This theme, like WordPress, is licensed under the GPL. Use it to make something cool, have fun, and share what you've learned with others. */ /* =Import Catch Everest CSS -------------------------------------------------------------- */ @import url("../catch-evolution/style.css"); /* =Child Theme Custom CSS -------------------------------------------------------------- */ #header-image { overflow: hidden; width: 100%; } #header-image img { display: block; max-width: 100%; }Sakin
Keymaster@Conrad: You can add the following css, depending in your need.
/* To Hide Post on/Entry meta */ .entry-meta { display: none; } /* Just Hide Arrow only in post */ .meta-nav { display: none; } /* Hide Arrow with navigation in post */ .post-navigation { display: none; }Sakin
Keymaster@brendon: In next version, we will remove the header of the Menu. So, you don’t need to add any of these script. You can just remove it after next version update. Yes, I understand there is delay in the script. Can you try moving it to “Appearance => Theme Options => Tools => Header and Footer Codes => Code to display on Header” box as below:
<script type="text/javascript"> jQuery(window).load(function() { //Remove Old Primary Menu jQuery( "#tinynav1" ).remove(); //Remove Old Footer Menu jQuery( ".sb-holder" ).remove(); // Secondary Menu jQuery('#access-secondary .menu').tinyNav({ active: 'current-menu-item', header: '' }); jQuery(".tinynav2").selectbox(); }); </script>Sakin
Keymaster@Melody:
1) You cannot add that slider as header. Sorry no option in this theme. BUt there is option in Pro version to make the slider full width. For this you need to build child theme and change the position.
2) Again there is no option for this. You need to build child theme and then copy content.php to your child theme and edit the code.
3) You can create custom menu from “Appearance => Menus” and then assign location as “Fixed Header Top Menu” from “Appearance => Menus => Manage Location”. Also you can add menu in Header Right Sidebar.Sakin
Keymaster@rsolosky: Sorry I don’t get it what you mean. Can explain it in detail.
You can create page and write the content on it. But if you don’t want that page to show in the menu. Then you can build custom menus from “Appearance => Menus”, from which you can just add the pages that you like in the menus http://catchthemes.com/blog/custom-menus-wordpress-themes/Sakin
Keymaster@rgidon: Catch Box theme only accepts maximum of 3 Footer widgets areas that is Footer Area One, Footer Area Two and Footer Area Three. You can add any number of widgets in these Areas. Since, the width of the catch box is just 1000px. So, it’s not recommended to add more then 3.
April 24, 2014 at 2:40 am in reply to: How to add numeric page numbers in simple catch theme? #27146Sakin
Keymaster@Yu: Sorry Catch Kathmandu Pro theme doesn’t support WP-PageNavi and will add it in next version update.
Sakin
Keymaster@Doren: Thanks 🙂
Sakin
Keymaster@Conrad: Sorry not sure about this. Can you post in your site URL and explain in reference to your site. Then I can check in.
Sakin
Keymaster@ingrid: Can you post in your site URL. Facebook like box is not there in our theme. For social like box you either need to install plugin use facebook like box script.
Sakin
Keymaster@Conrad: After you add in the links in “Appearance => Theme Options => Social Links”, you need to “1. Catch Kathmandu: Social” to desire Sidebar from “Appearance => Widgets”
Sakin
Keymaster@Djapeto: For that you need to upgrade to Catch Kathmandu Pro theme and then add “2. Catch Kathmandu: Advertisement” widget in Header Right Sidebar. Where you have option to add in image url.
Then you can assign your menu to Secondary location from “Appearance => Menus”, which will move your menu below the logo.
Sakin
Keymaster@Drewmikita: It was not showing as you have disable it from “Appearance => Theme Options => Content Featured Image Options”.
Sakin
Keymaster@Drewmikita: Then I need to check in your site settings and plugin conflict. So, I will you the details.
Sakin
Keymaster@Jonathan: Actually that plugin conflict with our functions. So, we cannot add this. But yes you can use this child theme and it’s all good.
Sakin
Keymaster@mht23: Can you try adding in the following script.
<script type="text/javascript"> jQuery(window).load(function() { //Remove Old Primary Menu jQuery( "#tinynav1" ).remove(); //Remove Old Footer Menu jQuery( ".sb-holder" ).remove(); // Secondary Menu jQuery('#access-secondary .menu').tinyNav({ active: 'current-menu-item', header: 'Menu' }); jQuery(".tinynav2").selectbox(); }); </script>Sakin
Keymaster@Jonathan: Then add the following code just in your functions.php file. You can place this code below the previous code.
// Remove hook from parent theme function unhook_catchevolution_functions() { remove_action( 'catchevolution_before', 'catchevolution_featured_header', 10 ); } add_action( 'init', 'unhook_catchevolution_functions' ); add_action( 'catchevolution_after_header', 'catchevolution_featured_header', 10 );Sakin
Keymaster@LE DA: Then you can move that code to just above the code
<?php comments_template( '', true ); ?>Sakin
Keymaster@Jonathan: Ok is this is not working for you then you can build child theme and create functions.php file and add the following code
<?php /** * Header Image * * Uses Custom Header and Featued Images * @Hooked in catchevolution_headercontent * @since Catch Evolution 1.0 */ function catchevolution_featured_header() { global $wp_query, $post, $paged, $_wp_default_headers; // Header Image $header_image_path = get_header_image(); // Check if this is a post or page, if it has a thumbnail, and if it's a big one if ( is_singular() && current_theme_supports( 'post-thumbnails' ) && has_post_thumbnail( $post->ID ) && ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) && $image[1] >= HEADER_IMAGE_WIDTH ) : // Houston, we have a new header image! echo '<div id="header-image">'; echo get_the_post_thumbnail( $post->ID ); echo '</div>'; elseif ( get_header_image() ) : ?> <div id="header-image"> <img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" /> </div> <?php endif; } // catchevolution_featured_header -
AuthorPosts
