Forum Replies Created
-
Author
-
Future CellarParticipant
thanks, i got it fixed
I used a function to redirect the author link to buddypress profile
once i removed it, all problem gone
The code was originally from this forum, for others who might experiencing the same problem, blew is the original code, just delete itCOPY CODEfunction kleo_entry_meta($echo=true, $att=array()) { $meta_list = array(); // Translators: used between list items, there is a space after the comma. $categories_list = get_the_category_list( __( ', ', 'kleo_framework' ) ); // Translators: used between list items, there is a space after the comma. $tag_list = get_the_tag_list( '', __( ', ', 'kleo_framework' ) ); $date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark" rel="nofollow"><time class="entry-date" datetime="%3$s">%4$s</time></a>', esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ) ); $author = sprintf( '<a href="%1$s" title="%2$s" rel="author" rel="nofollow">%3$s</a>', esc_url( bp_core_get_user_domain( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'kleo_framework' ), get_the_author() ) ), get_the_author() ); $meta_list[] = '<small class="meta-author">'.$author.'</small>'; $meta_list[] = '<small>'.$date.'</small>'; $cat_tag = array(); if ( $categories_list ) { $cat_tag[] = $categories_list; } if ($tag_list) { $cat_tag[] = $tag_list; } if (!empty($cat_tag)) { $meta_list[] = '<small class="meta-category">'.implode(", ",$cat_tag).'</small>'; } //comments if (!isset($att['comments']) || (isset($att['comments']) && $att['comments'] !== false)) { $meta_list[] = '<small class="meta-comment-count"><a href="'. get_permalink().'#comments" rel="nofollow">'.get_comments_number().' <i class="icon-chat-1 hover-tip" data-original-title="'.sprintf( _n( 'This article has one comment', 'This article has %1$s comments', get_comments_number(), 'kleo_framework' ),number_format_i18n( get_comments_number() ) ).'" data-toggle="tooltip" data-placement="top"></i></a></small>'; } if ($echo) { echo implode(", ", $meta_list); } else { return implode(", ", $meta_list); } }
Future CellarParticipantHi, its me again
the avatar just doest show up in the posts grid
I already enabled the meta avatar in the theme optionFuture CellarParticipantin the attached code, it’s still loop=”size:All
what’s the correct code for lazyloadFuture CellarParticipantCan’t find loading option in this version of kleo
please let me know if anyone has a solution to thatFuture CellarParticipantthanks for the help
unfortunately, problem still there
I find that when visual composer’s default grid template were used, all problem solved. But i really love the kleo posts grid layout, i wonder how can i change the βload allβ option to ‘lazy load’ οΌ i suppose that worth a try
thanks again for the effort u put in.Future CellarParticipantI installed jetpack and All in one SEO yesterday
but problem still there even i disabled these two plugins~Future CellarParticipantWow, it worked.
Hmm, the strange thing is in both posts and posts grid, the ‘like’ function is still on, so I have no clue what ajax”Enable post likes” does, any difference between ‘on’ and ‘off’?and the attached .jpg showes before i turned it off,the admin-ajax.php took a lot of time pending. So i assume admin-ajax is the one in charge of ‘like’ function
thanks for ur time, i really appreciated it.
Attachments:
You must be logged in to view attached files.Future CellarParticipantthanks for answering my question so fast π
Last question, which file should i edit if i want to make the avatar size, after 2.4 releaseFuture CellarParticipantβββββββββββββββ
[ featured—–]
[ image——–]
[ ————-]
================
[avatar][except]
[—– ][ —–]
βββββββββββββββFuture CellarParticipantthanks a lot! hmm, it’s working now, but only when i use default setting for permalinks
whenever i use other settings, it went to 404 againdoes this make any sense to u ?
-
AuthorPosts