This is actually built into the core, as I understand it… users can’t post more than every ___ seconds (I think the default is 30 seconds, but I’m not sure).
You can actually increase or decrease the “throttle time” with this plugin:
https://bbpress.org/forums/topic/change-throttle-also-is-it-based-on-username-or-ip
There are a few threads on throttling on the boards!
https://bbpress.org/forums/tags/throttle
Thanks yeah, I looked at those threads and didn’t find anything. Recounting did nothing… yes… I think I did knock out that “pick a forum” thing…. however, I guarantee that didn’t cause the problem because I’ve been posting test posts left and right since then. Only immediately after deleting my tests did the problem kick in… hadn’t make any changes to the theme. It’s definitely theme related, as the default theme works… very strange. I’ll put that dropdown thing back and see what happens.
How do I change the font size on the left of the Header area which says login, register, lost password etc.? Click on this link http://www.invictatrader.com/bbpress to see the header. I could not find it in the CSS unless I missed something or it was set to default in the core files. I am using the default stock theme “Kakumei”.
Thank you.
The words are stored in a file called logged-in.php in your theme.
In Kakumei (the default), it looks like this:
<p class="login">
<?php printf(__('Welcome, %1$s'), bb_get_profile_link(bb_get_current_user_info( 'name' )));?>
<?php bb_admin_link( 'before= | ' );?>
| <?php bb_logout_link(); ?>
</p>
Using __( translates into the appropriate language, and %1$s is a placeholder that gets replaced by the user’s name
Not sure why it’s saying Welcome twice though
I am currently attempting something similar. I have an integrated WP and bbPress but want to switch to WPMU. I’ve successfully imported the user tables through phpMyAdmin. There are three columns you need to add to the wp_users table:
display_name - varchar(250) - blank default value
spam - tinyint(2) - default value = 0
deleted - tinyint(2) - default value = 0
And in wp_usermeta table you need to do a SQL search and replace to change all values that have wp_ to wp_1_ (because the main blog in WPMU has got that table prefix)
UPDATE wp_posts SET meta_key = replace(meta_key, 'wp_','wp_1_');
I am trying to set up BBPress with WordPress so that they work together.
I have already got WordPress installed and set up. I tried to get a plugin installed to make it work with another BB, MyBB, but I had some problems installing this plug-in and so I did my best to remove it. I doubt this is what is causing my current problems, though.
I installed BBPress and when I did there were options to provide so that it would work with WordPress. But it did not seem to work.
I then installed the plug in. And I tried it briefly.
But then I noticed that I also needed to install the same plug in on the BBPress side. But now I notied that I could not go to the admin directory. When I typed the path to the admin area for BBPress it automatically went to the default BBPress root directory.
One possible issue might be the fact that I declared the keymaster on the BBPress to be the same username as the admin for WordPress. And the only password that will work when I log on to BBPress is the same password I used for WordPress. Will that be an issue.
The problem is that I ccnot go to the admin panel on the BBPress to do anything.
Please help.
Hi all!
I have a bbPress instalation at http://foro.inkframe.com
If you click the page number 2, everything fine, but, if you click in the number 1 or “Anterior”, the forum show page 2 again, like a F5. The only way for come back to the first page is clicking in the title.
I am not expert in bbPress theme development, but anyway I think that is not the problem, the only option I change, is the number of posts to 10, I am not sure, but, by default is 20. Thank you for your help
I’m in the middle of my first bbpress theme design and have a couple hopefully simple questions.
1) How can I change the size of the Avatar size?
2) I’m using the default themes basic layout structure and then theming my design around that. The somewhere and I can’t seem to find it there is a style that makes the odd number row a light gray and the even number rows white. I’m just looking for a way to make both of them a shade of gray but were they are still different colors. I would also like to do this to the topics and forums list on the front page of the bbpress install but haven’t figured out how make it happen dynamically and it sure looks like there is a way.
The default RSS feed for the home page includes recent posts in all forums and all topics. Do you want something different than that?
Will try. Not too good at it yet. Am learning from the great WP and bbPress community as I go. Thought there might be a default stock theme with a navigation bar on it. Or can you guide me as to what code needs to be added in the CSS and header.php files?
Thanks.
You changed the defaults, instead of just using different parameters when you call the function? Editing core files is really bad practice…
I’m trying to figure it out, is there an easy way to make sure that ALL my permalinks use the .html file extension instead of the default /profile/username and no extension at all?
Thanks!
In the first line of function bb_tag_heat_map:
$defaults = array( ‘smallest’ => 8, ‘largest’ => 22, ‘unit’ => ‘pt’, ‘limit’ => 40, ‘format’ => ‘flat’ );`
Line 3158 of functions.bb-template.php in my slightly outdated SVN of 1.0.2
Is it possible to add a navigation bar to the default Kakumei theme? If so, how?
Thanks.
Where is the default of “40” seen?
bbPress functions have a set of default values that are overwritten by the arguments passed when it’s called, so if a value isn’t specified for something, it stays with the default.
Thanks for the help.
Sorry about that.
Try this … http://shiftselling.com/forum/bb-templates/kakumei/header.txt
I’ve decided to modify the default template – kakumei – because it’s a cleaner design and I think it will be simpler to modify so it suits my needs.
Thanks,
Craig
Yes, I meant the default theme, kakumei.
So, it’s a problem with your theme.
I created an account and posted a test topic. I don’t even see the little X next to the tag to delete it. So, how are you going about deleting tags? Normally, you get a little X next to any tag you use so you can delete your own tags.
hey chris. I tried it on a different theme from the bbpress showcase and the tags delete function works properly. The URL is http://www.invictatrader.com/bbpress FYI. What is the stock theme? The default theme?
I have <?php bb_tag_heat_map( 9, 38, ‘pt’, 80 ); ?> in my tag.php file. Still I can only see 40 tags max in the heat map. Am I supposed to change “80” somewhere else too? Maybe in the function? Where do I find the function below? Got it from another topic.
Thanks.
function bb_tag_heat_map( $args = ” ) {
$defaults = array( ‘smallest’ => 8, ‘largest’ => 22, ‘unit’ => ‘pt’, ‘limit’ => 45, ‘format’ => ‘flat’ );
Try matching the code with the default theme and if you need to show more additional info then you can take a look at this too https://bbpress.org/forums/topic/unhide-profile-email-adresses
I’m not sure why this would happen, especially on the default theme.
I would recommend two things:
1) First, try disabling your plugins to see if that helps at all. If it does, enable one plugin at a time to see which plugin is causing the conflict.
2) If that doesn’t work, try this plugin?
https://bbpress.org/plugins/topic/front-page-topics/
I use it on all my sites, and it’s been great…
Good luck!
Hi,
I had set my post per page to 12 in the reading settings in my default Theme Kakumei Blue, and what happened was once a topic hit 13 pages, and it filled with 12 posts…your posts would not show up.
You could type it in and hit send, but nothing showed up. I would even get an email saying there was a new post, but when I clicked the link nothing showed up.
I ended up returning the setting to the default 30 posts per page and it is working again…is this the way that setting is supposed to work?
Thanks!
Scott
Those are warnings, not errors. They are only presented when E_STRICT is on, as the PHP engine can and will disregard them and continue to compile just fine. Without looking into the problem too deep (it’s getting on, and I’m about ready for bed), off the top of my head I would suggest that the deprecated warnings are due to the fact that PHPs handling of OOP has changed mildly between v4 and 5. Objects are now passed by reference by default, whereas in PHP4 they weren’t. Since bbPress is backwards compatible to work on PHP4 (it cuts down on the snarky accusations that one might receive for being version specific), it will return warnings in PHP5 that are just that. Warnings.
That’s the only real problem too. Turn off E_STRICT and you won’t get the remaining notices. The ‘headers already sent’ errors are due to the fact that you’re getting the deprecated warning (which outputs text to the screen, thus sending headers) before the script has completed its run.
So… simply put, it can be called stable, as it’s purely your setup that is causing the issue, not bbPress itself.
I would like to make email addresses viewable in member profiles to all of my forum members (but not unregistered viewers). By default, email addresses are only viewable to admins. How can I change this?