Forum Replies Created

Viewing 20 posts - 8,681 through 8,700 (of 14,497 total)
  • Author
    Posts
  • in reply to: footer menu #20533
    Sakin
    Keymaster

    @aroma-bobman: Sorry Bob, I was looking at upcoming version and I just check in the stable version 1.6 and yes we don’t have footer menu option live yet. Will be releasing the update soon. So, sorry you have to wait.

    in reply to: Change font color in Header? #20530
    Sakin
    Keymaster

    @leparaplui3: Thanks for your appreciation ๐Ÿ™‚

    in reply to: Responsive header image #20529
    Sakin
    Keymaster

    @Matthew: I see there is issue in your CSS in “Appearance => Theme Options => Custom CSS box”. You custom css is totally messes up with mixed css starting from @media screen and (min-width: 961px) {. So first, delete all the custom css and add one by one what you need. Also looking at theme design you need to disable responsive design. You need to check all your closing brackets }

    in reply to: spacing below featured content #20526
    Sakin
    Keymaster

    @Lea: Can you try adding the following css in “Appearance => Theme Options => Custom CSS” box.

    .home #content .hentry {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    in reply to: Featured items – centering #20525
    Sakin
    Keymaster

    @Lea: Actually your Homepage Featured content image are smaller in width and so you have issues. If you want to center the image then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #featured-post .wp-post-image {
        display: block;
        margin: 0 auto;
    }

    You can center the titles in your footer widget by add the following css in “Appearance => Theme Options => Custom CSS” box.

    #footer-sidebar .widget-title {
        text-align: center;
    }
    in reply to: Slider and optional widget? #20524
    Sakin
    Keymaster

    @Lea: I see that you are using Catch Everest theme which doesn’t have that option. It only have full width slider. You might want to look at Catch Evolution Pro (http://catchthemes.com/themes/catch-evolution-pro/) or Catch Box Pro (http://catchthemes.com/themes/catch-box-pro/) theme for content width slider. Then you can add image in your sidebar.

    in reply to: Google authorship #20522
    Sakin
    Keymaster

    @MMchen: Sorry but you are not supposed to change any core theme files directly. If you want to change header.php then you can just build child theme and then copy header.php from Catch Box theme to your child theme and then edit there. This way when you update the parent theme, your child theme file will not be changed.

    Also I see that you have added google code directly which is not right method to do it. I see that you have install WordPress SEO plugin by Yoast. So, you can just add it from there. Go to “SEO => Social => Google+” from your WordPress dashboard and add utl URL.

    in reply to: Would like to add category.php and tag.php #20521
    Sakin
    Keymaster

    @rekkette: that’s great. ๐Ÿ™‚

    in reply to: Missing required field โ€œupdatedโ€ #20520
    Sakin
    Keymaster

    @MMchen: Cool.. Cheers ๐Ÿ™‚

    in reply to: footer menu #20519
    Sakin
    Keymaster

    @aroma-bobman: Bob you have added menu in your “Footer Area One” from “Appearance => Widgets” that is why it is showing like that. But if you want to show it like your header menu. Then you need to go to “Appearance => Menus ” Manage Locations”. Then assign you menu in “Footer Menu” theme location.

    in reply to: Cusomize Comment Box #20515
    Sakin
    Keymaster

    @Black_Bird: That is default WordPress comment form and to remove the URL/website field in contact form, you need to first build child theme of Catch Evolution theme and then create functions.php file and add the following code.

    <?php
    /**
     * Altering Comment Form Fields
     * @uses comment_form_default_fields filter
     */
    function catchevolution_comment_form_fields( $fields ) {
    	unset($fields['url']);
    	$req = get_option( 'require_name_email' );
    	$aria_req = ( $req ? " aria-required='true'" : '' );
    	$commenter = wp_get_current_commenter();
        $fields['author'] = '<p class="comment-form-author"><label for="author">' . esc_attr__( 'Name', 'catchevolution' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
            '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>';
        $fields['email'] = '<p class="comment-form-email"><label for="email">' . esc_attr__( 'Email', 'catchbox' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
            '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>'; 
        return $fields;
    	
    }//catchevolution_comment_form_fields
    in reply to: Change font color in Header? #20502
    Sakin
    Keymaster

    @leparaplui3: What are you trying to change i? If you are trying to change Site Title color then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    h1#site-title a { color: #fff; }

    in reply to: footer menu #20499
    Sakin
    Keymaster

    @aroma-bobman: Can you post your site URL? I am bit confused as the Footer Menu is design to display horizontal like the header main menu. Are you adding menu through Widgets or through Menus.

    in reply to: Disable clickable author link #20496
    Sakin
    Keymaster

    @jack5: If you are technical then you can edit the theme file by creating child theme. But if you just want to hide it then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-meta .by-author { display: none; }

    in reply to: Childs theme #20495
    Sakin
    Keymaster

    @natalia: Ok sure I have just emailed you the child theme of Catch Everest Pro ZIP file. I can also assist you in update.

    in reply to: Help with Images In Catch Everest #20494
    Sakin
    Keymaster

    @astra202: Yes, first you need to create post with featured image. See this on how to add Featured image http://www.pinterest.com/pin/548594798329948788/

    Then you need to add the post ID in “Appearance => Theme Options => Featured Post Slider”. See this screenshot http://www.pinterest.com/pin/548594798329984427/

    For free theme you only have option to use post slider but if you are in pro then you have more slider option like independent image slider, page slider, post slider and category slider to choose from.

    Also check our theme instructions page.
    Catch Everest Pro: http://catchthemes.com/theme-instructions/catch-everest-pro/
    Catch Everest: http://catchthemes.com/theme-instructions/catch-everest/

    in reply to: Would like to add category.php and tag.php #20493
    Sakin
    Keymaster

    @rekkette: Yes you are write about lines 75-81. But category.php and tag.php in not a template part. But it’s a full new template which will overwrite archives.php code.

    in reply to: Missing 'Updated' #20485
    Sakin
    Keymaster

    @TruckinTortuga: Looks like you are doing good. As I haven’t found any issues in your site.

    in reply to: Would like to add category.php and tag.php #20484
    Sakin
    Keymaster

    @rekkette: Yes, you are right line no 21 to 26 is about category and tag title

    
    //This is for Category and Tag Titles line no 21 to 26
    if ( is_category() ) {
        printf( __( 'Category Archives: %s', 'catcheverest' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    
    } elseif ( is_tag() ) {
        printf( __( 'Tag Archives: %s', 'catcheverest' ), '<span>' . single_tag_title( '', false ) . '</span>' );
    
    }
    
    //This is for category and tag description line no 55 to 66 
    if ( is_category() ) {
        // show an optional category description
        $category_description = category_description();
        if ( ! empty( $category_description ) )
            echo apply_filters( 'category_archive_meta', '<div class="taxonomy-description">' . $category_description . '</div>' );
    
    } elseif ( is_tag() ) {
        // show an optional tag description
        $tag_description = tag_description();
        if ( ! empty( $tag_description ) )
            echo apply_filters( 'tag_archive_meta', '<div class="taxonomy-description">' . $tag_description . '</div>' );
    }
    
    // For content you need to play with the code in line no 75 to 81
    <?php
    	/* Include the Post-Format-specific template for the content.
    	 * If you want to overload this in a child theme then include a file
    	 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    	 */
    	get_template_part( 'content', get_post_format() );
    ?>

    If this is complicated for you then you can simply create category.php file to control category display and similarly create tag.php file to control tag.

    So now you have 2 options and you can work in any one in which you feel comfortable in.

    in reply to: Would like to add category.php and tag.php #20482
    Sakin
    Keymaster

    @rekkette: Looks like you want to do advance customization, then you need to build child theme and then add your own copy tag.php, category.php and so on.

Viewing 20 posts - 8,681 through 8,700 (of 14,497 total)