Search Results for 'buddypress'
-
AuthorSearch Results
-
September 22, 2011 at 7:24 pm #120677
In reply to: Previous version?
Boone Gorges
KeymasterYou can download previous versions of BuddyPress from https://wordpress.org/extend/plugins/buddypress/download/
September 22, 2011 at 7:23 pm #120676In reply to: buddypress 1.5 won’t activate?
Boone Gorges
KeymasterVery strange. Can you check your file permissions, to make sure that the web server can read the contents of bp-core?
September 22, 2011 at 7:11 pm #120675In reply to: Frisco Child Theme
angslycke
Participant@davidtcarson Sounds great! Will wait for the version in the repository then. I think your theme will become really popular since there’s a huge lack of good looking themes and since it’s a child theme to the original theme and thus easier to update. Thanks again for all your work and count on me to help spread the word!
September 22, 2011 at 7:05 pm #120674In reply to: “My topics” link in support does not work
r-a-y
KeymasterThanks for the report.
I’ve filed a ticket about this:
https://buddypress.trac.wordpress.org/ticket/3604#comment:2September 22, 2011 at 6:59 pm #120673In reply to: Changing Groups URL Slug
alanchrishughes
ParticipantIs unhooking a difficult task?
@DJPaul did you know of a better way to do this? You had replied to me a while back on the blog post for beta 1 that it shouldn’t be too hard.
September 22, 2011 at 6:48 pm #120671In reply to: importing users from 1.2.10 to 1.5
r-a-y
KeymasterUsers are the same even when you upgrade from 1.2.x to 1.5.
If you’re talking about an import users option for BuddyPress (not WordPress), that’s different. A plugin like that could be developed, but as far as I know, nothing freely exists at the moment. I could be wrong though.
September 22, 2011 at 6:47 pm #120670In reply to: Poll (User’s Results)
islandcastaway
ParticipantHello,
This really isn’t a BuddyPress thing.Check out https://wordpress.org/extend/plugins/polldaddy/
Polldaddy is an Automattic ruckus http://polldaddy.com/
September 22, 2011 at 6:41 pm #120668In reply to: member profile settings 404 error
r-a-y
KeymasterSeptember 22, 2011 at 6:26 pm #120667In reply to: BP_DEFAULT_COMPONENT usage
islandcastaway
ParticipantNo, that is where i started.
I added:
define( ‘BP_DEFAULT_COMPONENT’, ‘sites’ );to bp-custom and now it does.
so the page https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/ is incorrect.
I currently have:
define( ‘BP_MEMBERS_SLUG’, ‘clients’ );
define ( ‘BP_BLOGS_SLUG’, ‘sites’ );
define( ‘BP_DEFAULT_COMPONENT’, ‘sites’ );//define ( ‘BP_IGNORE_DEPRECATED’, true );
//define ( ‘BP_ENABLE_MULTIBLOG’, true );//define( ‘BP_DTHEME_DISABLE_CUSTOM_HEADER’, true );
define( ‘BP_SILENCE_THEME_NOTICE’, true );
//define( ‘BP_ENABLE_USERNAME_COMPATIBILITY_MODE’, true );
define ( ‘BP_DISABLE_ADMIN_BAR’, true );in wp-config. all seem to work accept the default profile page.
September 22, 2011 at 6:25 pm #120666In reply to: Changing Group tab display defaults
Andrew Tegenkamp
Participantok, let’s give this code a shot. I just tried it on a local dev and it worked well.
Code:function redirect_group_home() {
global $bp;
$path = clean_url( $_SERVER[‘REQUEST_URI’] );
$path = apply_filters( ‘bp_uri’, $path );
if (bp_is_group_home() && strpos( $path, $bp->bp_options_nav[‘groups’][‘home’][‘slug’] ) === false ) {
/*
echo "HERE WE GO…";
echo "<PRE>"; print_r($bp->groups->current_group); echo "</PRE>";
echo $bp->groups->current_group->status;
echo $bp->groups->current_group->is_user_member;
*/
if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == ‘public’) {
//echo "<PRE>"; print_r($bp->bp_options_nav); echo "</pre>";
//exit();
if ($bp->bp_options_nav[‘groups’][‘announcements’][‘slug’]) {
bp_core_redirect( $path . $bp->bp_options_nav[‘groups’][‘announcements’][‘slug’] . ‘/’ );
} else {
bp_core_redirect( $path . $bp->bp_options_nav[‘groups’][‘forum’][‘slug’] . ‘/’ );
}
//bp_core_redirect( $path . ‘welcome/’ ); //quick hack for some other tab
}
}
}
function move_group_activity_tab() {
global $bp;
if ($bp->groups->current_group->is_user_member || $bp->groups->current_group->status == ‘public’) {
$bp->bp_options_nav[‘groups’][‘home’][‘position’] = ’98’;
$bp->bp_options_nav[‘groups’][‘admin’][‘position’] = ’99’;
$bp->bp_options_nav[‘groups’][‘home’][‘name’] = ‘Activity Log’;
}
}
add_action(‘wp’, ‘redirect_group_home’ );
add_action(‘bp_init’, ‘move_group_activity_tab’);If that does not work for you can you kinda enable debug and comment out the /* and the //echo lines and see if you get anything different?
On a side note, I noticed you called them forums. Did you know that bbPress is now a plugin at https://wordpress.org/extend/plugins/bbpress/ if you don’t want all the BuddyPress features and just the forum itself? Just an FYI in case that serves ya better. Check out https://bbpress.org/blog/ for more as it’s new as of yesterday as an official release.
September 22, 2011 at 6:18 pm #120665In reply to: Blogs & Sites
r-a-y
KeymasterYou need to create a WordPress network first before you can use BuddyPress’ blog tracking functionality.
Have you read this article?
https://codex.wordpress.org/Create_A_NetworkSeptember 22, 2011 at 6:02 pm #120661In reply to: BP_DEFAULT_COMPONENT usage
r-a-y
KeymasterBuddyPress 1.5 created pages for your directory pages.
In the WP dashboard, navigate to “Pages”, and try and find a page that says “Sites” or “Blogs” or whatever your blog directory is called. Rename the page slug to ‘sites’.
Then in your bp-custom.php file, use:
`define( “BP_BLOGS_SLUG”, “sites” );
define( “BP_DEFAULT_COMPONENT”, “sites” );`September 22, 2011 at 5:55 pm #120660In reply to: 404 Not Found for all pages!
r-a-y
KeymasterAfter you’ve installed BuddyPress, what happens when you switch to the bp-default theme?
In the WP dashboard, navigate to “Appearance > Themes” after you have installed BuddyPress and select “BuddyPress Default 1.5”Do not activate BP Template Pack yet. What happens?
Does BuddyPress function on the site?
September 22, 2011 at 5:45 pm #120658In reply to: Settings link a blank page
r-a-y
KeymasterSeptember 22, 2011 at 5:42 pm #120657In reply to: 1.5 Group Avatars using Mystery Man Default?
r-a-y
KeymasterYou can throw in the following code in your /wp-content/plugins/bp-custom.php file:
`function my_group_avatar_default() {
global $bp;
// change ‘identicon’ to anything listed here:
// http://en.gravatar.com/site/implement/images/#default-image
$bp->grav_default->group = ‘identicon’;
}
add_action( ‘bp_init’, ‘my_group_avatar_default’ );`September 22, 2011 at 5:31 pm #120656In reply to: buddypress 1.5 issues.
Boone Gorges
KeymasterVery strange. Is *any* of the javascript on your BP 1.5 installation working? Places to check: requesting friendships/group memberships from directories; replying to private messages; the “read more” link that appears when you have a very long forum post.
September 22, 2011 at 4:37 pm #120647In reply to: buddypress 1.5 issues.
sheffieldlad
MemberHi Boone,
Global.js is being loaded.
When I open Firebug I get no errors when I try clicking on things.
Javascript is enabled in my browser.BP 1.2.10 works fine, as does this site. (I’m speculating that this is a 1.5 install of bp?) So I’m unsure as to whether the problem lies in my browsers but having said that, no-one else seems to be reporting the issue so who knows?
Is there a way to reinstall the interpreter in my browser/on my PC?
(I’m guessing that Javascript is interpreted).
I can give you access to my site but there doesn’t seem much point seeing as I’ve gone back to 1.2.10.
Thanks,
Paul.
September 22, 2011 at 4:23 pm #120646In reply to: buddypress 1.5 issues.
Boone Gorges
KeymasterIt’s difficult to troubleshoot any issues without access to your site. Things to check:
– is global.js being loaded in your document’s head?
– when you open a javascript console (like in Firebug), do you get any errors when you try clicking on things?
– is Javascript enabled in your browser?September 22, 2011 at 4:23 pm #120645In reply to: BP 1.5 & bbpress 2 (site wide) slugs
DarrenMooney
Participant@boonebgorges Thanks for the info.
@derekbolden I know that the integration of bbp and bp isn’t 100%, but I’m sure stuff like that will be sorted in new updates.
September 22, 2011 at 4:01 pm #120644In reply to: BP 1.5 & bbpress 2 (site wide) slugs
Derek
Participant@DarrenMooney
Thanks for your post! I was really getting frustrated with the forums setup, but your post helped. Now my only concern is the forum posts etc. showing up in my activity stream. Right now they aren’t. Is anyone else experiencing this and is there a work around?September 22, 2011 at 3:58 pm #120643In reply to: 1.5 Group Avatars using Mystery Man Default?
sheffieldlad
MemberIn my version 1.2.10 it’s under general settings for buddypress.
my 1.5 installation fell over so I’m not sure where it is in 1.5 but if I can get 1.5 up and running I’ll re post and tell you the location.I had Identicon avatars running on 1.5 so I know there is a setting, I just can’t remember where it is in 1.5
September 22, 2011 at 3:58 pm #120642In reply to: 1.5 Group Avatars using Mystery Man Default?
sheffieldlad
MemberIn my version 1.2.10 it’s under general settings for buddypress.
my 1.5 installation fell over so I’m not sure where it is in 1.5 but if I can get 1.5 up and running I’ll re post and tell you the location.I had Identicon avatars running on 1.5 so I know there is a setting, I just can’t remember where it is in 1.5
September 22, 2011 at 3:48 pm #120639In reply to: buddypress 1.5 issues.
sheffieldlad
MemberHi Boone, thanks for the reply.
I’ve tried with 2 different FF profiles (latest version) and google chrome, all running on the same computer.
I don’t have another computer to try it on.I rolled back to bp 1.2.10 (fresh install).
Everything worked fine in 1.2.5 but the automated install to 1.5 failed so I started again from scratch.
How would I go about fixing my javasscript issues if it turns out to be that?I’m willing to reinstall bp 1.5 and try it again if I can get it to work.
Many thanks,
Paul.
September 22, 2011 at 3:42 pm #120635In reply to: Needed BUDDYPRESS 1.3 zip file. URGENT
manureloaded
MemberThanky you Boone Gorges
September 22, 2011 at 3:41 pm #120634In reply to: buddypress 1.5 issues.
Boone Gorges
KeymasterIt sounds like BuddyPress’s javascript is not loading properly in your browser. Do you have javascript enabled? Can you give more details on the browser you are using? Can you try with another browser or from another computer?
-
AuthorSearch Results