1BJK903
Forum Replies Created
-
Ah a premium plugin. Thanks Jeff, that would be nice too.
Hmm, the first one works for me, but your second link stays a blank plain text. Damn it, I have to check all of the plugins then. Thanks for the response.
No, it’s not font-types like B or I, but other shortcodes.
Forum: Plugins
In reply to: [Advanced Post List] Pagination+1 on this one.. It would be very nice to get pagination. I need it now actually, I hope you’ll make it soon.
Yes, I managed to pull it off with javascript, but I actually want the default tags that are in WordPress like on this commentarea… How can I do that? Could you help me with that please?
Forum: Fixing WordPress
In reply to: Display all comments or recent comments per user on author pageSolved with:
<?php $args = array( 'user_id' => $user->ID, 'number' => 10, // how many comments to retrieve 'status' => 'approve' ); $comments = get_comments( $args ); if ( $comments ) { $output.= "<ul>\n"; foreach ( $comments as $c ) { $output.= '<li>'; $output.= '<a href="'.get_comment_link( $c->comment_ID ).'">'; $output.= get_the_title($c->comment_post_ID); $output.= '</a>, Posted on: '. mysql2date('m/d/Y', $c->comment_date, $translate); $output.= "</li>\n"; } $output.= '</ul>'; echo $output; } else { echo "No comments made";} ?>
PS: Oomkaap’s code shows only the one of the admin… The rest of the users’ favorite posts are invisible.
Thanks mate, but this one doesn’t show the favorite posts of the admin… Why is that?
Thank you Jeff Starr, I appreciate your plugin and your work. On the other hand: I need it now actually. Can you tell me how I could do this? That would be very nice…
Forum: Plugins
In reply to: [Basic Comment Quicktags] Putting quicktags beneath textareaYes, but than I get errors… Or I am forking the wrong code. Where do I have to look, which line?
Forum: Plugins
In reply to: [WP-SNAP EXT!] request: make pagination possible when listing the postsThat would be very nice indeed. +1
It does not work. It shows only a “no favorites yet”, but you can’t see favorites if a user does..
Could you help me with it please?
What do you mean that it does not accepts the PHP? Are you trying to edit it on the backend or are you using a widget or something?
Forum: Fixing WordPress
In reply to: How to highlight own comment per user if logged in?Could you look at this too? https://www.ads-software.com/support/topic/how-to-display-amount-of-comments-per-day?replies=1
Forum: Fixing WordPress
In reply to: How to highlight own comment per user if logged in?