Forum Replies Created
-
AuthorPosts
-
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 }Sakin
Keymaster@CameronW96: Sorry I haven’t got it. I will send you email. Please reply me there.
Sakin
Keymaster@CameronW96: It doesn’t help as I cannot check our site. It’s under construction.
Sakin
Keymaster@Shaura: I am able to do that easily. I just copy
content-single.phpfile in my child theme and then edit the following Codeif ( '' != $tag_list ) { $utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'catchbox' ); } elseif ( '' != $categories_list ) { $utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'catchbox' ); } else { $utility_text = __( 'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'catchbox' ); }And changed to the following:
if ( '' != $tag_list ) { $utility_text = __( '<a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'catchbox' ); } elseif ( '' != $categories_list ) { $utility_text = __( '<a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'catchbox' ); } else { $utility_text = __( '<a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'catchbox' ); }Sakin
Keymaster@Websiteguy: Width is flexible as it’s responsive design. The maximum width is 1140px.
Sakin
Keymaster@CameronW96: Yes you can add in Footer Menu. If you want to reduce the size then send me the site url after adding in and then I will send you the css to adjust the size.
Sakin
Keymaster@Websiteguy: Just copy
content-page.phpfile from your parent theme to your child theme and add it below the title as below. Here you need to replace SidebarID with yours sidebarid that you have created.
<?php if ( is_active_sidebar( 'SidebarID' ) ) : dynamic_sidebar( 'SidebarID' ); endif; ?>Sakin
Keymaster@Websiteguy: Please check above, I have already given you the CSS.
Sakin
Keymaster@mpetric: It’s strange as Simple Catch and Simple Catch Pro uses same code base for admin section. Can I take a look at your site admin. I will email you with the details.
Sakin
Keymaster@CameronW96: Sorry you don’t have that option in Free Version. It’s only available in Pro version.
Sakin
Keymaster@Shaura: Oh for that post, you can check content-single.php file where you will see
<a href="%6$s">%5$s</a>this is for author link.Sakin
Keymaster@Karin: Once you select 4 Columns in “Featured Content Layout”. You need to increase
“Number of Featured Content” as well.Sakin
Keymaster@Peter: Which version of Catch Box Pro theme are you using it. We have already update the menu icon to 3 Bars. See our demo page at http://catchthemes.com/demo/catchbox-pro/.
You can simply update your theme to latest version and it will be fine. For update instruction see theme instruction page at http://catchthemes.com/theme-instructions/catch-box-pro/
Sakin
Keymaster@habitat: Yes, it will be blank. There you need to add in your social profile URL. For example if I have to add the links I will add as below for my company:
Facebook URL: https://www.facebook.com/catchthemes
Twitter URL: https://twitter.com/catchthemes -
AuthorPosts
