Search Results for 'buddypress'
-
AuthorSearch Results
-
July 7, 2010 at 7:21 pm #84654
@mercime
Participant@rogercoathup I just checked their forums some weeks ago or so to look over simplepress as an alternative and found this post. I have not tested this as I opted to go with global forums. Other BP related topics in their forums as well.
July 7, 2010 at 7:13 pm #84652In reply to: User lost activation email
Philo Hagen
ParticipantThat is, of course, an option, but I’m moving a community over from a site that was in Movable Type and Elgg into a new WordPress / Buddypress system and users are obviously attached to having the same username they had before and that people already know them by.
July 7, 2010 at 7:05 pm #84649In reply to: Avatars aren’t shown after the upgrade
bennadler
MemberSorry, that is what I meant. I am using WordPress 3.0 with multisite activated. That is the exact code. I am running WordPress 3.0 and Buddypress 1.2.5. I have this code installed in my bp-custom.php file and it activates the avatars across the whole domain. Are you absolutely sure you have this all in the right place? Did you put wrapped around the code I provided?
July 7, 2010 at 6:55 pm #84647In reply to: how to disable blog tab from menu
@mercime
ParticipantSure, if you are not going to give free blogs/subblogs to members then just disable Blog Tracking component via Dashboard > BuddyPress > Component
July 7, 2010 at 6:48 pm #84646In reply to: Filtering out Activity Stream stuff
rich! @ etiviti
Participant@lincme – create a new topic in that plugin group with the error message and steps taken? (and if you had any certain types blocked prior) – i’m unable to reproduce with a type of ( created_group or nothing)
the only thing i see at the last step in the group steps is recording the activity, prior to redirect to the group homepage.
July 7, 2010 at 6:32 pm #84639Jeff Sayre
ParticipantI’m sorry that you are still having issues with deep integration of bbPress with WordPress. Many sites have an integrated bbPress install. In fact, @r-a-y has helped you extensively with the issue of bbPress integration into WordPress, pointing to many resources to help you accomplish that goal. If you are having trouble successfully performing a deep integration of bbPress with WordPress, then you should post on the bbPress or WP forums or ask for help on one of the blog articles to which Ray pointed you. (Have you searched for articles on bbPress and WordPress deep integration?)
By the way, with the exception of using bbPress for group forums within BuddyPress, bbPress and BuddyPress will never integrate site wide as BuddyPress is a plugin that sits on top of WordPress. What you are really talking about is integration of WP’s user tables with bbP’s user tables, so that they share their user data. BuddyPress does not store login information. BuddyPress does not authenticate users. Those functions are performed by WordPress. This site’s forums (BP.org) used to have an integrated bbPress install with WP. The forums were simply skinned to look like they were BuddyPress themed. But, they were a separate theme controlled by bbPress.
Let’s get this thread back on topic. I ask that you please refrain from taking this thread off topic anymore as it is impolite to the OP.
July 7, 2010 at 6:00 pm #84635In reply to: Facestream (Facebook plugin)
Pisanojm
ParticipantI’ve completely turned this plugin off… @blackphantom said there was a new update for this coming out this week or next in another post I’ve read somewhere on BP.
July 7, 2010 at 5:52 pm #84633alanchrishughes
ParticipantbbPress won’t integrate with Buddypress either.
July 7, 2010 at 5:41 pm #84632In reply to: Filtering out Activity Stream stuff
lincme.co.uk
Member@nuprn1; Yep, that works, and saves a little db space too. However, I discovered today that your Block Activity plugin causes Group creation to fail at the final stage, though as I said in a note to you, it could be a theme clash for all I know.
I think it’s useful to have the details still in the db, and so do friends. Enabling the is_admin() part then allows us to see all activity. It’d be nicer wrapped in a plugin with Admin string adding, and I may recode your other if and when I have some time. During a long, dark winter night, probably. Anyway, useful code, and thanks again.
July 7, 2010 at 5:20 pm #84631In reply to: Filtering out Activity Stream stuff
rich! @ etiviti
Participantif a site owner does not care about certain activity items at all – block em:
https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/July 7, 2010 at 5:18 pm #84630In reply to: Users can’t register through BuddyPress home page
Mark
Participantanyone?
July 7, 2010 at 5:08 pm #84629In reply to: Fishbook Help
techguy
ParticipantYou’ll have to modify the header.gif file for the logo.
For the menu items, you’ll have to pull the header.php from the parent BP theme (buddypressbp-themesbp-defaultheader.php) and add it to the Fishbook theme folder. Then, you can modify it however you want.
July 7, 2010 at 4:32 pm #84627rich! @ etiviti
Participantcorrect trac ticket (one listed above was for activity time_since)
https://trac.buddypress.org/ticket/2504July 7, 2010 at 4:30 pm #84626In reply to: Remove the ‘view’ button in the activity stream
lincme.co.uk
Member@rogercoathup; Yep, I hacked the core previously due to lack of time to recode things, but upgraded to the latest BP today and found a number of issues (for me) were fixed. So only one small core hack now. Our site is fine with the ·s in the strings, which you can see at http://lincme.co.uk/community if you’re curious.
On a (kind of) similar note, I think the functions.php idea works well, with filters, etc. We wanted the last logged-in time shown only to logged-in members, and this seems to have done the trick fine (one for activity streams, one for the profile page);
function hide_activity($content) {
if ( !is_user_logged_in() ) {
$content=’Please log-in to view last visit time.’;
}
return $content;
}
add_filter(‘bp_member_last_active’, ‘hide_activity’, $last_activity);
add_filter(‘bp_last_activity’, ‘hide_activity’, $last_activity);July 7, 2010 at 4:12 pm #84623In reply to: Remove the ‘view’ button in the activity stream
Roger Coathup
Participant@lincme – this thread mentions a filter for the view button in the profile area: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/remove-permalink-view-link-from-profile-container-request/#post-57691
I haven’t investigated it yet.
July 7, 2010 at 4:07 pm #84621In reply to: Remove the ‘view’ button in the activity stream
Roger Coathup
ParticipantHi @lincme.co.uk; yes, that kind of puts a nice full stop on its display.
It doesn’t get rid of the problem of ‘dots’ being added on other elements you might want (like the delete option) though.
I’m solving it, by putting my own simple API calls in bp_custom.php (I guess they’d work in functions.php as well) to return the items I want from the activities_template uncorrupted:
my_activity_action(); returns just the action field without the meta stuff being forced in
my_activity_time(); so the time of the activity (rather than time since) can be displayed
has_delete_permissions(); used in conjunction with bp_get_activity_delete_link to just display the delete link if appropriateThen, modifying entry.php to call these functions instead.
An improved set of API functions would make theming a lot easier – would be good to know where the invite thread is.
July 7, 2010 at 4:00 pm #84619In reply to: Change avatar button on profile page
Stef
ParticipantOk.. this is what I got..

