Forum Replies Created

Viewing 20 posts - 8,741 through 8,760 (of 14,494 total)
  • Author
    Posts
  • in reply to: Change Margins Under Title in Pages #20326
    Sakin
    Keymaster

    @Websiteguy: You can add the following CSS.
    .page .entry-header { margin-bottom: 0; }

    in reply to: Why don't Pages show on menu bar? #20325
    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.

    in reply to: Missing required field “updated” #20324
    Sakin
    Keymaster

    @MMchen: Can you post in your site URL?

    in reply to: Fav Icon Won't Show Up #20323
    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”

    in reply to: different header image on pages #20322
    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.

    in reply to: Slider Stopped Functioning #20321
    Sakin
    Keymaster

    @Susie: Can you refresh your browser and check in. Your slide is working fine when I check in your site.

    Sakin
    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; }
    in reply to: Theme Footer #20304
    Sakin
    Keymaster

    @CameronW96: Yes I got it and I replied you. Check your email and also span/junk folder.

    in reply to: Change Margins Under Title in Pages #20299
    Sakin
    Keymaster

    @Websiteguy: Can you post your site URL?

    in reply to: Why don't Pages show on menu bar? #20298
    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/

    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' );
    }
Viewing 20 posts - 8,741 through 8,760 (of 14,494 total)