Search Results for '+.+default+.+'
-
AuthorSearch Results
-
March 18, 2010 at 12:04 pm #33781
kmxz
MemberHi,everyone,
The default tags page is like
example.com/tags.php?tag={tag_name}
but I want to make the url like
example.com/tags.php?id={tag_id},
is there any way to make it? could it be done by a plugin?
I have to do so because using the tag’s name in url may lead to being blocked by Chinese government’s Internet censorship.
thanks.
March 17, 2010 at 5:40 am #85746In reply to: BuddyPress Default Theme for bbPress?
wemaflo
Member@etiviti It’s awesome
I like it!
March 16, 2010 at 7:28 am #85834In reply to: username function
deadlyhifi
ParticipantHave a look at bb-includes/functions.bb-template.php you’ll see the functions
function get_post_author( $post_id = 0 )
andfunction post_author_link( $post_id = 0 )
.You’ll need to recreate those in a plugin or in your functions file to use
$user->user_login
instead of$user->display_name
.Have a look at profile.php in your theme to see how it is generated there. But remember that on post.php you’ll have to pass in the ID of the post to get the username otherwise you’ll be fetching details on the logged in user rather post author.
I hope that helps, good luck.
An easier way would be to take away the ability to allow change of display name. Then it will default to username anyway. Have a look at topic/help-with-basic-command-to-add-new-profile-fields if that’s the avenue you want to take. If you do, don’t forget to set everyones ‘nicename’ back to what their username is.
March 15, 2010 at 1:23 pm #85744In reply to: BuddyPress Default Theme for bbPress?
rich! @ etiviti
Memberi started on something a few months ago… but the priority is low on the list
March 14, 2010 at 4:29 pm #85743In reply to: BuddyPress Default Theme for bbPress?
March 14, 2010 at 2:01 pm #85742In reply to: BuddyPress Default Theme for bbPress?
Ashish Kumar (Ashfame)
ParticipantYeah! I just pointed it to be one of those things which need to be fixed.
Just get in touch with me when you release it.
March 14, 2010 at 1:10 pm #85741In reply to: BuddyPress Default Theme for bbPress?
Arturo
Participantthis is the background image original with bbpress kakumei theme… i make some changes to pagination
1 week or so, atm i don’t have time to complete the theme, sorry
March 14, 2010 at 11:43 am #85740In reply to: BuddyPress Default Theme for bbPress?
Ashish Kumar (Ashfame)
ParticipantI meant a lil issue
the background image doesn’t blend correctly with background
http://img28.imageshack.us/img28/9716/26612833.png
and any time sooner? Ping me if its possible
March 14, 2010 at 11:32 am #85739In reply to: BuddyPress Default Theme for bbPress?
Arturo
Participantthank you!
what do you mean for “glitch”?
i think yes when it’s done, i’ve some thinks to resolve…
March 14, 2010 at 11:23 am #85738In reply to: BuddyPress Default Theme for bbPress?
Ashish Kumar (Ashfame)
ParticipantMarch 14, 2010 at 11:09 am #85737In reply to: BuddyPress Default Theme for bbPress?
Arturo
Participantthis is my bbpress installation with the new default theme http://forum.buddypress-it.it what do you think?
thanks for the feedback…
March 14, 2010 at 11:05 am #85736In reply to: BuddyPress Default Theme for bbPress?
wemaflo
MemberYes, you’re right
I was looking for an existing free option… Seems as if I were really out of luck
Thanks for the offer, but I will port the Theme by myself
March 14, 2010 at 9:57 am #85735In reply to: BuddyPress Default Theme for bbPress?
Ashish Kumar (Ashfame)
ParticipantI just hit the nail, you see
Well if you are looking for free option, then may be you are out of luck but if you are looking fo a paid option, then the sun is under your umbrella
March 14, 2010 at 9:43 am #85734In reply to: BuddyPress Default Theme for bbPress?
wemaflo
Member@Michael R:
Thanks, but this one is the BuddyPress 1.0 Theme, BuddyPress 1.2.x now oncludes a new default theme: http://testbp.org
Yes, of course, but I want to run an external forum installation with the same design. BuddyPress has group forums, but there should be an external forum that has nothing to do with group forums.
My site: http://musikinstrumentenbau.net
External forum: http://musikinstrumentenbau.net/forum/
March 14, 2010 at 9:43 am #85733In reply to: BuddyPress Default Theme for bbPress?
Ashish Kumar (Ashfame)
ParticipantThe link that @Michael R gave is for previous version of BuddyPress. (Good Resource!)
But I see you want for the latest version 1.2+
@Gautam is right about installing bbPress within BuddyPress or if you already have one, then you can link that too (I haven’t tried that yet but it should work easily).And if you want to run a standalone version with BuddyPress for some reason (may be because the limit that forums are within group only), then you are out of luck as nothing exists for now.
March 14, 2010 at 7:11 am #85732In reply to: BuddyPress Default Theme for bbPress?
Gautam Gupta
ParticipantIf you have BuddyPress installed on WordPress, then just install the bbPress component. BP would automatically handle everything.
March 14, 2010 at 7:07 am #85731In reply to: BuddyPress Default Theme for bbPress?
Michael
ParticipantThere is this one: http://manojkumar.org/buddypress-theme-for-bbpress/
Not sure which version of BuddyPress it originates from, however.
March 12, 2010 at 3:33 pm #51872In reply to: Email masked
kevinator
MemberOK, we fixed it. I’ll find out details and post later. See how it looks here: http://www.cwnp.com/forums
Our purpose in doing it is twofold:
1. privacy/security, obvious reasons
2. we just implemented the Leaderboard plugin found on bbpress.org so we can have a participation contest. Leaderboard by default shows username, which in our case is email.
Bottom line is we also require “nickname”, so we’ve used that instead.
Now, anyone know how to make Leaderboard a widget?
March 11, 2010 at 3:59 pm #85779In reply to: Default user permissions
johnhiler
MemberHere are all the capabilities of each role, as defined in bb-includes/functions.bb-capabilities.php:
function bb_init_roles( &$roles ) {
$roles->add_role( ‘keymaster’, __(‘Key Master’), array(
‘use_keys’ => true, // Verb forms of roles – keymaster
‘administrate’ => true, // administrator
‘moderate’ => true, // moderator
‘participate’ => true, // member
‘keep_gate’ => true, // Make new Key Masters //+
‘import_export’ => true, // Import and export data //+
‘recount’ => true, // bb-do-counts.php //+
‘manage_options’ => true, // backend //+
‘manage_themes’ => true, // Themes //+
‘manage_plugins’ => true, // Plugins //+
‘manage_options’ => true, // Options //+
‘edit_users’ => true,
‘manage_tags’ => true, // Rename, Merge, Destroy
‘edit_others_favorites’ => true,
‘manage_forums’ => true, // Add/Rename forum
‘delete_forums’ => true, // Delete forum
‘delete_topics’ => true,
‘close_topics’ => true,
‘stick_topics’ => true,
‘move_topics’ => true,
‘view_by_ip’ => true, // view-ip.php
‘edit_closed’ => true, // Edit closed topics
‘edit_deleted’ => true, // Edit deleted topics/posts
‘browse_deleted’ => true, // Use ‘deleted’ view
‘edit_others_tags’ => true,
‘edit_others_topics’ => true,
‘delete_posts’ => true,
‘throttle’ => true, // Post back to back arbitrarily quickly
‘ignore_edit_lock’ => true,
‘edit_others_posts’ => true,
‘edit_favorites’ => true,
‘edit_tags’ => true,
‘edit_topics’ => true, // Edit title, resolution status
‘edit_posts’ => true,
‘edit_profile’ => true,
‘write_topics’ => true,
‘write_posts’ => true,
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘administrator’, __(‘Administrator’), array(
‘administrate’ => true,
‘moderate’ => true,
‘participate’ => true,
‘edit_users’ => true, //+
‘edit_others_favorites’ => true, //+
‘manage_forums’ => true, //+
‘delete_forums’ => true, //+
‘manage_tags’ => true,
‘delete_topics’ => true,
‘close_topics’ => true,
‘stick_topics’ => true,
‘move_topics’ => true,
‘view_by_ip’ => true,
‘edit_closed’ => true,
‘edit_deleted’ => true,
‘browse_deleted’ => true,
‘edit_others_tags’ => true,
‘edit_others_topics’ => true,
‘delete_posts’ => true,
‘throttle’ => true,
‘ignore_edit_lock’ => true,
‘edit_others_posts’ => true,
‘edit_favorites’ => true,
‘edit_tags’ => true,
‘edit_topics’ => true,
‘edit_posts’ => true,
‘edit_profile’ => true,
‘write_topics’ => true,
‘write_posts’ => true,
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘moderator’, __(‘Moderator’), array(
‘moderate’ => true,
‘participate’ => true,
‘manage_tags’ => true, //+
‘delete_topics’ => true, //+
‘close_topics’ => true, //+
‘stick_topics’ => true, //+
‘move_topics’ => true, //+
‘view_by_ip’ => true, //+
‘edit_closed’ => true, //+
‘edit_deleted’ => true, //+
‘browse_deleted’ => true, //+
‘edit_others_tags’ => true, //+
‘edit_others_topics’ => true, //+
‘delete_posts’ => true, //+
‘throttle’ => true, //+
‘ignore_edit_lock’ => true, //+
‘edit_others_posts’ => true, //+
‘edit_favorites’ => true,
‘edit_tags’ => true,
‘edit_topics’ => true,
‘edit_posts’ => true,
‘edit_profile’ => true,
‘write_topics’ => true,
‘write_posts’ => true,
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘member’, __(‘Member’), array(
‘participate’ => true,
‘edit_favorites’ => true,
‘edit_tags’ => true,
‘edit_topics’ => true,
‘edit_posts’ => true,
‘edit_profile’ => true,
‘write_topics’ => true,
‘write_posts’ => true,
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘inactive’, __(‘Inactive’), array(
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘blocked’, __(‘Blocked’), array(
‘not_play_nice’ => true // Madness – a negative capability. Don’t try this at home.
) );
http://svn.automattic.com/bbpress/trunk/bb-includes/functions.bb-capabilities.php
Hope that helps!
March 11, 2010 at 12:09 pm #85770In reply to: Main Theme
ajithkpunnoose
MemberSorry I haven’t found a plugin. I am searching for one.
But Your post should read
“I want the bbpress theme to be a custom one, but needs the default theme to be available for some selected categories only. Is there a plugin that allows me to use specific themes for specific categories? “
March 11, 2010 at 12:05 pm #33730Topic: Default user permissions
in forum Troubleshootingajithkpunnoose
MemberI need to know what the different types of users : Key-Master, Administrator, Member etc can do on the bbpress forums and topics. I searched for about an hour and can’t find a suitable answer. Any post or link will help.
March 11, 2010 at 1:46 am #51860In reply to: Email masked
kevinator
MemberSimilar request here: by default, anyone on any bbPress forum can click on anyone else’s profile and see their email address. Big privacy/security issue. How can you hide/mask all user’s email addresses?
March 7, 2010 at 7:53 pm #85661crobinson18
Member@ johnhiler,
1) YES, I still have the problem if I activate the default Kakumei theme.
2) NO, I have not installed any plugins recently.
Thanks for any help!
Chris
March 7, 2010 at 3:27 pm #85673In reply to: Parse error: syntax error, unexpected '
chrishajer
ParticipantIf you edited any files or are using any plugins or a custom theme, remove those for right now. Did you edit your keys in bb-config.php? Maybe there’s an error there? What version are you installing and where did you get it?
If you are just installing a stock version, chances are it was not uploaded properly. This error does not occur in the default installation.
March 7, 2010 at 3:04 pm #85611bforeste
MemberOkay – here is my resolution. It only took me a weekend to figure this out.
Media Temple’s default DB CHARSET / COLLATE settings are ‘latin1’ and ‘latin1_swedish_ci’ for WHATEVER reason…
The bbPress db client connection is using UTF8 – which is why I kept getting the database error.
I used this command (because the knowledge base article in MT is incorrect) to update my CHARSET and COLLATE settings for my DB:
ALTER DATABASE db12345_wp CHARACTER SET utf8 COLLATE utf8_general_ci;
That allowed me to finish the upgrade.php script.
Hope this helps someone in the future.
bforeste
-
AuthorSearch Results