And it works..Only .. how can a set that link to the default button of buddypress.. Like the screenshot above?
July 7, 2010 at 3:44 pm #84617In reply to: Remove the ‘view’ button in the activity stream
lincme.co.uk
MemberHi @rogercoathup; I removed the View link from the activity stream by putting the following in the theme’s functions.php file;
add_filter(‘bp_activity_permalink’, create_function(‘$a’, “return null;”));
To remove it from the Profile page required a core hack, which I keep separate so I can restore/overwrite if need be. (I could be wrong about that, as I’m just getting into BP’s actions, filters, etc).
Since getting into BP a few weeks ago I’ve found a lot of things somewhat convoluted, but from reading around the forums here it seems the next version will have some restructuring, and easier theming. There’s a thread somewhere inviting people to test it.
July 7, 2010 at 3:10 pm #84615Mark
Participant@Pisanojm @paulhastings0 I’m getting the same thing. Wp 3.0 BP 1.2.5
July 7, 2010 at 2:32 pm #84610rossagrant
Participantphp echo sprintf( __( ‘%s said %s ago:’, ‘buddypress’ ), bp_get_the_topic_post_poster_name(), bp_get_the_topic_post_time_since() )
July 7, 2010 at 2:31 pm #84608rossagrant
Participant@nuprn1
Thanks Rich, I presume it’s this part of the topic.php file I need to change.Do you have any idea of what it should look like to just post the date and time?
July 7, 2010 at 1:48 pm #84601In reply to: Quote messages
rossagrant
ParticipantIs there a standalone ajax quote Rich or do I have to install the entire Forum Extras?
July 7, 2010 at 1:27 pm #84600In reply to: creating a widget – quick question.
nit3watch
Participant@boonebgorges maybe you could help me out here seeing as you wrote the plugin?
K so Ive made the necessary changes I need to boone’s enhanced widgets but I have a prob.The 1st widget ( newest ) renders correct but the others ( active and popular ) don’t, think its because they are all calling the same js from /bp-groups/js/widget-groups.js
How can I get arround this? Im working only with the groups widget, dont need to alter the members widget..This is how its rendering: http://tinypic.com/r/160xa1u/6
Here’s the code for the popular one: http://pastebin.com/gi20R7E7
July 7, 2010 at 1:11 pm #84598In reply to: lower case letter error messages
Mark
Participant@phylliskhare do you know what plugin? I’m having a problem where with my site where you cant register if you dont have all lower case letters and you can’t have any spaces. Which is rough since people can’t add their last name without a space. Please let me know thanks
July 7, 2010 at 12:48 pm #84594In reply to: Quote messages
rich! @ etiviti
Participantfor group forums? – group forum extras plugin which has an ajax quote feature (requires a theme modification so the reply box is on each page though)
-
AuthorSearch Results
