Tagged: x
-
AuthorPosts
-
June 2, 2016 at 2:59 am #1021673
Shan_HBGParticipantHello,
I’m not sure, but I think maybe the latest X update created this issue:
If you look at my blog page, you can see that the number of comments in the meta data isn’t showing. Instead, it says “%s Comments”.
(I intentionally have omitted the author and date from meta data, so these are not displayed.)
Can you please help me troubleshoot?
Thank you!
ShannonJune 2, 2016 at 3:00 am #1021675
Shan_HBGParticipantThis reply has been marked as private.June 2, 2016 at 3:00 am #1021680
Shan_HBGParticipantAnd this is the code I used to modify the elements in the blog post meta data:
/*Remove blog meta data*/ .entry-header .p-meta span:nth-child(1) { display: none; } .entry-header .p-meta span:nth-child(2) { display: none; }June 2, 2016 at 6:48 am #1021954
LelyModeratorHello Shannon,
Thanks for posting in. We’re sorry you’re having this issue. We found this bug and already forwarded to our developer. For the mean time, you may add the following code on your child theme’s functions.php to fix the issue:
if ( ! function_exists( 'x_integrity_entry_meta' ) ) : function x_integrity_entry_meta() { // // Author. // $author = sprintf( '<span><i class="x-icon-pencil" data-x-icon=""></i> %s</span>', get_the_author() ); // // Date. // $date = sprintf( '<span><time class="entry-date" datetime="%1$s"><i class="x-icon-calendar" data-x-icon=""></i> %2$s</time></span>', esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); // // Categories. // if ( get_post_type() == 'x-portfolio' ) { if ( has_term( '', 'portfolio-category', NULL ) ) { $categories = get_the_terms( get_the_ID(), 'portfolio-category' ); $separator = ', '; $categories_output = ''; foreach ( $categories as $category ) { $categories_output .= '<a href="' . get_term_link( $category->slug, 'portfolio-category' ) . '" title="' . esc_attr( sprintf( __( "View all posts in: “%s”", '__x__' ), $category->name ) ) . '"><i class="x-icon-bookmark" data-x-icon=""></i> ' . $category->name . '</a>' . $separator; } $categories_list = sprintf( '<span>%s</span>', trim( $categories_output, $separator ) ); } else { $categories_list = ''; } } else { $categories = get_the_category(); $separator = ', '; $categories_output = ''; foreach ( $categories as $category ) { $categories_output .= '<a href="' . get_category_link( $category->term_id ) . '" title="' . esc_attr( sprintf( __( "View all posts in: “%s”", '__x__' ), $category->name ) ) . '"><i class="x-icon-bookmark" data-x-icon=""></i> ' . $category->name . '</a>' . $separator; } $categories_list = sprintf( '<span>%s</span>', trim( $categories_output, $separator ) ); } // // Comments link. // if ( comments_open() ) { $title = apply_filters( 'x_entry_meta_comments_title', get_the_title() ); $link = apply_filters( 'x_entry_meta_comments_link', get_comments_link() ); $number = apply_filters( 'x_entry_meta_comments_number', get_comments_number() ); $text = ( 0 === $number ) ? 'Leave a Comment' : sprintf(_n( '%s Comment', '%s Comments', $number, '__x__' ), $number); $comments = sprintf( '<span><a href="%1$s" title="%2$s" class="meta-comments"><i class="x-icon-comments" data-x-icon=""></i> %3$s</a></span>', esc_url( $link ), esc_attr( sprintf( __( 'Leave a comment on: “%s”', '__x__' ), $title ) ), $text ); } else { $comments = ''; } // // Output. // if ( x_does_not_need_entry_meta() ) { return; } else { printf( '<p class="p-meta">%1$s%2$s%3$s%4$s</p>', $author, $date, $categories_list, $comments ); } } endif;Hope this helps and thank you for understanding.
June 2, 2016 at 11:33 am #1022504
Shan_HBGParticipantThis worked great. Thank you!
June 2, 2016 at 12:59 pm #1022662
Prasant RaiModeratorYou are most welcome. 🙂
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1021673 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
