I would like this order
Avatar Image
Username
User Role
Mention
Freshness
Hello,
pls see here a screenshot.
https://drive.google.com/open?id=0Bwsq40iT9zm9RTU2ODAtYjhFekk
2. How to Move the Freshness Time under @Mentions
4. How to Rename the #ID to Reply
Can someone help me with this?
Thx
Sally
Can someone help me with this?
Thx
Sally
to hide the date at the top, put this in your css
.bbp-reply-post-date {
display: none;
}
Then to add to the list add this to your functions file
add_action ('bbp_theme_after_reply_author_details', 'rew_display_date');
add_action ('bbp_theme_after_topic_author_details', 'rew_display_date');
function rew_display_date () {
?>
<span class="bbp-reply-post-date"><?php bbp_reply_post_date(); ?></span>
<?php
}
Hello,
the first code to hide the bbp-topic-post-date works. Adding the second code to the functions.php and checking the topics / reply the bbp-topic-post-date is nowhere visible..
What else can i try?
I’d need a link to your site
ah, found out what I have done wrong
can you change the code to
add_action ('bbp_theme_after_reply_author_details', 'rew_display_date');
add_action ('bbp_theme_after_topic_author_details', 'rew_display_date');
function rew_display_date () {
?>
<span class="bss-reply-post-date"><?php bbp_reply_post_date(); ?></span>
<?php
}
Hi Robin,
thanks, the last Code works
Regards
Sally