Forum Replies Created
-
In reply to: VERY HIGH log spam on every page load
ok, it is listed as a bug for bbpress to fix, I am just a volunteer here,
so if you want a fix in the meantime , install
once activated go to
dashboard>settings>bbp style pack>bbPress Bug Fixes and select the relevant one (at/near the bottom)
In reply to: Bug https urlsorry this is going nowhere
In reply to: Bug https urlbecause they entered the full link!!!
In reply to: Bug https urlI have no influence on what the core bbpress does.
21% of websites are http
In reply to: Bug https urlsince it is you asking π
add_filter( 'bbp_make_clickable', 'rewst', 10 , 2 ) ; function rewst ($ret, $text ){ $ret = str_replace ('http://' , 'https://' , $ret); return $ret ; }
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: Bug https urlyes for the reasons stated above, ie the link will resolve to https if the site has ssl.
Not every site is https
that’s how the bbpress authors have decided it should work
In reply to: Bug https urlyes as stated above, that is expected behavior for the reasons stated above
In reply to: hide avatar only in sticky topicπ
In reply to: Bug https urlif you go to a site that is https using an http format, then it automatically loads the https version.
if you go to a site that is http using an https format then it will come up with a not secure message
it therefore makes sense is that if no ‘httpx’ is given, you default to the http which ensures it loads in both cases.
if you only want to go to https sites, then enter the https in your link
In reply to: hide avatar only in sticky topicThis should do it
.bbp-topics .sticky a.bbp-author-link span.bbp-author-avatar { display: none !important; }
The key word in their answer is ‘should’ – by which they mean that they do not intend to do it, and they think that each forum provider (in this case bbpress) ‘should’ do this – but free software only contains what the software authors want it to. From a small amount of looking at that article, I’d suggest that it would be 1-3 weeks work to provide a solution as either a google structured expert would need to learn bbpress or a bbpress expert would need to learn google structured, and not something that I have any interest in doing – sorry π
what exactly did Yoast tell you?
and yes I got your email, I will take a look at it shortly π
In reply to: Forum index not ordering topics by FreshnessI’m just a volunteer here – I don’t think this will get added to the core.
so it will need code, and a plugin is just code with a wrapper.
If you are concerned about performance, you should be using a caching plugin
In reply to: Forum index not ordering topics by FreshnessIf I said something about google, it was not in this context or with this understanding on specific structured data – I have little knowledge of google
I suspect not, but you’d need to get an expert on google stuff to say definitively.
In reply to: VERY HIGH log spam on every page loadthanks, I can replicate – let me look at causes
In reply to: need help troubleshooting errorsreceived – thanks
no combo, so just hook separately π
so when a user posts a topic or they reply to a topic, you want to give them a reward immediately, but then not give them a further reward for the remainder of that day ie give them a reward for the first post they make each day.
and not use the previous reward system
Yes?
a few years ago it was stored against the user.
But it is now stored against the post, so is held in the postmeta table under
_bbp_engagement
so topic with ID 33990 will have an entry in the postmeta table under
_bbp_engagement with user id’s eg 1191 2563
etc
.bbp-topics-front ul.super-sticky, .bbp-topics ul.super-sticky, .bbp-topics ul.sticky, .bbp-forum-content ul.sticky { background-color: transparent !important; }
and for closed and sticky
.bbp-topics-front ul.super-sticky.status-closed, .bbp-topics ul.super-sticky.status-closed, .bbp-topics ul.sticky.status-closed, .bbp-forum-content ul.sticky.status-closed { background-color: red !important; }
In reply to: VERY HIGH log spam on every page loadwhat theme are you using?
In reply to: need help troubleshooting errorsas with your other question
Themes
As a test switch to a default theme such as twentytwenty, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back