Forum Replies Created

Viewing 20 posts - 8,761 through 8,780 (of 14,504 total)
  • Author
    Posts
  • in reply to: How to get rid of "Leave a Reply" box? #20297
    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/

    in reply to: Theme Footer #20296
    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

    in reply to: How do I add creditcard logos on header #20295
    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.

    in reply to: How do I add creditcard logos on header #20286
    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”

    in reply to: Page developement visual mode #20285
    Sakin
    Keymaster

    @Dieter: I don’t get it what you mean. Can you explain with reference to your site URL or Screenshot.

    Sakin
    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”

    in reply to: Change comment "Post Author" to "Author" in child theme. #20276
    Sakin
    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>&darr;</span>', 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
    			</div><!-- .reply -->
    		</article><!-- #comment-## -->
    	<?php
    		break;
    	endswitch; // end comment_type check
    }
    in reply to: Theme Footer #20275
    Sakin
    Keymaster

    @CameronW96: Sorry I haven’t got it. I will send you email. Please reply me there.

    in reply to: Theme Footer #20272
    Sakin
    Keymaster

    @CameronW96: It doesn’t help as I cannot check our site. It’s under construction.

    in reply to: Search Box In Nav Bar? #20266
    Sakin
    Keymaster

    @Shaura: I am able to do that easily. I just copy content-single.php file in my child theme and then edit the following Code

    if ( '' != $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' );
    }
    in reply to: What is the width of the theme? #20265
    Sakin
    Keymaster

    @Websiteguy: Width is flexible as it’s responsive design. The maximum width is 1140px.

    in reply to: Theme Footer #20263
    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.

    in reply to: Widget area on Page in Child Theme #20262
    Sakin
    Keymaster

    @Websiteguy: Just copy content-page.php file 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; ?>

    in reply to: Center Widgets in footer CSS #20258
    Sakin
    Keymaster

    @Websiteguy: Please check above, I have already given you the CSS.

    in reply to: Performance in the wp-admin area #20256
    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.

    in reply to: Theme Footer #20253
    Sakin
    Keymaster

    @CameronW96: Sorry you don’t have that option in Free Version. It’s only available in Pro version.

    in reply to: Search Box In Nav Bar? #20252
    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.

    in reply to: Homepage featured content #20246
    Sakin
    Keymaster

    @Karin: Once you select 4 Columns in “Featured Content Layout”. You need to increase
    “Number of Featured Content” as well.

    in reply to: Navicon Cahne to 3bars #20244
    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/

    in reply to: Blank Social Links in Theme Options? #20243
    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

Viewing 20 posts - 8,761 through 8,780 (of 14,504 total)