Forum Replies Created
-
In reply to: Assistance with Various PHP Errors please
ok, thanks.
the line of code referred to is looking for a host url on logout from bbpress.
‘$redirect_to = bbp_get_url_scheme() . $_SERVER[‘HTTP_HOST’] . $_SERVER[‘REQUEST_URI’];’
$_SERVER is a php thing and the manual says ‘$_SERVER an array containing information such as headers, paths, and script locations. The entries in this array are created by the web server, therefore there is no guarantee that every web server will provide any of these; servers may omit some, or provide others not listed here. However, most of these variables are accounted for in the » CGI/1.1 specification, and are likely to be defined.’
Are you maybe running on a local host?
In reply to: Assistance with Various PHP Errors pleaseso when does this error occur?
In reply to: Forum layout does not change no matter what I do…on the translations, these are part of buddypress not bbpress, so you would need to ask the question on their support forum
https://buddypress.org/support/
on the grey box, what exactly do you want to change?
In reply to: Forum layout does not change no matter what I do…link please to a live example with clear explanation of an element that is not right and why
In reply to: Abandoned?suspect this is an AI generated spam, but in case not,
bbpress latest version is 2.6.14 and was updated 4 months ago.
In reply to: Group Forum with bbp private groupsIn reply to: Group Forum with bbp private groupsok, so given that it is a buddypress function that creates a group forum, can you ask that question on the buddypress support forum, as they are more likely to know a hook that you could use
In reply to: Group Forum with bbp private groupsI’m pretty sure that the buddypress function hooks to the new_forum_handler in bbpress, so this should work
add_action( 'bbp_new_forum_post_extras', 'rew_add_pg', 10 , 1) ; function rew_add_pg ($forum_id ) { add_post_meta( $forum_id, '_private_group', 'group1', false ); }Let me know of not.
In reply to: Unapproved topics appear in activityok, so what setting are you using for ‘Auto Approval disabled’ ?
In reply to: Plugin similaire à “Post Comments as bbPress Topics”ok, I know of nothing similar
In reply to: Plugin similaire à “Post Comments as bbPress Topics”why?
In reply to: Old replies hiddenno problem, glad to have helped in a small way – let me know that it has been fixed when you are finished 🙂
In reply to: Old replies hiddenotherwise if it is just a small number of entries, you could fix these as you have just done
In reply to: Old replies hiddenok, yes that is interesting.
so now I am suspecting that in the database there is something wrong for those entries, and that changing the date is in effect changing some data in the topic entry (it holds things like no. replies, data of reply etc.) that when you do any update gets fixed.
you could try
dashboard>tools>forums>repair forums>
and try running these one at a time, and after each see if that has fixed.
Recalculate parent topic for each reply
Recalculate parent forum for each topic and reply
Recalculate private and hidden forums
Recalculate last activity in each topic and forum
Recount replies in each topicIn reply to: Old replies hiddenok, so that’s good, I wanted to check that first.
So now as a test for the August 28, 2017 reply
in dashboard>replies>edit reply try changing the publish date on the August 28, 2017 one to October 20, 2025
and see if it now appears?
In reply to: Old replies hiddenok, so lets test date theory.
so in one of the forums that has the issue
1. find a post with multiple replies that all show – a topic without the problem
then in dashboard>replies>edit replies
find one of the replies and look at all the settings for that2. Then find a post with multiple replies where replies do not show, and again
in dashboard>replies>edit replies
find one of the replies and look at all the settings for thatand see if there are any differences.
then come back
In reply to: Old replies hiddenthanks, so lets try some other stuff to see if we can eliminate.
So just another question, do you have a topic where there are replies both before 2016 and after – ie a post that is showing SOME but not all of the replies? Or is it a case that a topic either shows all or none of the replies?
In reply to: Old replies hiddenok, thanks for that – fixing this is all about finding a difference, so excuse if these questions sound like they are going nowhere !
the settings for the other forums that work is also
Type: forum
Status: open
Visibility: privatebut with a parent set
yes ?
In reply to: Old replies hiddenthanks for that.
so is this all posts from 2016, just some posts, a few posts?
and from one particular forum, or several?In reply to: Old replies hiddenAt the moment I would not suspect a date as the cause, though I never dismiss any possibilities.
1. I presume you can log in as a normal user and see the issue for yourself?
2. When did this issue start – you say ‘no longer’ but for how long – ie just started, been weeks, been monthsIf you are using a block theme, then you will need to add theme support for bbpress.
so either
Install
once activated go to
dashboard>settings>bbp style pack>theme support
This plugin has lots of styling and functionality additions to bbpress
and/or use
does this article (although reared to xenForo) help to identify the issue?
are you using any SEO plugins?
In reply to: how to make forum description text clickable?if (!is_admin() ) { add_filter( 'bbp_get_forum_content', 'rewst', 10 , 2 ) ; } function rewst ($content, $forum_id ){ if (!empty ($content)) $content= '<a class="bbp-forum-rew" href="'.bbp_get_forum_permalink($forum_id).'">'.$content.'</a>' ; return $content ; }Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: how to make forum description text clickable?link to an example, so I can see what template or function please