Search Results for 'buddypress'
-
AuthorSearch Results
-
May 28, 2010 at 1:10 pm #79990
In reply to: BP 1.2.4 – Custom BP_AVATAR_URL change
May 28, 2010 at 10:06 am #79980moosh101
MemberThanks. The pastebin code did the trick. You can add the code to any section of your buddypress site and customize it to your liking.
All the best,
Shane.
May 28, 2010 at 8:50 am #79977him666
ParticipantMyself i can access my admin without any problems to my own dashboard and can access all the dashboard in the network using my admin acces.
when a member try to sign up on his account the are redirected to this page
http://dashboard.webfeminin.com/wp-admin/?c=5instead of
http://recettesetcuisine.webfeminin.com/wp-admin/
You don’t have permission to view this blog. Please contact the system administrationAs you can see here no members appear
http://webfeminin.com/members/
i must use the special *Users Widget* on my front page to see the members and they are all redirect to http://dashboard.webfeminin.com/ and not to the member profile
their is 35 members (inside the button to the left) but it say : *Sorry, no members were found.*anyone can help me?
May 28, 2010 at 8:43 am #79976Hugo Ashmore
ParticipantI’ve had a look through buddypress/bp-blogs.php and buddypress/bp-blogs/bp-blogs-classes.php and it looks to me as though this meta data should be updating but why it isn’t is beyond my understanding so have opened a ticket on the issue:
May 28, 2010 at 6:24 am #79974In reply to: Registration link redirects to home page
serveandshare
Member@dailynewarker what do you mean when you said you pointed to your “real, production database”
May 28, 2010 at 3:04 am #79966In reply to: Activity stream as front page in BP 1.2.4, WP 3.0 b2
@mercime
ParticipantThen you can do it this way as well:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/homepage-other-than-activity-or-admin-blog-or-a-wp-page/?topic_page=2&num=15#post-47399
replace e.g. forums/index.php in the code to activity/index.phpMay 28, 2010 at 2:49 am #79963In reply to: “bp-sn-parent” theme missing
@mercime
ParticipantTeatro Mágico is a child theme of bp-sn-parent, which was an official BuddyPress theme but is no longer supported in BP 1.2 version. So either you try to tweak it to use bp-default theme or choose another BuddyPress theme.
May 28, 2010 at 12:22 am #79960In reply to: activity stream post ID?
Hoodie Mark
ParticipantOk i get that in theory but the syntax here isn’t making sense. Got the type conditional to work but can’t echo the secondary_item_id object. I really wish the codex for buddypress was as easy to get info from as the wordpress codex. Thank You so much though… you’re the first person to respond to any of my posts.
May 27, 2010 at 10:01 pm #79950ekawaii
MemberYay, I found a plugin that disables display names and forces to show the username on all your bbpress. You can find the plugin here: https://bbpress.org/plugins/topic/disable-display-name/
I’ve tested it on bbpress version 1.0.2 integrated with buddypress 1.2.4.1 and wordpress 2.9.2 and so far no bugs.
May 27, 2010 at 9:42 pm #79949In reply to: Buddypress version of wordpress 'mystique' theme?
David anthony
Participantplease please send me the mystique/buddypress convert….
(david at musicaltheatrepro . com)I would really appreciate it.. it’s perfect for what I do and I really can’t use buddypress in the current state… I don’t know enough about code to fix it! Thank You
May 27, 2010 at 9:03 pm #79944In reply to: BP Followers 1.0 – Can’t see “following”
thelandman
Participant@0815t My Bad! Its working fine. For some reason one of the users couldn’t view his/her followers. Its fine now.
May 27, 2010 at 8:59 pm #79943In reply to: Welcome Pack has blank text zones
Paul Wong-Gibbs
Keymaster@erich73 I don’t know what you mean, can you send a screenshot?
May 27, 2010 at 8:46 pm #79941In reply to: Is BuddyPress the right choice?
iamavase
Participant@marybenett after looking at some videos the following link which discusses the idea of a separate section using buddyPress, where the majority of the website is standard. She does not address the idea of a tab specifically, but hopefully it could add insight to your query.
The presenter, Lisa-Sabin WIlson discusses it at the end of her presentation, which was given at WordCamp NYC 2009
here is the link:
May 27, 2010 at 8:45 pm #79940gregfielding
Participant@hnla
Correct. I see the old (original) blog names under “my blogs” in both the admin bar dropdown menu and on my profile page.May 27, 2010 at 8:19 pm #79933Hoodie Mark
Participantare you referring to the dynamic name within the page title tags? I’m having an issue there as well https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddypress-using-latest-post-id-for-each-activity-entry-and-each-page-title/ but i’m getting no forum love. :'(
May 27, 2010 at 8:12 pm #79930dwdutch
ParticipantI think the following properly displays the output from bp_get_the_profile_field_options() as an example of when radio-buttons intermittently display incorrectly. Below that I also show a potential fix – although @jeffsayre or another BP-expert may have a better solution. (Thanks @hnla for explanation)
<div id="field_125"><label><input checked="checked" type="radio" name="field_125" id="option_126" value="Professional">
Professional</label>
<label><input type="radio" name="field_125" id="option_127" value="Organizational">Organizational</label>
<label><input checked="checked" type="radio" name="field_125" id="option_128" value="Standard">Standard</label>
<label><input type="radio" name="field_125" id="option_129" value="Volunteer">Volunteer</label>
<label><input type="radio" name="field_125" id="option_130" value="Student">Student</label></div>
Notice that there are TWO checked=”checked” settings in the list. This occurs in the ‘radio’ switch statement of bp_get_the_profile_field_options() because of an IF-statement within a for-loop that I believe too liberally assigns the “checked” value to the default-value in the list regardless of whether or not there is already a set-value.
One alternative is to assign a variable before the for-loop…
$SomeValueChecked = FALSE;
… then check this variable within the IF-stmt before setting the default-value. Something like the following:
if ( $option_value == $options[$k]->name || $value == $options[$k]->name || ( $options[$k]->is_default_option && $SomeValueChecked == FALSE ) ) {
$SomeValueChecked = TRUE;
$selected = ' checked="checked"';
}May 27, 2010 at 8:07 pm #79929In reply to: Forums tab not working
mulligankicks
MemberThanks. I went into the admin dashboard under BuddyPress and Forum Setup and this is whatit says:
bbPress forum integration in BuddyPress has been set up correctly. If you are having problems you can re-install
NOTE: The forums directory will only work if your bbPress tables are in the same database as your WordPress tables. If you are not using an existing bbPress install you can ignore this message.
Where do I check my bbPress table and database settings?
May 27, 2010 at 7:10 pm #79921In reply to: Forums tab not working
intimez
Participant@mulligankicks Go into the admin “dashboard”, then under BuddyPress menu there is Forums Setup.
May 27, 2010 at 7:02 pm #79920In reply to: Buddypress Classifieds?
justbishop
MemberThanks

