Search Results for 'bbpress'
-
AuthorSearch Results
-
December 3, 2010 at 6:48 am #97831
ITchimes
MemberJust Check It out and follow these steps
http://bbshowcase.org/forums/topic/bbpress-translation-internationalization-into-local-languages
December 2, 2010 at 4:13 pm #92985In reply to: WordPress Hooks In BBPress
thenbrent
MemberHi zaerl,
Thanks for your reply. The template I’m using, as created by Andrew, does call wp_head(), via get_header(). It also calls wp_footer() via get_footer().
I could also use a substitute hook, like bb_foot, which I saw in the default templates, but this doesn’t actually seem to be called anywhere.
Any ideas?
December 2, 2010 at 3:49 pm #92984In reply to: WordPress Hooks In BBPress
zaerl
ParticipantCause wp_head isn’t automatically called by WordPress. It’s a template tag function that themes’ authors usually put between head elements.
December 2, 2010 at 3:29 pm #92983In reply to: WordPress Hooks In BBPress
thenbrent
MemberHey Andrew,
I’m wondering the same thing. I’m using your EcoPro theme and trying to get a plugin to work which calls wp_footer. This hook isn’t working on bbPress pages though.
Did you ever figure this out?
Brent
December 2, 2010 at 11:32 am #94692In reply to: bbPress 2.0 – Updates
LwEEs
Member@Rich Pedley
Thanks man! I will try to make it work today in the afternoon. Thanks for the functions.php tip, good one. Have a good day everyone.
December 2, 2010 at 8:19 am #94691In reply to: bbPress 2.0 – Updates
Rich Pedley
MemberLwEEs – child theme…
and you could always copy the content of functions.php to your existing one.
December 2, 2010 at 8:15 am #103009In reply to: How do you intergrate forums?
zaerl
ParticipantThere may be some more magic involved in order for the session to persist across both installs.
Indeed my friend, mostly because bbPress doesn’t use sessions (it uses encrypted cookies.)
December 2, 2010 at 8:15 am #97909In reply to: How do you intergrate forums?
zaerl
ParticipantThere may be some more magic involved in order for the session to persist across both installs.
Indeed my friend, mostly because bbPress doesn’t use sessions (it uses encrypted cookies.)
December 2, 2010 at 4:52 am #102375In reply to: Forum attacked by spammers
batrachoid
MemberOver the last few weeks, I’ve experienced the same problem with spammers on one of the forums I’ve set up. Akismet hasn’t worked, no-spam-user hasn’t worked, recaptcha hasn’t worked. Anyone have any success blocking this new generation of spambots? (I love bbpress but seeing the same spam here is disheartening.)
December 2, 2010 at 4:52 am #97275In reply to: Forum attacked by spammers
batrachoid
MemberOver the last few weeks, I’ve experienced the same problem with spammers on one of the forums I’ve set up. Akismet hasn’t worked, no-spam-user hasn’t worked, recaptcha hasn’t worked. Anyone have any success blocking this new generation of spambots? (I love bbpress but seeing the same spam here is disheartening.)
December 2, 2010 at 12:02 am #94689In reply to: bbPress 2.0 – Updates
LwEEs
MemberDude, you screw me over with the new changes, can we have functions.php be bbp_functions.php, and author.php be bbp_author.php. Here is why, I’m hacking my way into the plugin by placing the pages in my theme then adjusting the CSS, since the new pages would overwrite my theme pages, it doest work. I know this is not your anyones priority, I will totally understand if this request doesn’t happen.
Great job guys, happy holidays.
December 1, 2010 at 9:17 pm #94688In reply to: bbPress 2.0 – Updates
Rich Pedley
MemberIt’s fairly easy to do

