Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@MMchen: I see that you are using theme in Germany language and I found that that is issue with Germany translation file de_DE.po and de_DE.mo. We have fixed that in upcoming version 2.9.2
Sakin
Keymaster@Kenneth: I see all your slider post have 3 lines of text. Which is fine and no need to change it. But look at the featured images of those posts have difference sizes.
Your 1st and 3rd posts featured image is fine with 644×320. Bur your 2nd and 4th is smaller with 600×320. So, it is showing issue. So, change the featured image of 2nd and 4th and it will be fine.
Sakin
Keymaster@Websiteguy: You can add the following CSS.
.page .entry-header { margin-bottom: 0; }Sakin
Keymaster@Bouncedancer: Did you add in pages from “Pages => Add New”? Just want to make sure that you are not confused with the Post that is added from “Posts => Add New”. You can try disabling plugin and changing to default Twenty Eleven Theme and check in. Let me know what happen as I cannot check in without looking at your site. Also add in ‘Page’ widget in your sidebar through “Appearance => Widgets”. If this shows your pages.
Sakin
Keymaster@nnicholson1: Your favicon url shows ‘http://www.vancouverphotoworks.com/wp-content/themes/simple-catch/images/favicon.ico’ you need add you favicon image url at “Appearance => Theme Options => Fav Icon Options => Favicon URL”
Sakin
Keymaster@Steve: Sorry you cannot change the logo for different pages. Logo is fixed image.
But you can change the ‘Header Featured Image’. For homepage, you can add it from “Appearance => Theme Options => Header Featured Image” and then upload the image and do the necessary settings. If you select Enable Featured Header Image as “Entire Site, Page/Post Featured Image”. Then the Header Featured Image changes as per the page featured image.
Sakin
Keymaster@Susie: Can you refresh your browser and check in. Your slide is working fine when I check in your site.
February 12, 2014 at 11:27 pm in reply to: Header Options: Additional option to move logo position up and do #20305Sakin
Keymaster@Matthew: That is not possible. Bu you can do a little trick my changing the background color of wrapper. Try adding in the following CSS in “Appearance => Theme Options => custom CSS” box.
#main .wrapper { background-color: #F99E47; margin-bottom: 20px; } #secondary .widget { border: none; } .page #content .type-page { margin-bottom: 0; }Sakin
Keymaster@CameronW96: Yes I got it and I replied you. Check your email and also span/junk folder.
Sakin
Keymaster@Websiteguy: Can you post your site URL?
Sakin
Keymaster@Bouncedancer: Yes, you can create pages and then create your own set of custom menus form “Appearance => Menus”. See more details at http://catchthemes.com/blog/custom-menus-wordpress-themes/
Sakin
Keymaster@Bouncedancer: Can you show me your site url where you have issue? Your setting in the page should be like this http://www.pinterest.com/pin/548594798329843253/
Sakin
Keymaster@CameronW96: Strange maybe you got some email filters. Can you test if you can contat our sales at http://catchthemes.com/contact-us
Sakin
Keymaster@HR-Flex: Yes, you can upload the image and Just add “Catch Everest: Advertisement” widgets to sidebar from “Appearance => Widgets”. You can add in header and footer sidebar as per your need.
Sakin
Keymaster@HR-Flex: Sorry I don’t understand your request properly. If you want to add logo then you can add from “Appearance => Header”. For Featured header image, you can add from “Appearance => Theme Options => Header Featured Image Options”. You also can add widgets to header right sidebar or header top sidebar. Just add “Catch Everest: Advertisement” widgets to sidebar from “Appearance => Widgets”
Sakin
Keymaster@Dieter: I don’t get it what you mean. Can you explain with reference to your site URL or Screenshot.
February 11, 2014 at 12:36 pm in reply to: Header Options: Additional option to move logo position up and do #20277Sakin
Keymaster@Matthew: That is border not the padding. You can remove the border top by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
#secondary .widget { border-top: 0; }I see that you have customize your site a lot so I recommend you to disable the responsive design in your site form “Appearance => Theme Options => Responsive Design”
February 11, 2014 at 12:19 pm in reply to: Change comment "Post Author" to "Author" in child theme. #20276Sakin
Keymaster@Websiteguy: You can simply add the following php code in your child theme functions.php file
/** * Template for comments and pingbacks. * * Used as a callback by wp_list_comments() for displaying the comments. */ function catcheverest_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : // Display trackbacks differently than normal comments. ?> <li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>"> <p><?php _e( 'Pingback:', 'catcheverest' ); ?> <?php comment_author_link(); ?> <?php edit_comment_link( __( '(Edit)', 'catcheverest' ), '<span class="edit-link">', '</span>' ); ?></p> <?php break; default : // Proceed with normal comments. global $post; ?> <li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>"> <article id="comment-<?php comment_ID(); ?>" class="comment"> <header class="comment-meta comment-author vcard"> <?php echo get_avatar( $comment, 44 ); printf( '<cite class="fn">%1$s %2$s</cite>', get_comment_author_link(), // If current post author is also comment author, make it known visually. ( $comment->user_id === $post->post_author ) ? '<span> ' . __( 'Author', 'catcheverest' ) . '</span>' : '' ); printf( '<a href="%1$s"><time datetime="%2$s">%3$s</time></a>', esc_url( get_comment_link( $comment->comment_ID ) ), get_comment_time( 'c' ), /* translators: 1: date, 2: time */ sprintf( __( '%1$s at %2$s', 'catcheverest' ), get_comment_date(), get_comment_time() ) ); ?> </header><!-- .comment-meta --> <?php if ( '0' == $comment->comment_approved ) : ?> <p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'catcheverest' ); ?></p> <?php endif; ?> <section class="comment-content comment"> <?php comment_text(); ?> <?php edit_comment_link( __( 'Edit', 'catcheverest' ), '<p class="edit-link">', '</p>' ); ?> </section><!-- .comment-content --> <div class="reply"> <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply', 'catcheverest' ), 'after' => ' <span>↓</span>', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> </div><!-- .reply --> </article><!-- #comment-## --> <?php break; endswitch; // end comment_type check } -
AuthorPosts
