Search Results for '+.+default+.+'
-
Search Results
-
I understand that I have to create a sub-directory in plugins/bbpress/my-templates/, which will contain my template files. Also I understand that I only have to create specific custom pages where I need them, so on the very first page of my forums (i.e. http://www.followtheboat.com/forums/) I need to create a page called front-page.php. For example, I don’t want my page title to be ‘Forums’, I want it to be ‘Followtheboat Forums’.
Presumably before uploading any themes the forum is using a default theme and must be calling up a default page called front-page.php. I want to use that default front-page.php file so I can use it as a base and tweak it, but where is it? I thought it should be in bbp-themes/bbp-twentyten but it isn’t there.
Finally, the instructions say ‘Activating a theme is even easier. Just select it from you bbPress install’s Presentation Admin Panel’. What? Where? Do you mean ‘http://www.myblog.com/wp-admin/options-general.php?page=bbpress’, because it is not there.
I run a fairly large site with a standard integrated bbPress forum, categorized by groups. I’ve been able to successfully update to version 1.5. However my attempts at migrating to bbPress 2.0 have so far been unsuccessful.
All I’ve tried so far is the default process:
Tools -> Import -> bbPress Standalone
I’m given a path to bb-config.php, at the root of my WordPress install, which seems to be correct. Going by these default settings has worked just fine on a much smaller test site. On this big one however, no such luck.
We have ~20’000 threads and ~15’000 users. If you’ve attempted to migrate a fairly large website to bbPress 2.0 from the legacy BuddyPress forum, kindly share your findings.
My topics are showing up oldest first…I don’t believe this is the default setting, but I’m not sure where I can change this. Anyone know how this is controlled?
I have a bbpress (classic) install with WP deep integration, and figured I’d get a head start on formatting my test install for the eventual release of the plug in. So far I’ve got almost everything styled nicely just using CSS, but I’m stuck on removing a few things that seem to clutter up the presentation of the forum.
1. Does anyone know how to remove the “This forum contains X topics and X replies, and was last updated…” from the main Forum and topic pages?
2. How about how to remove the modification history section and the post # display from posts.
3. Remove the extraneous breadcrumbing, right now it’s Site>Forums>Forum as the default ‘Forum” page. Seems like one level too deep for default bbpress forum starting point. SInce my site will only have 1 forum, is there a way to clean up the sloppiness or at least hide the useless ‘Forums’ link in the breadcrumb?
hi
i have searched the forums for a solution, but havent found anything relevant.
anyway, i am developing a custom theme for WordPress + buddyPress. lets call it My Awesome Template.
all the theme’s files are in wp-content/themes/awesome.
there, ive got my own style.css and functions.css. in style.css i have defined Template: bp-default, and as i am creating a child theme for buddyPress with a few overrides.
now, i want to work the same way with bbPress. i cant copy over the contents of bbp-twentyten into My Awesome Template folder (wp-content/awesome/), because this overwrites my own functions.php and style.css.
i want to overwrite only certain files, so for example i want to change the main forums index and topics list.
in my perfect world i would do it like this:
add_theme_support (bbpress)
and then i would just create two files: bbpress-forums.php and bbpress-topics.php and then id put there my own html.
is this possible? if im not able to choose my own filenames, then please tell me which files to copy where EXACTLY.
thanks.
I have tried the following:
1. Deactivated all the plugins
2. Tried a default theme.
But unfortunately, when using the recount for “Count replies for each user” always fail.
I’m not sure what else I can try. Would turning debug on help?
Not sure where this should be posted, here or on buddypress.
I currently have buddypress 1.5-beta-3 and bbpress 2.0-rc-5 running on my test site and I would like to hide the topics and reply count via the functions.php.
I am also using a custom child theme so that any modifications will not be overridden after updating. The only thing I have in my custom child theme is a blank style.css. I tried entering some styling into the blank stylesheet but nothing is displayed, it’s as though it is ignoring my stylesheet and retaining the default especially the next gallery css but this is another issue. Whenever I add a functions.php with something in this, the site falls over.
Anyway, what coding would I add into the custom child theme functions file? I know that if I copy all of the bbp_list_forums(), I will get an error to say it cannot be redeclare. By the way, the custom child theme is located in my themes folder.
Any help would be most appreciated.
I’m running bbpress 2.0 rc-5 with the default styling included with bbPress. I have customized my theme functions to include forums, topics and replies in search results.
i.e.,
// Add Forums, Topics and Replies to search results
function my_add_bbp_to_search( $post_type ) {
$post_type['exclude_from_search'] = false;
return $post_type;
}
add_filter( 'bbp_register_forum_post_type', 'my_add_bbp_to_search' );
add_filter( 'bbp_register_topic_post_type', 'my_add_bbp_to_search' );
add_filter( 'bbp_register_reply_post_type', 'my_add_bbp_to_search' );When the first search result is a page or post, the results are formatted according to search.php (as expected):
http://www.climberswa.asn.au/?s=frankland
When the first search result is a forum, topic or reply, the results don’t use search.php and seem to render using bbpress template parts:
http://www.climberswa.asn.au/?s=albany
This looks particularly bad when the first result is a topic as it will display the threads:
http://www.climberswa.asn.au/?s=cawa
Is this a defect in bbpress intercepting the search or a limitation of using the default styling?