check the style.css in the included twentyten child theme and you’ll see this:
/**
* Theme Name: bbPress - Twenty Ten
* Theme URI: http://bbpress.org
* Description: Adds bbPress forums to Twenty Ten theme
* Author: The bbPress Community
* Version: 0.1
* Template: twentyten
* Tags: bbpress, black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style
*/The template denotes another available theme that you are making this the child of. If you include the main style sheet, you don’t need to re-reference everything. eg.
@import url("../twentyten/style.css");So create a new theme directory by including that, and copy all the other files(ie not style.css) from plugins/bbpress/bbp-themes/bbp-twentyten (not forgetting to rename the Theme name)
However you might want to copy in the default style, this start’s with:
/* bbPress Style
*/Then you need to check where the get_header(), get_sidebar() & get_footer() are in your parent theme.
If they are in this order:
get_header();
/* Content */
get_sidebar();
get_footer();you don’t have to do anything.
However if they are in a different order you may need to adjust, currently they reside in the following files:
page-bbp_form.php
author.php
taxonomy-bbp_topic.php
single-bbp_topic.php
single-bbp_reply.php
single-bbp_forum.php
page-bbp_topics.php
page-bbp_front.php
and I think that is all that’s needed! (untested though)
December 1, 2010 at 7:29 pm #94687In reply to: bbPress 2.0 – Updates
gswaim
ParticipantI have been waiting for a WP forum plug-in for so long, I don’t mind working with page templates to be one of the early adopters. If short code support comes later, then that would be icing on the cake.
I do hope, at some point, detailed information is available on how to build the bbPress pages for other themes. As long as this documentation is avaialble, I don’t think this should be a deal breaker for anybody.
Thanks!
December 1, 2010 at 7:19 pm #103006In reply to: How do you intergrate forums?
guly
Participantwhen you install bbpress, it will ask you for the database name, username, and password. If for example you had shared hosting and multiple domains hosted out of the same public_html directory, it would be easy just to specify the same database for several installs.
Not sure how bbpress would then handle the sessions in terms of logging in and out; there may be some more setting you would need to adjust.
December 1, 2010 at 7:19 pm #97906In reply to: How do you intergrate forums?
guly
Participantwhen you install bbpress, it will ask you for the database name, username, and password. If for example you had shared hosting and multiple domains hosted out of the same public_html directory, it would be easy just to specify the same database for several installs.
Not sure how bbpress would then handle the sessions in terms of logging in and out; there may be some more setting you would need to adjust.
December 1, 2010 at 2:22 pm #103005In reply to: How do you intergrate forums?
Wiishy
MemberWhere? In the codes or when you install bbpress?
December 1, 2010 at 2:22 pm #97905In reply to: How do you intergrate forums?
Wiishy
MemberWhere? In the codes or when you install bbpress?
December 1, 2010 at 1:24 pm #36344Erlend
ParticipantI’ve cross-posted this on the BuddyPress forum. Moderators are free to close this thread so discussion happens in one place, but I figured there should be a notice on this domain as well.
December 1, 2010 at 12:53 pm #94686In reply to: bbPress 2.0 – Updates
Andre
ParticipantAny thought of combining the bbpress twenty ten theme you are developing with twenty ten for buddypress that Andrea is working on? That would be ideal for me, and I assume several others, because we are planning on using both plugins.
December 1, 2010 at 12:05 pm #94685In reply to: bbPress 2.0 – Updates
Ryan Gannon
MemberAnyone else having a problem with New Replies not bumping their Topic to the top of the list in a Forum?
December 1, 2010 at 11:36 am #65981In reply to: Why is integration so troublesome?
abdessamad idrissi
ParticipantI run in the same proble as I installed bbpress prior to wordpress, so i created a plugin to handel the transaction:
https://bbpress.org/plugins/topic/bb-to-wp-users-copier/
hope it helps.
December 1, 2010 at 9:18 am #102979In reply to: Warning/Deprecated Error
December 1, 2010 at 9:18 am #97879In reply to: Warning/Deprecated Error
December 1, 2010 at 9:17 am #103003In reply to: How do you intergrate forums?
zaerl
ParticipantI’m a nub, I want 5 different bbpress install but user will only need to sign-in once. My site links to different bbpress forums, I don’t want the user to keep having to sign-up for each forums.
Use one database.
Also, what is a RSS feed?
December 1, 2010 at 9:17 am #97903In reply to: How do you intergrate forums?
zaerl
ParticipantI’m a nub, I want 5 different bbpress install but user will only need to sign-in once. My site links to different bbpress forums, I don’t want the user to keep having to sign-up for each forums.
Use one database.
Also, what is a RSS feed?
-
AuthorSearch Results