Forum Replies Created

Viewing 20 posts - 7,901 through 7,920 (of 14,497 total)
  • Author
    Posts
  • in reply to: social link #27028
    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”

    in reply to: second logo in the header and #27026
    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.

    in reply to: Blog Photos Still Not showing up #27002
    Sakin
    Keymaster

    @Drewmikita: It was not showing as you have disable it from “Appearance => Theme Options => Content Featured Image Options”.

    in reply to: Blog Photos Still Not showing up #26988
    Sakin
    Keymaster

    @Drewmikita: Then I need to check in your site settings and plugin conflict. So, I will you the details.

    in reply to: Different Header for Different Pages #26987
    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.

    in reply to: Home page shows up though not selected in menu #26986
    Sakin
    Keymaster

    @Ena: Sorry I don’t get it what you mean? Explain in detail please.

    in reply to: Renaming Secondary Menu for mobile users #26984
    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>
    in reply to: Different Header for Different Pages #26976
    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 );
    in reply to: Single post : display post titles #26969
    Sakin
    Keymaster

    @LE DA: Then you can move that code to just above the code <?php comments_template( '', true ); ?>

    in reply to: Different Header for Different Pages #26968
    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
    in reply to: Menu Not Shown when Header Sidebar Wigget is used #26957
    Sakin
    Keymaster

    @brendon: First I see that you have added Social Icons in Header Top Sidebar so it is above your logo. If you want it to be at right side of logo then you need to move social widget to Header Right Sidebar.

    Another is that your logo and menu width is overflow. Logo tool left width and you have long menu items and it couldn’t fit in right so it move down. So, either you can remove that menu and add in Secondary Menu or you can just add the following css in “Appearance => Theme Options => Custom CSS” box to reduce your menu padding
    .header-sidebar .widget ul.menu a { padding: 0 10px; }

    in reply to: Blog Photos Still Not showing up #26956
    Sakin
    Keymaster

    @Drewmikita: Are you sure that you have added in the Featured Image in the post. Not just inserting image in the post. See the screenshot showing how to add featured image http://www.pinterest.com/pin/548594798331806476/. If you have done this then it should show the image.

    in reply to: Single post : display post titles #26953
    Sakin
    Keymaster

    @LE DA: Oh sorry! you are trying to change it in single post right? Then ignore y previous comment. You need to build child theme and then copy single.php file and replace the following code.

    <nav id="nav-single">
        <h3 class="assistive-text"><?php _e( 'Post navigation', 'catchbox' ); ?></h3>
        <span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span> Previous', 'catchbox' ) ); ?></span>
        <span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">&rarr;</span>', 'catchbox' ) ); ?></span>
    </nav><!-- #nav-single -->

    With

    <nav id="nav-single">
        <h3 class="assistive-text"><?php _e( 'Post navigation', 'catchbox' ); ?></h3>
        <span class="nav-previous"><?php previous_post_link(); ?></span>
        <span class="nav-next"><?php next_post_link(); ?></span>
    </nav><!-- #nav-single -->
    in reply to: Updating Themes & Child Themes #26941
    Sakin
    Keymaster

    @Doren: Here the customization means, customization of core theme files such as functions.php, style.css, index.php and so on. As when you update the theme these files will be replaced by core theme files.

    But if you have customize the site using Theme Options Panel then it’s fine. All your changes will remain same even after the update.

    in reply to: Photo apparent in the summary of an article #26936
    Sakin
    Keymaster

    @lebronjc: Did you add in Featured Image in those post. You need to add in Featured Image. You can see this screenshot on how to add featured image in post http://www.pinterest.com/pin/548594798331806476/

    in reply to: Renaming Secondary Menu for mobile users #26934
    Sakin
    Keymaster

    @mht23: For this we need to add JS code in “Appearance => Theme Options => Tools => Header and Footer Codes => Code to display on Footer” box. But for that I need to your site URL and The name for the secondary menu.

    in reply to: Single post : display post titles #26931
    Sakin
    Keymaster

    @LE DA: For this you need to build child theme and create functions.php file in your child then and then copy catchbox_content_nav() function and edit it in your child theme.

    in reply to: Adding new page not posting #26928
    Sakin
    Keymaster

    @Belinda: Sorry I am bit confused about your problem. Can you post in your site URL and explain. Let me check in phone. Also maybe you can post in the screenshot as well.

    in reply to: Center Logo #26926
    Sakin
    Keymaster

    @brewreviewcrew: First you need to resize your logo as mention to 200px by 200px. See this link I have done that https://dl.dropboxusercontent.com/u/81234910/logo-brewreviewcrew.png . Just upload the logo and add the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding .logo-wrap {
        display: block;
        text-align: center;
        width: 100%;
    }
    #site-logo a img {
        padding-right: 0;
    }
    in reply to: Featured Post Slider Not Showing Up #26891
    Sakin
    Keymaster

    @Nate: Thanks for letting me check in. The trouble plugin was ‘ELI’s Related Posts Footer Links and Widget’ http://wordpress.org/plugins/spostarbust/. I just deactivated it and your slider is working fine.

Viewing 20 posts - 7,901 through 7,920 (of 14,497 total)