Search Results for '+.+default+.+'
-
AuthorSearch Results
-
January 23, 2007 at 12:37 am #53619
In reply to: Plugins / Templates For bbPress 0.8
Sam Bauers
ParticipantI’m working on a revised patch file for categories to accommodate the latest builds with the new templating file structure. Although it seems to be just me and spencerp who are using it. Of course, if you are customising your templates, then you will still have to edit your own based on the changes to the default theme.
January 20, 2007 at 9:14 pm #53465In reply to: How do I refer to current user’s name?
Michael Adams (mdawaffe)
Memberdavidbessler,
Your theme needs to have a call to
bb_head()
in its header.php.If you’re using a version of the default header, make sure
bb_head()
is actually being executed on every page load. There was a bug in early versions of bbPress that preventedbb_head()
from being called on anything but topic pages.As an aside, if you’re adding javascript, you should definitely use bb_enqueue_script().
bb_enqueue_script( 'give-it-some-name', '/soruce/file.js');
January 20, 2007 at 5:13 am #52899In reply to: MediaWiki, bbPress, and WordPress integration..
spencerp
Member@nateolsen, I just added ALL 3 databases into ONE database, like such:
database_name (holding all three)
bb_forums
bb_posts
bb_privatemessages
bb_tagged
bb_tags
bb_topicmeta
bb_topics
mw_archive
mw_categorylinks
mw_externallinks
mw_filearchive
mw_hitcounter
mw_image
mw_imagelinks
mw_interwiki
mw_ipblocks
mw_job
mw_langlinks
mw_logging
mw_math
mw_objectcache
mw_oldimage
mw_page
mw_pagelinks
mw_querycache
mw_querycachetwo
mw_querycache_info
mw_recentchanges
mw_redirect
mw_revision
mw_searchindex
mw_site_stats
mw_templatelinks
mw_text
mw_trackbacks
mw_transcache
mw_user
mw_user_groups
mw_user_newtalk
mw_watchlist
sk2_blacklist
wp_bad_behavior
wp_bas_log
wp_bas_os
wp_bas_pages
wp_bas_refer
wp_bas_searches
wp_bas_ua
wp_bas_visitors
wp_bbpress_post_options
wp_bbpress_post_posts
wp_categories
wp_comments
wp_link2cat
wp_linkcategories
wp_links
wp_options
wp_post2cat
wp_post2tag
wp_postmeta
wp_posts
wp_secureimage
wp_sk2_logs
wp_sk2_spams
wp_tags
wp_tag_synonyms
wp_usermeta
wp_users
Of course, used the normal database prefix for each one specifically.
It was mentioned though, that for the mw_ ones, you didn’t have to use the “mw_” prefix for when trying to mesh with bbpress/WP.. but, to play it safe, I used the default “mw_” prefix anyway.. Choice is your’s really..
@mozey, nice!! I’ll have to try that out sometime, well, when I get more time.
Thanks for tips and pointers!
spencerp
January 20, 2007 at 1:44 am #53470Trent Adams
MemberBy default, the bbpress-integration.php plugin that you are using in WordPress brings over the registrations from bbPress and gives them the default role that you have for WordPress. That would mean that if they are given author status then that would be the default role for new members in WordPress. Maybe check that out.
I tested this on my test forum and then changed the default role from subscriber to admin and sure enough the new user that I created came across in WP as an admin.
Trent
January 19, 2007 at 2:09 am #52340In reply to: A phpBB to bbPress database converter
ateale
Memberkickass! yes our server was set by default to php4. The server guys said:
We have checked our server logs. The reason for the issue is not related to the memory limits for your account.
The file_put_contents() function is only available in PHP 5.
By default our servers handle any requests to .php file through the PHP 4 interpreter. By default the PHP 5 interpreter processes only files with .php5 extension.
If you want to change this in a way that .php files are processed by the PHP 5 interpreter you should put the following line in your /www/blog/.htaccess file:
AddHandler application/x-httpd-php5 .php”
January 17, 2007 at 11:58 pm #51957In reply to: Latest bbPress Posts In WordPress
Atsutane
MemberCorrect me if i wrong .. by default when a user is regis. WP will set the “display name” equal to “username”. I try the code already and i dont get a blank name
Anyway maybe i will change the code to do a double check.
January 17, 2007 at 10:08 am #53006In reply to: Template: bbPress Forum Theme
yooakim
MemberThis theme is a lot nicer that the old default theme.
It works but there are a few issues.
When i click on “View your profile” the menu choices goes off way out to the right…
Great work!
/Joakim
January 13, 2007 at 11:21 am #53219In reply to: Disallowing Registration
mouse8b
MemberIn the default template’s register.php, I replaced the registration form with a message and link and it seems to have worked just fine. ( http://www.bandtr.com/wordpress/bbpress/ ). If there are some other factors at work that I am not aware of and need to know about, please let me know.
January 12, 2007 at 9:50 pm #53335Michael Adams (mdawaffe)
MemberIf you look at the top of the default theme’s header (/bb-templates/header.php) you will see:
<link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
<?php global $bb_locale; if ( ('rtl' == $bb_locale->text_direction) ) : ?>
<link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />
<?php endif; ?>
Currently, you have a file called he.mo (is that the right name for Hebrew?) in bbPress’ languages directory.
You should also put a file called he.php in that directory that has the following content.
<?php
$text_direction = 'rtl';
?>
Then, bbPress will know that your language is RTL and should include both the style.css and the style-rtl.css automatically.
But, you’re right. There are a bunch of CSS bugs it looks like. I’ll see what I can do to fix them.
January 12, 2007 at 8:12 pm #50663In reply to: Displaying Photos>
Michael Adams (mdawaffe)
MemberThere’s a plugin for images: https://bbpress.org/plugins/topic/5?replies=14
The
<blockquote>
tag is allowed by default.January 7, 2007 at 6:08 am #53039In reply to: Change the default ‘Member’ role title?
potter_system
MemberChanging the ‘name’ value (line 125) from your
bb-includes/capabilities.php
file would be enoughJanuary 4, 2007 at 8:32 pm #53053In reply to: Plugin: Private Forums v 2.1
so1o
Participantok i think i know what the problem is.. you have a custom theme.. you dont have a ‘bb_head’ hook in that theme..
check header.php in the default theme..
January 3, 2007 at 5:15 pm #1185Topic: Plugin: Private Forums v 2.1
in forum Pluginsso1o
ParticipantUpdates:
– Added choice either to completely hide private forums or show them with private prefix
– Added selectable prefix text, default set to ‘private’
– Removed redundant forum_access_update_option
– Created Common Submit for all options
Ref:
http://bbpress.org/forums/topic/385
http://bbpress.org/forums/topic/385?replies=25#post-2808
Download:
http://www.adityanaik.com/projects/plugins/bb-private-forums/
January 3, 2007 at 3:41 pm #51821In reply to: Plugin – Member List
Trent Adams
MemberYou uploaded the files to the right place! bbPress will try and see if a file is located in those 2 directories before defaulting back to the bb-templates/ directory!
As for the link to thte member list page, most people have been adding that in their ‘views’ section of front-page.php. Copy front-page.php from /bb-templates/, edit the file to include the link, re-upload into my-templates/
That way, if it doesn’t work (the way you edited it), you can delete front-page.php from my-templates and bbPress will use the original again in bb-templates! Nice eh!
Trent
January 3, 2007 at 7:13 am #1183Topic: Change the default ‘Member’ role title?
in forum TroubleshootingM
MemberJust looking to change the default ‘Member’ forum role title to something more appropriate for my forum. What file would that be contained in?
January 2, 2007 at 7:48 pm #53005In reply to: Template: bbPress Forum Theme
bbolman
ParticipantIt seems to work just fine for me. I must admit, I do like this more than the default theme.
January 2, 2007 at 2:18 am #51721In reply to: My modification of the default theme
Nicki Faulk
MemberUpdated plugin list:
* Allow Images 0.7.1
* Avatar .73a
* bbEmoticons version 0.72
* Memberlist .73c
* Google Sitemap Generator .6
* BBPress Private Messaging 0.73
* Use Display Name 0.7.2
* Online List 1.3-fix
* WordPress Integration .7
* Post Notification 1.2
* My Resolve Title 0.1
* Limit Latest Discussion 0.73
January 1, 2007 at 10:24 pm #52199In reply to: Template of this forum??
Trent Adams
MemberI haven’t heard back, so why not. I am not saying for sure that everything is going to work on this one. Backup your current my-templates/ folder and then test with this one:
Trent’s bbPress Default Template
Trent
January 1, 2007 at 12:50 am #51682In reply to: Plugin: Post Notification
spencerp
MemberNicki, I’m using another version of this plugin.. I had asked Thomas earlier in the thread, for one that sends one out no matter what, or who’s thread gets replied too.
https://bbpress.org/forums/topic/313?replies=34#post-1766
So, by default.. his original plugin won’t do that.
https://bbpress.org/forums/topic/313?replies=35#post-1528
spencerp
December 30, 2006 at 7:38 pm #52850In reply to: profile_menu doesnt work on all pages
lordcoder
MemberOk the problem is solved by using this function instead of the default profile_menu :
function profile_menu() {
global $bb, $bbdb, $bb_current_user, $user_id, $profile_menu, $self, $profile_page_title, $bb_table_prefix;
$user_id=(isset($user_id)) ? $user_id : $bb_current_user->ID;
$list = "<ul id='profile-menu'>";
$list .= "nt<li" . ( ( $self ) ? '' : ' class="current"' ) . '><a href="' . get_user_profile_link( $user_id ) . '">' . __('Profile') . '</a></li>';
if ( isset( $profile_menu ) ) :
foreach ($profile_menu as $item) {
// 0 = name, 1 = users cap, 2 = others cap, 3 = file
$class = '';
if ( $item[3] == $self ) {
$class = ' class="current"';
$profile_page_title = $item[0];
}
if ( can_access_tab( $item, $bb_current_user->ID, $user_id ) )
if ( file_exists($item[3]) || function_exists($item[3]) )
$list .= "nt<li$class><a href='" . wp_specialchars( get_profile_tab_link($user_id, $item[0]) ) . "'>{$item[0]}</a></li>";
}
endif;
$list .= "n</ul>";
echo $list;
}
December 29, 2006 at 1:22 am #51720In reply to: My modification of the default theme
Nicki Faulk
MemberThank you, devils_adv.
December 28, 2006 at 11:44 pm #51719In reply to: My modification of the default theme
devils_advocate
Memberwow.
!!!!
something to measure sucess by…!
love it.
December 28, 2006 at 3:45 pm #51718In reply to: My modification of the default theme
Nicki Faulk
MemberThanks, spencerp!
December 28, 2006 at 8:14 am #51717In reply to: My modification of the default theme
spencerp
MemberI love it!!
You did an awesome job on the theme/forums there..
/Get’s in line for downloading a copy of it, once she’s going to share it.. LoL!
spencerp
/By the way, your link still stands on my main site: spencerp.net … under one of the links sections..
I haven’t been there in a while though, but will stop in again then.. I promise!
December 28, 2006 at 5:35 am #51716In reply to: My modification of the default theme
Nicki Faulk
MemberThank you, ardentfrost.
re: version – Whoops! Right you are, my bad.
-
AuthorSearch Results