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?
that’s strange I thought by default, people have to register. What version are you using and you have any integration?
By default, non-logged in members cannot post. How is it that they can post in your forum? Are you using a plugin?
And by ‘make a reply to a post’, what do you mean? That the reply is not threaded or indented, or maybe you mean they’re not able to quote the message they’re replying to?
Please clarify. Thanks.
“Currently, plug-ins for both WordPress and bbPress, WordPress’ forum software solution are available.”
*sigh*
Apparently the bbPress plugin is still in alpha, as of about 10 days ago:
http://forum.gigya.com/forum/Default.aspx?g=posts&m=1619
The WordPress one is released though, so maybe it’d be fine under a WP/bbP integration setup
I have developed an ajaxed chat plugin, which uses phpfreechat.net script. That script has multiple themes, multiple languages, and multiple features.
There is also a settings page in which you can save various parameters/config for the script.
There can be 2 types of storages – mysql & file, default is mysql, it automatically uses the bbPress db you are using and makes tableprefixajaxed_chat
table.
You can see the various commands that can be used in chat, and the FAQ at phpfreechat.net
There are 2 ways you can call the chat:
http://yoursite.com/?chat
or by placing this code anywhere in your template:
<?php if (function_exists('ajaxed_chat_load')) ajaxed_chat_load(); ?>
Live Demo (At my test forums): http://forum.gaut.am/ (inside template) or http://forum.gaut.am/?chat (full screen)
Download Link – http://gaut.am/uploads/ajaxed-chat-1.0-beta.zip
Note – It is beta version, not a release (for now)
I still need to work on the admin settings page, but still its not too bad for now.
Comments, feedback & suggestions are welcomed!
By default the text in the text box when you are writing a message is the Courier New. How can I change it?
I had a problem with a css file that wouldn’t import a php file. (@import url(css/loader.php)
look at the main css file and see if there is any importing involved.