Search Results for '+.+default+.+'
-
AuthorSearch Results
-
January 17, 2007 at 11:58 pm #51957
In 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.
December 28, 2006 at 4:16 am #51715In reply to: My modification of the default theme
ardentfrost
Memberbtw, you’re using memberlist .73c, not .73a
December 28, 2006 at 4:13 am #51714In reply to: My modification of the default theme
ardentfrost
MemberVery nice looking. Glad you’re using a few of my plugins
Theming bbpress isn’t so easy yet, but it’s doable and you certainly did a good job.
December 27, 2006 at 10:29 pm #51713In reply to: My modification of the default theme
Nicki Faulk
MemberYeah, I know that once theming ability is added to bbPress, I’ll probably be fixing several things on this theme! LOL
But hey, it’s yet another toy for me to muck up, I mean, play with.
December 27, 2006 at 10:24 pm #51712In reply to: My modification of the default theme
Trent Adams
MemberThat sounds great! I know so10 has requested (through TRAC) that we have something in the admin to choose themes. Here is what I have been doing for mine!
/my-templates/theme1/
/my-templates/theme2/
/my-templates/theme3/
Then I just have to copy contents of the theme folder I want to use to the root of /my-templates/
It is a pain right now, but really simple when using FTP I guess!
Trent
December 27, 2006 at 10:19 pm #51711In reply to: My modification of the default theme
Nicki Faulk
MemberThank you, Trent.
I just may do that. I’m still working out little kinks here and there (mostly spacing issues), but I’ll definitely share here when I’m finished (or at least satisfied LOL!).
-
AuthorSearch Results