I was actually coming to post that I didn’t really need it any more, but it’d still be useful info I suppose.
In my case, the actual “blog” part of the main blog wasn’t being used for anything, so I’m just using that as the classifieds post system. I have custom fields set up (custom field template plugin) for users to call their remotely hosted photos, and am using a combo of the Members and Adminimize plugins to hide admin panel stuff that they don’t need to see. I also had to do some editing of the core wp-admin/edit-users.php to get rid of unnecessary profile fields in the backend, but nothing too bad that it can’t be redone after an update.
May 27, 2010 at 6:27 pm #79917bpinspire
ParticipantI love the way BuddyPress.org implemented the rating into groups, I’m curious which plugin is used? Anyone!
May 27, 2010 at 6:15 pm #79916In reply to: Following / Followers at testbp.org
dre1080
Memberyes buddypress followers was just released
May 27, 2010 at 6:09 pm #79915ekawaii
Member@intimez Thank you for your reply. I’m currently using that plugin that @r-a-y created and it works great with my buddypress/group forums however I also have an external bbpress install so I can have a true forum for my website as well. It uses the same table as wordpress and buddypress and I have it fully integrated however it’s pulling through the Name field that is required in buddypress and using it as the post author. Since I have the usernames plugin enabled I would like the bbpress external forum to show the usernames instead of the Name.
I hope this helps explain my situation better.
May 27, 2010 at 6:05 pm #79913In reply to: Following / Followers at testbp.org
intimez
ParticipantWill this work for everyone?

https://buddypress.org/community/groups/buddypress-followers/
May 27, 2010 at 5:24 pm #79910intimez
ParticipantYou may be interested in this plugin which I am using thanks to @r-a-y
https://buddypress.org/community/groups/buddypress-usernames-only/
May 27, 2010 at 5:07 pm #79909In reply to: Buddypress Classifieds?
NipponMonkey
MemberI’m looking for the same kind of thing. I’ll have a look round something and I’ll let you know if I find anything…
-
AuthorSearch Results