Forum Replies Created
-
ummm…
ok, ether you are using bbpress version 1, which went out of production many years ago or might be a related plugin or part of a wrapper like buddyboss????
bbpress version 2.6.x does not have any files of those names
sorry – whereabouts is the bb-settings.php file?
In reply to: Get Number of Favorites & Subscription to a topic🙂 great, glad to have helped
In reply to: Get Number of Favorites & Subscription to a topicI’ve just taken a look – the whole way subscriptions works was changed in 2.6
this code works on my test site
add_action('bbp_template_before_single_topic', 'show_bbp_sub'); function show_bbp_sub() { $subscriptions = bbp_get_subscribers(bbp_get_topic_id()) ; $count = count($subscriptions) ; echo 'number of users subscribed: '.$count; }
In reply to: Get Number of Favorites & Subscription to a topiccan you post the complete code
I would suggest $output, but you may need to play with the variables to see what each does
In reply to: using the bb forums list widgetjust taken a quick look.
yes it looks like it will show the sub forums of a forum ID you enter, but not the parent forums as well.
I should say I’m not a bbpress author, and after a check of the code it is not an easy change to fix
In reply to: Remove noreply email from notification emailsthe code is valid – I suspect you have a copy/paste issue – sometimes a ‘ becomes corrupted,
Can you post exactly what you have in your file
In reply to: Search Results Not Workingcaused by a post that was password protected – fixed
In reply to: Search results are password protectedgreat – glad you are fixed !!
In reply to: Search results are password protectedhmm…
that is coming as a result of a wordpress page protection issue, so something in either page or posts is overriding… are any of your pages password protected?
In reply to: Search Results Not Workingso your site shows ‘This content is password protected. To view it please enter your password below’
yes ?
In reply to: bbpress and cache
@techinbermudas it is set to false by default, so suspect that one may be a red herring 🙂In reply to: Tag cloud on search result pagegreat to have a first poster, and there aren’t any no-brainers – we all start with no knowledge 🙂 🙂
It can take a few questions to get to a common understanding of what you are trying to do, so can I ask :
can you define what you mean by ‘search page’ ?
and can you give us links to the threads that gave you 1 & 2
sorry, from your original post, I had presumed you were familiar with filters.
so you would use an add_filter to change the output – do you need help with that?
In reply to: Unwanted Text in Forums Menu Linkfixed with some site specific css 🙂
In reply to: Unwanted Text in Forums Menu Linkcontact me via
In reply to: Unwanted Text in Forums Menu Linkit is probably easiest to hide using css, but I’d need a link to see what is being downloaded to your nrowser
apply_filters( 'bbp_get_the_content', $output, $args, $post_content );
in
bbpress 2.6.6\includes\common\template.php
line 1940
should do it
In reply to: Unwanted Text in Forums Menu Linkis your forum public enough to be able to see this page ?
In reply to: bbpress and cacheok, not a lot we can do about phones which insist on local caching of web pages 🙂
In reply to: Subscribing to scheduled topic?This plugin might well work, I haven’t tried it with scheduled posts, but suspect it would work.
You just need to be subscribed to the relevant forums
In reply to: bbpress and cacheIn reply to: bbpress and cacheok, so just properly read your first post – sorry lots to do in life, and don’t always get the issue first time 🙂
So if browser refresh is fixing it, then I’d suggest it’s not a server caching issue.
I’d suggest you try it from lots of devices, try a friends to see if it just your device or even just the browser you are using.
In reply to: bbpress and cacheI run several bbpress forums, and I don’t run caching on any of them.
Caching only ever overcomes slow servers, so firstly I expect to pay to get a good server. For business sites, that means getting the website owner to understand that FB isn’t free, google isn’t free, tiktok isn’t free, instagram isn’t free, and neither is their site. The customer pays for all these services, whether through advertising (eg businesses paying FB to place ads, who then use part of this money to have fast servers) or paying the website owner who pays a service provider. so pay for a good server, and you shouldn’t need caching.
On ‘club’ websites (and I am webmaster for several) then the club members need to understand that part of their membership fees pay for the website. If they perceive it as slow, then fine they need to pay more membership fees. However on 99% of these sites, my strategy has always been that good content is worth waiting for 🙂 If you are interested in the insect life of Guatemala, then you’ll quite happily wait a few seconds whilst a forum page renders to tell you about the Thoas Swallowtail butterfly.
Finally if you are running a site where you are touting for business, then I would say that you should treat a fast server as an investment.
WP total cache has had several good recommendations as one that works very well with bbpress.
Some webmasters also do not understand that many browsers (particularly ones for cell/mobile phones) cache locally, so a lack of update isn’t necessarily caused by server side issues.
Finally I would say that I am just a bbpress user here, not one of the bbpress authors, and my views are just mine 🙂