Search Results for 'buddypress'
-
AuthorSearch Results
-
June 11, 2011 at 12:35 am #114320
In reply to: Template File For Single Activity?
pcwriter
ParticipantThe “View” links lead to this:
members/activity/permalink.phpJune 10, 2011 at 11:27 pm #114316In reply to: Edit user posts in groups? Buddypress
tslhq
MemberWhat plugin @grooveman? I need it also!
June 10, 2011 at 10:15 pm #114309In reply to: How to change “Search anything…”
aljuk
MemberJune 10, 2011 at 8:55 pm #114308In reply to: Limiting text length of activity update posts
justbishop
MemberTried to implement this, but I’m wondering if the code was mangled a bit on the post that @nahummadrid linked to. It doesn’t seem to want to work for me.
June 10, 2011 at 8:31 pm #114305In reply to: How to change “Search anything…”
valuser
ParticipantCould @aljuk elaborate on the unforseen complications that arose from replacing the appropriate strings in bp-blogs/bp-blogs-templatetags.php etc. ?
June 10, 2011 at 8:24 pm #114304In reply to: Edit user posts in groups? Buddypress
grooveman
MemberI found a plugin that allows me to edit posts in the activity stream. Thanks for the help!
June 10, 2011 at 8:22 pm #114303In reply to: bbpress forums / sidebar. Need Help Please! :)
jonobradley
MemberHey,
I’m sorry- you’ve confused me a good deal with that last post. Anyway you can explain in more “lamens terms”?

Thanks,
Jono
June 10, 2011 at 8:10 pm #114302sidjags
Member@hal9000 to get alternating colors on any of your loops (activity, members, groups, blog listings, forums, whatever)… using this code (uses CSS3)
li { background: green; }
li:nth-child(odd) { background: red; }more specifically:
in the default.css stylesheet of the buddypress default theme… you should find on line 396:
ul.item-list li {
position: relative;
padding: 15px 0;
border-bottom: 1px solid #eaeaea;
}replace that with this:
ul.item-list li {
position: relative;
padding: 15px 0;
border-bottom: none;
background: green;
}ul.item-list li:nth-child(odd) {
background: red;
}and wolla!! ofcourse… please change the red and green to the colors of your theme… also, if you need it specifically for members, or groups, etc… then in the source code of each page , for eg, in groups, it is under a particular id: groups-list… put the styles under that id and so on.. hope that makes sense to you.
June 10, 2011 at 7:46 pm #114301In reply to: Edit user posts in groups? Buddypress
grooveman
MemberI installed buddypress on an existing wordpress installation. I have set up a few groups that members can post in, however when I am logged in as admin I only see an option to view, or delete the post. I just want to edit it so it conforms to my blog policy..But I cannot see anywhere to do that.
June 10, 2011 at 7:39 pm #114299In reply to: Edit user posts in groups? Buddypress
@mercime
Participant== how do you edit a post created by a member in buddypress groups ==
Could you be more specific? Like are you using a group blog plugin (u mentioned groups above) or are you referring to just a regular post in main site or another blog in your install?
June 10, 2011 at 7:21 pm #114296In reply to: Search box hints
valuser
ParticipantInstalled unified search as per above link and transferred search to sidebar as per @mercime at https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/search-login-bar/ . Truly Excellent tips. Just one extra step required. In Groups,Blogs,and Members Directory there remains a search bar in addition to the unified search now in sidebar. How to remove this ?
June 10, 2011 at 7:20 pm #114295In reply to: Sugestion: Buddypack
Hugo Ashmore
ParticipantHow do you mean seriously? they are not obliged to do anything really , they already provide hosting for the site and trac/svn they designate one of their team to work – I think exclusively – on .org sites, BuddyPress, and bbPress. They are not strictly obliged to do any of this remember
June 10, 2011 at 7:10 pm #114293In reply to: Sugestion: Buddypack
Austin Nichols
MemberWell that raises the bigger question. When is Automattic going to take Buddypress seriously?
June 10, 2011 at 6:59 pm #114290sidjags
MemberJune 10, 2011 at 6:57 pm #114289sidjags
Memberhttps://buddypress.org/community/groups/buddypress-better-pagination/
They say this will help, but read the reviews.. i think there are some people having problems out there. But i have wp 3.1.3 and bp 1.2.8… and i cannot see the backend admin link for this! good luck though.. and let me know if this works out for you…
June 10, 2011 at 5:50 pm #114286In reply to: Events Manager for BuddyPress
gg565
Participant1) Could you put the option to create New Categories at the Front End, please?
2) I found that Categories could be selected by Front End users when creating events, but did not stay selected on save.
3) The calendar is very useful but currently shows ALL the events. Can it be adjusted just to show Events I’m Attending or Group Events?thanks and well done on a great plugin.
GJune 10, 2011 at 5:02 pm #114285iamyeti
MemberI am using site5. So far so good. I have a buddypress multisite on their shared hosting service and working just fine. Just installed today, so I have not tested everything yet.
I had a 500 internal server error, but turned out to be my .htaccess file and site5 found the error when I missed it.
June 10, 2011 at 4:57 pm #114284In reply to: Buddypress is Not my Buddy… :o(
jtcreate
MemberThanks, stwc. I’m actually on a dedicated server that I can fully control. Is there a key resource(s) I should look at that can be increased to better accommodate?
June 10, 2011 at 4:29 pm #114283In reply to: Progress bar plugin
Nahum
Participant@nlvp this is as far as I got…the goal number would have to be created manually instead of user being able to just enter it into a preset custom field. They’d have to make a custom field called Goal and enter the number.
`
<?php
$args = array_merge( $wp_query->query, array( ‘post_type’ => ‘post’, ‘post_author’ => $bp->displayed_user->id,
‘post_status’ => ‘draft, pending’, ‘order’ => ‘DESC’, ‘posts_per_page’ => 1 ) );query_posts($args);
?>-
/*This will show the current word count of the listed post */
post_content));?>/*This next piece is what I haven’t accomplished fully, it is supposed to show a custom field designated “goal” */
ID, “goal”, $single = true); ?>
`
place this in your member header. should work. maybe someone else can refine it for you and add that visual graphic progress bar. Also this is if your members are authors on the main site and that’s where the posts are.
June 10, 2011 at 2:59 pm #114278In reply to: Help with redirect for root profile change
Paul Wong-Gibbs
KeymasterAre you using BP_ENABLE_ROOT_PROFILES?
https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/
June 10, 2011 at 2:13 pm #114275alindgren
MemberI’d be interested if hearing if someone has figured out a way to use the Register Plus Redux plugin with BuddyPress…
June 10, 2011 at 11:48 am #114270In reply to: Filtering out Activity Stream stuff
justbishop
MemberNevermind, I think I found my answers

https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
June 10, 2011 at 8:17 am #114267@mercime
Participant`
//your div.madeUpDiv here
`
June 10, 2011 at 7:19 am #114265In reply to: [Resolved] Avatars Don’t Show – WP 3.1.3 + BP 1.2.8
@mercime
ParticipantNot clear whether you answered DJPaul – Did you look inside your wp-content/uploads/ folder to see if the images are being saved?
Deactivate all plugins except BuddyPress and change to bp-default theme, clear cache. Check if avatars show up in front end. If not, upload avatar and see if it was properly uploaded in server –> wp-content/uploads/
June 10, 2011 at 2:36 am #114259In reply to: Buddypress pages mess up my theme
@mercime
ParticipantSo I see you installed the BP Template Pack plugin.
You still need to go through the compatibility process as seen here https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
An example of how this is done https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/
-
-
AuthorSearch Results