Forum Replies Created
-
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
In reply to: Any way to remove moderation ?ok, so it is not that function.
you could try just adding this to your child theme functions file
remove_filter( 'bbp_new_reply_pre_content', 'bbp_filter_kses', 40 );let me know if that works
In reply to: Any way to remove moderation ?I cannot immediately see what is causing this, if you turn off moderation is the problem still there ?
ok, thanks for letting us know
In reply to: Any way to remove moderation ?so have you tried both, ie having it at top level and within the video ?
In reply to: Footer issuesit is theme related
the non forum pages have
.social-navigation a { border-radius: 40px; display: inline-block; height: 40px; margin: 0 1em 0.5em 0; text-align: center; width: 40px; }the forum pages have an additional css class of .no-svg
.no-svg .social-navigation a { height: auto; width: auto; }this needs removing, but I cannot say what you need to do to remove it – maybe a page thing
In reply to: Any way to remove moderation ?ok, so path wise it counts.
on the <source> issue, less certain how to resolve. the code above looks like it should work, but you might need to add source as a top level as well
if you need help with that, give me the entire function above
In reply to: Count replies ant get last activity linklast active time on a topic would pick up if there had been replies.
I loaded your code onto my site, and it worked fine.
I’m not sure what other help you want
1. topic will do what you want, it is saying that there are new topics within the period
2. I don’t understand this question, works fine on my test site]
3. yes it is counting any new topics or topics where there have been new replies – is that nit what you want?In reply to: Any way to remove moderation ?yes, the function strips HTML tags nearer the end – can you just confirm what steps you are taking to add the video – is this in the default text area?
as a by the by, the function if looking for http|ftp|https so if that is in your source path, it will count, if not it should not
In reply to: Any way to remove moderation ?thanks
In reply to: Download Older Versions of bbPressgo to
then on right hand side select ‘advanced view’
and at the bottom you’ll find previous versions – select 2.5.14
In reply to: Any way to remove moderation ?If you want to remove moderation, I think this will do it
add_filter( 'bbp_bypass_check_for_moderation', '__return_true' );Put this in your child theme’s function file – or use
If someone could test and report back, that would be useful. I have no time availability to do this 🙂
In reply to: Any way to remove moderation ?I’m just looking at that code are to try and understand it.
Yes, admins and moderators skip the moderation rules.
Thanks for the useful testing of the first part – ie the links.
Images and videos are just links as far as I can see, so should obey the same rules as above and be included in the count.
so 1 links, I video and 1 image = 3 links.
can you retest based on that and see if just 1 image is going into pending, or if it is the combination.
In reply to: In mobile view the new topic text area is too narrowno problem
In reply to: In mobile view the new topic text area is too narrowthis is related to your theme
you could put this in your theme custom css area
@media only screen and (max-width: 600px) { .bbp-topic-content p{ margin : 0 0 0 0 ; line-height : 1.2 ; } }In reply to: Can’t find settingstry
dashboard>settings>permalinks and just click save
that resets the permalinks and may bring forum settings back
If not, are Forums, Topics and Replies showing in the dashboard?