Search Results for 'buddypress'
-
AuthorSearch Results
-
December 23, 2008 at 6:19 pm #34940
In reply to: fyi: WP-reCAPTCHA works fine with BuddyPress
nicolagreco
ParticipantInteresting..
December 23, 2008 at 6:11 pm #34939In reply to: How-To: Expanding BuddyPress Profile Settings Menu
nicolagreco
ParticipantI think you should post it also in http://buddypressdev.org/forums/ (a BuddyPress Community for developers)
December 23, 2008 at 5:56 pm #34935In reply to: A Few Problems
danielfelice
Participanti’d try reinstalling everything first…i am not seeing any of these issues on my site so must be something to do with your setup
also check the permissions on the buddypress components
December 23, 2008 at 5:15 pm #34930In reply to: A Few Problems
Vast HTML
Participantmy users have no role. the blog they create when they open a account or after they open when they create a new blog it still shows page not found errors when viewing the blog or trying to edit it in any way. I dont want them to be admins at all i just dont understand why buddypress keeps attaching my name to every account i make. The information i also input when making a new member is useless as it is never saved. and must be redid in edit profile.
December 23, 2008 at 5:07 pm #34927In reply to: Lifestream-like plugin for individual users
David Bisset
ParticipantI would be interested in this as well. I have figured out how to expand the settings on BuddyPress profile pages. It would be great to allow users of BP to actually go into “settings” (because profile is public), edit their social settings, and then display the feeds on a seperate BuddyPress page, widget, or (even better IMO) a new BuddyPress component. I just posted about this in the forum a few minutes ago.
December 23, 2008 at 4:28 pm #34916In reply to: A Few Problems
Wardee
ParticipantAre you using your own theme or the buddypress-home theme?
December 23, 2008 at 4:05 pm #34912In reply to: How do I view the plugins??
David Bisset
ParticipantSo say you have a plugin that displays a twitter feed given a username. You want ALL profile pages in BuddyPress to automatically show this. I would think this would be a WPMU plugin, but i wanted to confirm. I managed to create additional profile pages in my BP test install (and even additional setting screens) but can’t get plugins to work on the pages I have created. Thinking it might have to do with where the plugin are installed.
December 23, 2008 at 3:02 pm #34906In reply to: 3 css things i’d like help with
Wardee
ParticipantIn buddypress-home > css, rename the custom-sample.css as custom.css.
Then add these lines to it and save:
body {
background:#000000;
color:#FFFFFF;
}
.widget ul.item-list li, .activity-list {
background:#000000;
}
.activity-list li blockquote {
background:#000000;
}
.activity-list {
border:none;
}
Some other thing may need changing, too; I don’t know what you want. All the widget titles have background colors. Also the link color might not be what you want.
For the header fill in your amount of pixels and the name of your logo file (put it in buddypress-home > images).
#header h1 {
background:transparent url(../images/your-logo.gif) no-repeat scroll left top;
height:–px;
width:–px;
}
You’ll have to do the same with buddypress-member > css. Rename custom-sample.css to custom.css and add the header bit, as well as any color changes.
Who knows what else may come up. Post if you need help with anything else.
December 23, 2008 at 2:58 pm #34905In reply to: fyi: WP-reCAPTCHA works fine with BuddyPress
David Bisset
ParticipantI highly recommend something like this, especially for signups. Spammers target MU blogs to auto-register and then auto-create/post blogs.
December 23, 2008 at 6:11 am #34890In reply to: Buddypress Home 2 Column Theme
adamhdv
MemberI had also made mine a two column theme… extending the left column stretching across to the right one. Getting rid of the middle one. Got a few issues in IE with the top margin, should be an easy fix…but i’ll let you know.
December 23, 2008 at 5:28 am #34886Burt Adsit
ParticipantHowdy, the area I think you are talking about is the default form when you view a member’s profile right? ‘me’ > profile > public. The template that generates that screen is in /member-themes/buddypress-member/profile/index.php
You’ll see the calls to generate all the sections on that page. One of them is the wire. Line 47:
<?php bp_wire_get_post_list( bp_current_user_id()… and so on …
You were gonna make a copy of the theme, make whatever changes you need to run a custom bp member theme and edit that one right?
I think it’s in the bp rules and code of conduct. I’ll have to check.
December 23, 2008 at 4:58 am #34885In reply to: Buddypress Home 2 Column Theme
Scotm
Participantfishbowl81
This is pretty much what I’d tried, although I’d forgotten about the custom.css file idea. I may have figured it out.
Thx
December 23, 2008 at 4:44 am #34884In reply to: Buddypress Home 2 Column Theme
fishbowl81
ParticipantThere are 2 things you need to change, 1 in custom.css, 1 in home.php in the buddypress-home theme folder (and /css folder)
remove lines 14 to 25 (or comment out) of home.php
`<div id=”center-column”>
<?php if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar(‘center-column’) ) : ?>
<div class=”widget-error”>
Please log in and /wp-admin/widgets.php?s=&show=&sidebar=sidebar-2″>add widgets to this column.
</div>
<?php endif; ?>
</div>`
This will remove the center column from the layout.
Next you need to adjust the css right margin of #left-column
#left-column {
margin-right: 280px;
}
Also you could adjust the body width, with this addition to your custom.css
body {
max-width: 1100px;
}
Hope That Helps,
Brad
December 23, 2008 at 3:18 am #34881In reply to: limit 1 blog per user
neuromancer2701
ParticipantI wanted to removed “Create a Blog!” from of the buddypress admin bar.
This is what I got to work:
wp-content/mu-plugins/bp-core/bp-core-adminbar.php
$blogscheck = get_blogs_of_user($current_user->ID);
if ( ! empty($blogscheck)
{
echo '<a href="' . $bp['loggedin_domain'] . $bp['blogs']['slug'] . '/create-a-blog">' . __("Create a Blog!", 'buddypress') . '</a>';
}December 23, 2008 at 12:00 am #34868In reply to: Widget for Recent (Group) Forum Posts
Trent Adams
ParticipantDidn’t see your post nicolagreco. Posting around the same time

@wardeh Missed that part. I would imagine that Andy will eventually do something with forums, but priority now is getting 1st release out. I have a ticket for forum activity in sitewide feed as well at:
December 22, 2008 at 11:48 pm #34865In reply to: News as Widget
nicolagreco
Participantif i were you, i wont use widget in this case. i would create a loop to show last post
(i use prologue theme too on one of my buddypress installation, and i highly hacked that theme!!)
December 22, 2008 at 11:36 pm #34862In reply to: Activity rss feed not populating…
Trent Adams
Participanthttps://trac.buddypress.org/ticket/261
Known issue that even happens on testbp.org. Andy knows about it, so it should be fixed here pretty soon
Trent
December 22, 2008 at 11:21 pm #34856In reply to: Widget for Recent (Group) Forum Posts
nicolagreco
Participantcan you develope in php?
if yes, you could develope a php script that add an action : when a user post someting, it has to be stored in the db,
or searching for a function in bbpress documentation that shows last articles..
i believe that if you knows a bit of php you can do the second one..
Tomorrow i will open http://buddypressdev.org forums and there i will post some lines, if i can with time!
December 22, 2008 at 11:03 pm #34853In reply to: Widget for Recent (Group) Forum Posts
nicolagreco
ParticipantIf i’ve time tomorrow (in italy is midnight), i will write a plugin and i will post it on http://buddypressdev.org
December 22, 2008 at 8:09 pm #34843In reply to: News as Widget
Scotm
ParticipantThanks for the input. I chose burtadsit’s suggestion and it works fine, but I realize now that I need the News page as a widget or some other solution. Here’s my situation:
1. I don’t want to have member blogs, only users posting to the main blog, so that means not installing bp-blogs in order to hide it across the site.
2. I do need the recent blog posts to arrive on the buddypress-home theme, but without bp-blogs installed the widget isn’t available. So I’m thinking if I could get the News widgetized it would pull posts to the home page instead.
3. I could install bp-blogs to simpley get the widget (what I have right now), but that means removing all instances of ‘blog’ throughout the site including buddypress member areas and that seems like a bad route to go.
4. I have the Prologue post-form installed on the buddypress-home theme just above the three columns of widgets, thus eliminating any need for users to ever see the wpmu admin panel. This should allow me to keep all users as members vs. blog owners.
Any suggestions would be greatly appreciated.
Cheers
December 22, 2008 at 7:07 pm #34841In reply to: New: Third Party Components & Plugins
Trent Adams
ParticipantDon’t put them into this thread, but rather a new topic in:
https://buddypress.org/forums/forum.php?id=6
Trent
December 22, 2008 at 4:00 pm #34830In reply to: VPS Company, Bandwdith, and satisfaction.
gogoplata
ParticipantMedia Temple here as well and I have nothing but good things to say about them and haven’t had any problems with WPMU/bbPress/BuddyPress.
December 22, 2008 at 3:19 pm #34827In reply to: VPS Company, Bandwdith, and satisfaction.
David Bisset
ParticipantI use media temple, cheapest VPS. Never had a problem regarding getting WordPress MU or BuddyPress to work with them. Hope that helps.
December 22, 2008 at 1:09 pm #34822anartoka
MemberSalut,
Le site ne fonctionne toujours pas :'(
Je peux donner un coup de main si besoin …
Et je cherche aussi à télécharger le fichier de langue “FR”
December 22, 2008 at 5:41 am #34810In reply to: Members and Blogs list not working
6d6
MemberO.K. So I got a static I.P. Set up wild-card domains to work with subdirectories, and i’m still having problems with the blog and members page. you can see it here. desmoineslocalmusic.com.
This is set up through go daddy. Does anyone else has buddypress set up on go daddy? My account is up on the 27th and if I can’t get it working i’m going elsewhere.
Any suggestions?
-
AuthorSearch Results