Forum Replies Created
-
I still haven’t been able to solve this issue. Any help please?!
In reply to: Remove bbPress forum profile URL linkI inputed Robin W’s code into functions.php in my child theme folder, and it didnt work. Should it go into a different file?
thanksIn reply to: Edit New Topic pageThanks Robin W, that’s the file and solution I needed.
Perfect.In reply to: Create new column for topic postsAh yes! I changed the CSS in bbpress.css originally.
Silly me!
Thanks so muck Robkk, I really appreciate it. It looks perfect now 🙂In reply to: Create new column for topic postsThanks so much again for your help. All you’ve suggested has helped neaten things up. I’ve been trying now to adjust the CSS to get the headings and numbers under them to line up, but as you can see, I still can’t figure out how to do that (http://psychiatryadvice.com).
I didn’t want to have to ask for more help, but I’m going to have to! Do you know how to line it all up properly? It’d be nice to widen that grey/yellow/white box with the topics in if that is possible too.
In reply to: Create new column for topic postsThanks Robkk, but I’m still struggling a little. Are you able to offer any further guidance to help me neaten things up.
I’ve changed my CSS to:li.bbp-forum-info,
li.bbp-topic-title {
float: left;
text-align: left;
width: 40%;
}
li.bbp-forum-topic-count,
li.bbp-topic-voice-count,
li.bbp-topic-views-count,
li.bbp-topic-reply-count {
float: left;
text-align: center;
width: 8%;
}li.bbp-topic-freshness {
text-align: center;
float: left;
width: 18%;
}And I’ve created a loop-topics.php in my child theme which I’ve edited as:
<li class=”bbp-header”>
<ul class=”forum-titles”>
<li class=”bbp-topic-title”><?php _e( ‘Topic’, ‘bbpress’ ); ?>
<li class=”bbp-topic-reply-count”><?php bbp_show_lead_topic() ? _e( ‘Replies’, ‘bbpress’ ) : _e( ‘Posts’, ‘bbpress’ ); ?>
<li class=”bbp-topic-views-count”><?php _e( ‘Views’, ‘bbpress’ ); ?>
<?php if(function_exists(‘the_views’)) { the_views(); } ?>
<li class=”bbp-topic-voice-count”><?php _e( ‘Voices’, ‘bbpress’ ); ?><li class=”bbp-topic-freshness”><?php _e( ‘Freshness’, ‘bbpress’ ); ?>
I’ve also edited loop-single-topic.php in my child theme (to get views on topics, rather than the forum as a whole), which I’ve edited as (from about line 86):
<li class=”bbp-topic-reply-count”><?php bbp_show_lead_topic() ? bbp_topic_reply_count() : bbp_topic_post_count(); ?>
<li class=”bbp-topic-views-count”>
<?php _e( ‘Views’, ‘bbpress’ ); ?>
<?php if(function_exists(‘the_views’)) { the_views(); } ?><li class=”bbp-topic-voice-count”><?php bbp_topic_voice_count(); ?>