Search Results for 'buddypress'
-
AuthorSearch Results
-
February 17, 2010 at 1:30 am #63636
In reply to: Plugin Release: BuddyPress Group Wikis
D Cartwright
ParticipantBtw, this is another perfectly executed plugin release :p You’d have thought I would have learned from the group activity stream notifications plugin….
February 17, 2010 at 1:28 am #63635In reply to: Plugin Release: BuddyPress Group Wikis
D Cartwright
ParticipantImportant update:
I missed some folder name changes in a couple of the includes (damn wordpress repository and it’s fancy “being organised” behaviour!).
As such, please download the plugin again. Alternatively, you can edit bp-groupwiki-main.php and do a find+replace on the following:
FIND: ‘bp-groupwiki’
REPLACE: ‘buddypress-group-wiki’
This should solve the following errors you may have ran into:
1) No TinyMCE
2) No CSS for wiki page layout
3) Frontend page creation not working
Sorry for the hassle and thanks again to those that have provided feedback
February 17, 2010 at 1:26 am #63634In reply to: Characters in usernames cause strange issues
rich! @ etiviti
ParticipantI’m 85% certain this was all the changes I made to the core files
February 17, 2010 at 1:08 am #63631In reply to: 1.2 plug-ins list
stwc
ParticipantJust tried External Group Blogs on a localhost.localdomain XAMPP install (really need those RSS feeds before I make the jump to 1.2) and it failed when creating a group at the Add RSS feeds stage with the following errors
Warning: array_map() [function.array-map]: Argument #2 should be an array in
\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php on line 2454Warning: Cannot modify header information – headers already sent by (output started at
\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php:2454) in
\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php on line 1107Warning: Cannot modify header information – headers already sent by (output started at
\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php:2454) in
\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php on line 1108Warning: Cannot modify header information – headers already sent by (output started at
\xampp\htdocs\community\wp-content\plugins\buddypress\bp-groups.php:2454) in
\xampp\htdocs\community\wp-includes\pluggable.php on line 868February 17, 2010 at 12:50 am #63630In reply to: Extending BuddyPress with HTML5
Anonymous User 96400
Inactiveyep, 10% IE6 is about all I’m getting on all my personal sites, so I stopped going out of the way to cater for it. so, time to start pushing the envelope a little bit maybe? as of yet, i’m still undecided, so for now i’ll stay put…
February 17, 2010 at 12:44 am #63629In reply to: Facebook-Like-Chat Plugin for Buddypress?
r-a-y
KeymasterThat’s right, Mike.
David Aubin’s port of BlueImp’s AJAX Chat to BP has group functionality:
https://wordpress.org/extend/plugins/buddypress-ajax-chat/
The original chat interface isn’t polished enough though and the actual port by Dave has its bugs.
I currently have a v1.2 “re-port” of BlueImp’s AJAX Chat working on my test server. It functions well, but outputs quite a few warnings and notices in the server log! If I can get it to a stable state without the warnings, I might release it.
—
If there’s a better, open-source chat plugin that supports multiple rooms, that would be another option!
February 17, 2010 at 12:27 am #63627In reply to: BuddyPress Geo plugin
Unsal Korkmaz
Participantis BP Member Map working with 1.2?
February 16, 2010 at 11:56 pm #63622In reply to: Extending BuddyPress with HTML5
Mike Pratt
Participant@Xevo IE6 is only used by 10% of folks http://www.w3schools.com/browsers/browsers_stats.asp
I can’t stand any version of IE myself
February 16, 2010 at 11:54 pm #63621In reply to: Facebook-Like-Chat Plugin for Buddypress?
Mike Pratt
Participant@r-a-y So are you talking about Group chats avail to anyone who is a member of the group..as opposed to just your “friends” ?
Agree that Arrowchat looks more promising than Bowob. #fail if they keep my data
February 16, 2010 at 11:48 pm #63620In reply to: Buddypress 1.2 Registration page not loading
myislamicblog
ParticipantProblem Solved, the problem was comming from old buddypress theme compatibility and some custom changes.
Thanks anyways.
February 16, 2010 at 11:39 pm #63619In reply to: Default theme with widgetized home page
modemlooper
Moderatorwp-content/themes/bp-widget
Theme needs to be activated as the site theme. Its basically the same theme as the default with a new functions file and page template for the home page. It’s better this way so the buddypress upgrades will never be affected.
February 16, 2010 at 11:09 pm #63614In reply to: 1.2 plug-ins list
Peter Anselmo
ParticipantGroup Documents – Huzzah!
https://wordpress.org/extend/plugins/buddypress-group-documents/
Although, this thread seems a little redundant – isn’t this the purpose of the “compatible up to” field? Maybe what we really need is for the WP plugins search to have a version filter.
February 16, 2010 at 10:47 pm #63613In reply to: BuddyPress Links 0.3-beta released for testing
MrMaz
ParticipantYeah, its confusing how the dev version link is all the way at the bottom!
I have all of the bookmarklet code from a previous project, I just have to implement it at some point. Btw, PM me with details of your oEmbed plugin so we don’t have any conflicts fighting over URLs in the activity stream. I am working on integration right now.
@etiviti
Glad to hear its working well for you! Be sure to post any bugs
I just committed code that enables a very basic widget that is similar to the groups widget. The old widget is on the back burner until some themes come out with larger widget areas that can accommodate it’s width.
February 16, 2010 at 10:29 pm #63611In reply to: books – getting started
Andrea Rennick
ParticipantBuddyPress for Dummies is out or almost out. Also the WordPress Bible, Digging into WordPress and WordPress for Dummies.
February 16, 2010 at 10:06 pm #63608Brajesh Singh
Participanthi David
As I mentioned above, it is nothing but a hack of the bp_get_page_title, here is adaption you can use
add_filter("bp_page_title", "bpdev_blog_title",10,2);
function bpdev_blog_title($complete_title,$title_old){
global $bp,$current_blog,$wp_query,$post;
if ( bp_is_blog_page() ) {//if this is blog page
if ( is_single() ) {
$title = __($post->post_title, 'buddypress' );
} else if ( is_category() ) {
$title = __( 'Categories | ' . ucwords( $wp_query->query_vars['category_name'] ), 'buddypress' );
} else if ( is_tag() ) {
$title = __( 'Tags | ' . ucwords( $wp_query->query_vars['tag'] ), 'buddypress' );
} else if ( is_page() ){
$title = $post->post_title;
}
if ( defined( 'BP_ENABLE_MULTIBLOG' ) ) {
$blog_title = get_blog_option( $current_blog->blog_id, 'blogname' );
} else {
$blog_title = get_blog_option( BP_ROOT_BLOG, 'blogname' );
}
if(!empty($title))
return $blog_title . ' | ' . esc_attr( $title );
}
//so on blog home page, It will show Blog,reason we have excluded that page
return $complete_title;
}Hope, It should help you, you can modify the various titles as you wish for the category/tags etc.
February 16, 2010 at 10:00 pm #63607r-a-y
Keymasterhttps://buddypress.org/forums/topic/activity-stream-as-homepage-no-blog-tab-rc2#post-36252
I’m going to add this to the FAQ thread, since a lot of people have been asking the same question!
February 16, 2010 at 9:52 pm #63605In reply to: BuddyPress Links 0.3-beta released for testing
rich! @ etiviti
ParticipantThis is the development version zip. It will always contain the latest trunk. Normally this is not recommended, but you guys seem to really want to play with it so ymmv.
feeling frisky… just installed and everything looks ok so far on single WP.
such a great plug-in!
February 16, 2010 at 9:48 pm #63603In reply to: BuddyPress Links 0.3-beta released for testing
r-a-y
KeymasterI think MrMaz previously stated he was working on a bookmarklet for BP Links, but that was during the BP 1.1 days.
Not sure where the status of this is currently.
I’m going to play around with BP Links when the stable version is released!
February 16, 2010 at 9:46 pm #63602In reply to: external-group-blogs & group-twitter doesn't work
Mark
ParticipantI’m getting the following when adding a new external feed in BP 1.2. Also, an extra slash is added to the External Blogs Admin URL (between the group name and admin). Anyone else?
http://anysite.org/groups/ltta-transition//admin/external-blog-feeds
Warning: array_map() [function.array-map]: Argument #2 should be an array in …/plugins/buddypress/bp-groups.php on line 2454
February 16, 2010 at 9:38 pm #63600In reply to: books – getting started
Peter Anselmo
ParticipantCan’t speak for everyone, but If you’re interested in developing plugins, I would suggest diving into PHP first. There’s plenty of good PHP books out there; personally, I’d recommend books published by O’Reilley.
Then, in lieu of the existence of good buddypress-specific books, you can learn a lot by looking at existing plugins and the codex.
February 16, 2010 at 9:35 pm #63599In reply to: BuddyPress Links 0.3-beta released for testing
modemlooper
ModeratorGot it!… stupid eager beaver I am. Just thought of something. This would be a killer feature if you could do a browser type thing like the admin press-it. So when you are on youtube you hit the bookmark and it pops an input box.
February 16, 2010 at 9:27 pm #63598In reply to: how to query the categories of posts?
Paul Wong-Gibbs
KeymasterAnd this is nothing to do with BuddyPress.
February 16, 2010 at 9:22 pm #63596In reply to: BuddyPress Links 0.3-beta released for testing
MrMaz
ParticipantThis is the development version zip. It will always contain the latest trunk. Normally this is not recommended, but you guys seem to really want to play with it so ymmv.
February 16, 2010 at 9:21 pm #63593In reply to: BuddyPress Links 0.3-beta released for testing
modemlooper
ModeratorI went to the link above and downloaded the latest. Is that not the right place to download?
EDIT duh stupid me i didnt realize the text development version was the one to download LOL!
February 16, 2010 at 9:13 pm #63591In reply to: BuddyPress Links 0.3-beta released for testing
bennyticklez
Member@MrMaz yes. i select “humor” and input a url. That’s when the error happens.
-
AuthorSearch Results