Forum Replies Created
-
In reply to: Help with reply topics header
no problem – glad you are fixed !
In reply to: Help with reply topics headertry this
#bbpress-forums li.bbp-header .bbp-reply-author { display : none ; }In reply to: Help with reply topics headerok change
<div class="bbp-reply-content"><?php bbp_show_lead_topic() ? esc_html_e( 'Replies', 'bbpress' ) : esc_html_e( 'Posts', 'bbpress' ); ?></div><!-- .bbp-reply-content -->to
<div class="bbp-reply-content"><?php bbp_show_lead_topic() ? esc_html_e( 'Replies', 'bbpress' ) : _e( ‘<div align=”center” style =”color:#ff0000″>Please check out all the replies below,<br> if you find a post helpful please vote using the arrows</div>’, ‘bbpress’ ); ?></div><!-- .bbp-reply-content -->You should really put this file into a child theme if you have one
so you would do the following
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
then upload the new file to this directory so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-replies.php
bbPress will now use this template instead of the originalIn reply to: 2.6.0 doesn’t underline links@stevehammatt presume this is fixed in 2.6.1
thanks for letting us know – that is useful feedback
@johnjamesjacoby – I have now seen two cases where clicking save has fixed an issueThis one was by going into dashboard>forums> and just clicking save
In another https://bbpress.org/forums/topic/bbpress-2-6-0-update-breaks-forums-index-only-one-level-displayed/ going into the forum, changing the order to 0 and clicking save fixed – I suspect it was just clicking save that fixed it
In reply to: Help with reply topics headerok, the message in red show what I think is fine on my browser – can you say if you still have an issue with that part.
On the mobile, you could have
@media only screen and (max-width: 600px) { #bbpress-forums .bbp-reply-author { display : none ; } }which would take the author part out for mobiles
strange, just tried setting various orders in my test site, and it seems to work fine – so I canlt replicate your issue.
But as long as you are happy that you are fixed, then I’ll not dig further
interesting – so showroom is right, but lobby should also show sub forums.
That means there must be a difference between how these are set.
so can you check each forum
so start with Showroom – is it a forum or category? then each of the sub forums – what is set as their parent, and what is their visibility?
then do the same for Lobby and see if you can spot any differences
ok, so in the live site on one or more of the forums you are expecting to see what the yellow bit in then screen shot below?
http://www.rewweb.co.uk/wp-content/uploads/2019/11/Capture-1.jpg
sorry, but without extensive knowledge of how you are set up, it is difficult to comment further
In reply to: Disabling the option number of votes in the forumMost people do not want to use it, why impose it.
not sure on what basis you form that opinion, and you can always amend the templates, which is what they are there for
In reply to: Login page table error after plugin updateI’ve released 4.3.3 which amends the options for 2.6 users.
In reply to: 2.6 doesn’t recognise existing WP forum rolesgreat – glad you are fixed !!
In reply to: 2.6 doesn’t recognise existing WP forum rolesyes putting it after that should be fine.
Just keep a version of the file before the change just in case it errors then you can quickly revert back and report back here !!
In reply to: Login page table error after plugin updateok, I think I’ve got it – yes it is my style pack plugin that adds the table – some code I wrote quite a while ago. It works fine on 2.5.14 as that does the display differently.
I’ll need to re-write a part for 2.6.
In the meantime if you uncheck the registration and logins for
dashboard>settings>bbp style pack>Topic/Rely Styling
and
dashboard>settings>bbp style pack>Topic/Reply Displaythen apart from registration, these should now be ok.
I’ll come back when I have fixed that part
In reply to: Target per-forum moderatorsgreat – glad you are fixed !!
In reply to: Login page table error after plugin updateahh, so you have items 21 and 22 activated – yes ?
In reply to: Target per-forum moderatorsthere is a function
bbp_is_user_forum_moderatorso a stament like
if (bbp_is_user_forum_moderator()) { //do something }or if you need to pass user_id or forum_id
if (bbp_is_user_forum_moderator( $user_id, $forum_id)) { //do something }In reply to: Can not type into Reply box for some usersok, thanks for letting us know. It may have been a browser not refreshing correctly, but then again it is a computer, so could have been anything 🙂
@cassel – on your site I can see forums, topic lists and topics – you night need to refresh your browser.
If you still think there is an issue, please come back
In reply to: 2.6 doesn’t recognise existing WP forum rolesyes, that looks like it, and yes it should not be in that part as it gets overwritten. Good that you had a copy !
so from
function add_new_roles( $bbp_roles )to the end and put this in the functions file of your child theme
In reply to: Can not type into Reply box for some userssuggest you create a test ‘user’ and see if you can reply.
If not, then let us know exactly what ‘not able to post replies to posts in the forums’ means
eg can you create topics? – can you access the reply form? – can you press submit ? do you get an error? etc.
ok, is your forums page using the shortcode ?
In reply to: Login page table error after plugin updatethe bit you have altered is in my style pack plugin :
dashboard>settings>bbp style pack>topic/reply display>item 20.
However as bbpress now wraps this part in a
<ul>you can’t use a<table>in that part.However the new template gives you the login part below it which the old did not, so it gets you most of the way there.
Alternatively you could amend the template which is
templates/default/bbpress/form-topic.php if you know how to FTP files