Forum Replies Created
-
In reply to: BB Press Version 2.6.1
I can see
General (5, 17)
Ban Appeals (1, 0)
Ban Requests (3, 7)
Vouch Requests (24, 23)under Legion Tower Defence
what are you missing?
@ajtruckle (and others), so we need to work out if it is a database update issue or a display issue.
so those who can access phpmyadmin, next time you get this, can you check
1. that the date is correct on the actual post (it should be)
2. then for the forum that the posts belongs to, in postmeta the value of
_bbp_last_active_time, _bbp_last_active_id, _bbp_last_reply_id, _bbp_last_topic_idIn reply to: Count replies ant get last activity linkok, both topics and replies are custom post types, so the date of both is in the posts table, so no meta query needed.
so
‘post_type’ => array( ‘topic’, ‘reply ) if you want both
and look at
scroll down to date parameters to work out how to do the date
In reply to: BBpress 2.6.1 translations issuegreat – glad you are fixed
In reply to: BBpress 2.6.1 translations issueok, in 4.3.6 freshness tab, I have added translations
In reply to: Where are “revisions” stored in the php DB?they are in the posts table
In reply to: sub topics not showingdashboard>forums>edit forums>select forum>edit>click update
In reply to: BBpress 2.6.1 translations issueI’ve looked further at the code, and yes my translation won’t work for time.
I am just a bbpress user who helps out on this forum, so I cannot say when the devs will complete the translations.
In reply to: ArgumentCountError thrownit’s a computer – they do strange things 🙂
glad you are fixed
In reply to: BBpress 2.6.1 translations issueit needs to be
%s day and %s jour
etc.
The % is then replaced in live
In reply to: Forum participants can’t post images anymoreand can you look at this post to see if you also get this
In reply to: Users can’t upload mediacan you upgrade to 2.6.1 and retest please
and is that repeatable ?
that’s some good info
so
post a topic/reply
the forum is correct
the category where the forum is a member of is NOT correct
The main forums list is NOT correctIs that what you are getting?
OK, I am not finding again that it is still not updating.
do you mean not or now?
yes some host providers eg Sitegorund provide caching
In reply to: Forum participants can’t post images anymoreI’ve just trued it in my test site, and it seems to work ok.
I presume you mean that on then topic or reply form, the user is clicking the IMG link and entering the details?
and is it just an image within a post, or is the whole post not showing?
In reply to: BBpress 2.6.1 translations issuethis is because 2.6 has changed some wording and context, and the new translations have not been made yet
to fix the above either use this
add_filter( 'gettext', 'rew_bbpress_translate', 20 , 3 ); add_filter( 'ngettext', 'rew_bbpress_translate' , 20 , 3 ); function rew_bbpress_translate( $translated, $text, $domain ) { if ($domain == 'bbpress') { $words = array( '%s day' => '%s jour', '%s days' => '%s jours', 'Last Post' => 'Dernier message', ); $translated = str_replace( array_keys($words), $words, $translated ); } return $translated; }
Put this in your child theme’s function file – or use
or use the translations tab in my style pack plugin
how are you setting up the ‘detector’ role ?
In reply to: sub topics not showing2.6.1 should fix this, if not then go into the forum and just click save, that seems to have fixed some others with this issue
In reply to: Private forumsSuggest you test it
In reply to: Count replies ant get last activity linkok, that may well be beyond free help, but what is doing that print out – nothing in your code send any of that to screen
In reply to: ArgumentCountError thrownhmm – that is interesting – this seems to refer to a plugin
which has not been supported for a number of years.
It is likely that 2.6.1 has revised a function which threaded replies uses, and therefor is no longer working.
In reply to: Any way to remove moderation ?actually 30 should work, not 40
In reply to: Any way to remove moderation ?try either – the priority just determines when the function runs – I was suggesting 40 to get it to run after other filters, but 30 may well work – try it