Search Results for 'buddypress'
-
AuthorSearch Results
-
September 22, 2010 at 8:47 am #93080
In reply to: 404 error after installing BP
Hugo Ashmore
Participant@jimboba My apologies, no you didn’t incur my wrath and weren’t dismissed, sometimes it’s easy to lose track of threads
Using the @mention system does help to ensure we see things flagged to our username.
At times it does become very difficult to help further, especially remotely where we can only ask questions and are divorced from the actual events, normally I have access to all the files such as access/error logs, DB etc so I can effectively troubleshoot issues.
Something else to check might be the settings for wordpress url and site url ; wordpress url should reflect the url path to your sub folder installation?
September 22, 2010 at 8:20 am #93074In reply to: How do you add/invite a friend?
Hugo Ashmore
Participant@pelleas You must start your own thread for your issues please you have posted to two diffrent and old threads that appear to relate to your issue
Seldom do other threads relate exactly to your own issue, and responding to two different posters in one thread is a recipe for confusion and considered bad practice. I also believe you responded to Boone’s question above via a update which further disjoints things as we could be staring at this thread awaiting a response not aware you have actually responded.
For now I suggest continuing in this thread, but for future issues please start a new topic.
A further question: Are you using a custom theme? If you are can you revert to the BP default theme and also disable any third party plugins that are not absolutely necessary for the operation of BP (basically that means any plugins other than BP itself) and then check again whether you see ‘Add Friends’ buttons on members directory listing or profile pages.
September 22, 2010 at 6:34 am #93072In reply to: Migrate from Mingle to Buddypress
marc
ParticipantI’m not worried about friends lists, i’m concerned about the user lists, their profile information, and their avatar.
As far as I can tell, Mingle is a straight out of the box social plug in. You just install and activate it, it does the rest.
September 22, 2010 at 5:53 am #93071In reply to: Migrate from Mingle to Buddypress
paulhastings0
ParticipantWhile I don’t have personal experience with Mingle, it makes sense that you should at least be able to migrate the userbase over. As for Private Messages, Friendships, etc. that sounds more like a job for a plugin.
Make sure though that before you do anything that you create a backup.
September 22, 2010 at 1:31 am #93066In reply to: 404 error after installing BP
@mercime
ParticipantRe: “incurred hnla’s dismissal?”
Do not take things personally. @hnla has assisted hundreds of users in this forum and some questions were out of this world compared to your questions.Re: “Page Not Found” errors
– Change Settings > Permalinks to other than default.
– Activate bp-default theme to check links to BP components. When that works, insatll/create child theme of bp-default theme OR use the BP Template Pack if you want to use WP theme.September 21, 2010 at 11:34 pm #93060In reply to: wordpress3.01???mu ,??buddypress???
@mercime
ParticipantSeptember 21, 2010 at 11:25 pm #93059rickkumar
Participant@DJPaul Thanks for your response. I am not a programmer so

Folks at WPMU Dev suggested trying this pluggin by JohnJamesJacoby to see if it works:
WP Multi Network
https://wordpress.org/extend/plugins/wp-multi-network/
Adds a Network Management UI for super admins in a WordPress Multisite environment.
Turn your multi-site installation of WordPress into many multi-site networks, all surrounding one central user base.WP Multi Network allows cape wearing super admins to create new network collections of sites, allowing for infinitely extensible site, network, and domain arrangements.
@johnjamesjacoby Please advise if I can use this pluggin for my purpose as I explained in the original post above.
Thanks you very much.
September 21, 2010 at 9:23 pm #93057In reply to: BuddyPress Competition is heating up
Roger Coathup
Participant@intimez – I’m with you that competition is a very healthy thing, and perhaps also the kick that Automattic appear to need
September 21, 2010 at 9:21 pm #93056In reply to: Capital letters in Usernames
techguy
Participant@Tolden and @stephenefromfrance
Your functions.php file should contain the folowing:
`<?php
//Deals with uppercase username signup problems…maybe
function my_sanitize_user( $username, $raw_username, $strict ) {
$username = $raw_username;
$username = wp_strip_all_tags( $username );
$username = remove_accents( $username );
// Kill octets
$username = preg_replace( ‘|%([a-fA-F0-9][a-fA-F0-9])|’, ”, $username );
$username = preg_replace( ‘/&.+?;/’, ”, $username ); // Kill entities// If strict, reduce to ASCII for max portability.
if ( $strict )
$username = preg_replace( ‘|[^a-z0-9 _.-@]|i’, ”, $username );// Consolidate contiguous whitespace
$username = preg_replace( ‘|s+|’, ‘ ‘, $username );return $username;
}
add_filter( ‘sanitize_user’, ‘my_sanitize_user’, 100, 3 );?>`
At least that’s what mine has and it works fine.
I’m also using this plugin to notify users if this would be a problem for them also: http://buddydev.com/buddypress/creating-a-buddypress-wordpress-username-availability-checker-for-your-site/ Although, I think I modified the script so it would only warn for certain use cases. I also did just realize that it doesn’t work for IE. Haven’t had a chance to see why yet. So, it’s good that I have both.
September 21, 2010 at 8:47 pm #93053In reply to: How do you add/invite a friend?
Boone Gorges
Keymaster@pelleas Do you have the Friends component turned on? Dashboard > BuddyPress > Component Setup
September 21, 2010 at 8:22 pm #93049In reply to: BuddyPress Competition is heating up
intimez
ParticipantLots of features ready that bp still waiting for. Sorry but pay $99 and you’re still required to link back???? How about jomsocial pay me for the footer ad space?
1.2.6 should already be released. stop with all the last minute additions. SIGH
September 21, 2010 at 7:23 pm #93047omosha
ParticipantI’ve got an updated idea of what may be happening if someone could direct me further.
O.K. when I use the buddypress admin bar up top to log-in or out, it takes me to http://integralbeings.com/community/wp-login.php? Which is incorrect. I think that this may be one of the main problems with Buddypress redirecting MU when new blogs attempt to register. It should go to http://integralbeings.com/wp-login.php?
I’ve added:
RedirectMatch 301 ^/members/(.*)$ http://integralbeings.com/community/members/$1
RedirectMatch 301 ^/groups/(.*)$ http://integralbeings.com/community/groups/$1
RedirectMatch 301 ^/blogs/(.*)$ http://integralbeings.com/community/blogs/$1
RedirectMatch 301 ^/forums/(.*)$ http://integralbeings.com/community/forums/$1
RedirectMatch 301 ^/activity/(.*)$ http://integralbeings.com/community/activity/$1to the htaccess file in order to redirect Buddypress to the secondary blog. Could this be the problem? Any thoughts to help me figure out this logic problem?
Cheers,
-BrantSeptember 21, 2010 at 6:44 pm #93046In reply to: BuddyPress Template Pack
modemlooper
ModeratorToo get rid of theme notice, where is says this in style.css
Theme Name: Imbalance
Theme URI: http://www.wpshower.com
Version: 1.18
Description: Designed by WPSHOWER
Author: WPSHOWER
Author URI: http://www.wpshower.comadd this right below Author
Tags: buddypressSeptember 21, 2010 at 5:39 pm #93043In reply to: BuddyPress Template Pack
pmoi
ParticipantHey, I’ve just installed BuddyPress and BuddyPress Template Pack on the “Imbalance” theme http://wpshower.com/free-wordpress-themes/imbalance-free-wordpress-theme/ It said the install was successful whilst I was setting it up but still displays “BuddyPress is ready. You’ll need to activate a BuddyPress compatible theme to take advantage of all of the features. We’ve bundled a default theme, but you can always install some other compatible themes or upgrade your existing WordPress theme.”
The main issue is that after I’ve installed the template package no options are appearing to create a forum or group, the only options coming up in the Buddypress dropdown in the dashboard are; General Settings, Component Setup, Forums Setup, Profile Field Setup and I can’t do anything with any of them except Profile Field. I’m thinking it might be because I don’t know if my ” bbPress tables are in the same database as my WordPress tables”, I don’t seem to be able to work it out.
Really really need help with this, hope someone can!
Thanks
September 21, 2010 at 5:09 pm #93042youngmicroserf
ParticipantI’m bumping this because the @-mention above didn’t work, apparently.
for some reason, your suggested solution doesn’t work. I suppose it has to do with the hook, but using bp_core_remove_nav_item(‘groups’) doesn’t work at ‘bp_setup_nav’, while it does work at the point @mariochampion suggested.
Here’s a problem, though, in my installation, when I remove the nav link, I am no longer able to access group pages. I can access the group directory and groups will be displayed there, but clicking on a group will take me to the front page. Is this a bug? It seems like it, since the function is supposed to only remove the navigation item, not access to the feature, am I right? Or am I not getting something? Is there a better way to remove the navigation item?
September 21, 2010 at 4:16 pm #93038In reply to: Capital letters in Usernames
September 21, 2010 at 4:14 pm #93037In reply to: BuddyPress Competition is heating up
modemlooper
ModeratorI used jomsocial ONCE.
September 21, 2010 at 4:02 pm #93036In reply to: Using Buddypress and Thesis 1.5.1
Roger Coathup
Participant@nunomad – as far I’m aware, that wouldn’t be a problem – the sign in and membership would still be unified across both primary and secondary sites.
Perhaps someone with a little more insight re: s2Member could comment on that?
September 21, 2010 at 3:25 pm #93033In reply to: 'Make Friends' Button does not appear
pelleas
MemberI installed BuddyPress with Word Press 3.0.1. The two buttons (Add Friend/Send Message) have never appeared. Not easy to build a community.
September 21, 2010 at 3:14 pm #93032@mercime
Participant@Tolden Do post in the plugin’s forums
https://buddypress.org/community/groups/buddypress-private-community/forum/September 21, 2010 at 3:11 pm #93030In reply to: Capital letters in Usernames
Tolden
Member@techguy: Thanks for your link. I first tried the entry “preg_match( “/[a-zA-Z0-9]+/”, $user_name, $maybe );” in the file bp-core-signup.php, but it did not work. Then I opened the file functions.php! The content of the file was only:
So I tried to delete this and replace with code of r-a-y, but the effect was that the code was shown over the header graphic. Then I tried to enter the code before the closing “?>”, but I get the same message, that only lowercase letters are allowed. I am using the plugin “bp-xtra-signup”. Is that plugin the problem or am I doing something wrong?September 21, 2010 at 2:57 pm #93029In reply to: [Buddypress] Show an image on the Frontpage
Tolden
Member@paulhastings0: Thank you very much for your reply. It works very fine…
September 21, 2010 at 2:49 pm #93027In reply to: Displaying Categories in Groups
phos flip
ParticipantDon’t know if this is any use to anyone and no doubt there are far better ways of doing it but just in case it is of use….
I’ve created (hacked really) a plugin made up of 3 files, one of which is useless for now but at a future point I’d like to play around with it.
bp-group-catdisp.php
`<?php
/*
Plugin Name: Display Categories
Plugin URI:
Description: Displays a blog category in groups
Author: Mas
Version: 0.1
License: GNU General Public License 2.0 (GPL) http://www.gnu.org/licenses/gpl.html
Site Wide Only: true
*/
if ( !defined( ‘BP_GROUP_CATDISP’ ) )
define ( ‘BP_GROUP_CATDISP’, ‘programme’ );function bp_group_catdisp_init() {
bp_group_catdisp_wrapper();
}if ( defined( ‘BP_VERSION’ ) )
bp_group_catdisp_wrapper();
else
add_action( ‘bp_init’, ‘bp_group_catdisp_init’ );
//above links to admin screen in backend
require(dirname(__FILE__) . “/bp-group-catdisp-admin.php”);// group options
function bp_group_catdisp_wrapper() {
class bp_group_catdisp extends BP_Group_Extension {
var $visibility = ‘private’;var $enable_create_step = false;
var $enable_edit_item = false;
var $has_caps = false;function bp_group_catdisp () {
global $groups_template;// group title
$this->name = __( ‘Programme’, ‘programe’ );
$this->slug = BP_GROUP_CATDISP;
$this->nav_item_position = 12;
$this->create_step_position = 12;// group ID for displaying category within
global $bp;$group_array = array( 17,11 );
if ( in_array( $bp->groups->current_group->id, $group_array) )
//group ID to display in array. Note can reverse this code ie. set it not to display in listed groups by placing !in_array( $bp etc.{
$this->enable_nav_item = true;
} else {
$this->enable_nav_item = false;
}}
function display () {
global $bp, $groups_template;include(“bp-group-catdisp-edit.php”);
//bit above links to file that prints to tab
}
}
bp_register_group_extension( ‘bp_group_catdisp’ );
}?>
`bp-group-catdisp-edit.php
`
<a href="” rel=”bookmark” title=”Permanent Link to “>
Sorry, no posts matched your criteria.
`
bp-group-catdisp-admin.php
`<?php
function group_catdisp_add_admin_menu() {
add_submenu_page( ‘bp-general-settings’, __( ‘Group Categories’, ‘bp_group_catdisp’ ), __( ‘Disp Cats’, ‘bp_group_catdisp’ ), ‘manage_options’, __FILE__, ‘group_catdisp_plugin_options’ );
}
add_action(‘admin_menu’, ‘group_catdisp_add_admin_menu’, 15);function group_catdisp_plugin_options() {
if (!current_user_can(‘manage_options’)) {
wp_die( __(‘You do not have sufficient permissions to access this page.’) );
}
$updated = false;
//above this is php for creating admin page and below is printed onto admin page?>
<?php
if ( !$options = get_option( ‘bp_gm_settings’ ) )
$per_page = 10;
else
$per_page = $options;$args = array( ‘type’ => ‘alphabetical’, ‘per_page’ => $per_page );
if ( $_GET == ‘name’ )
$args = ‘alphabetical’;
else if ( $_GET == ‘group_id’ )
$args = ‘newest’;
else if ( $_GET == ‘popular’ )
$args = ‘popular’;if ( $_GET )
$args = $_GET;
else
$args = 1;if( bp_has_groups( $args ) ) :
global $groups_template;
?>Category <?php
if ( !$group )
$group =& $groups_template->group;
?>Categories You don’t have any groups to manage.
<?php
}
?>
`The first two hard code a group by ID and display a selected wordpress category within that group. The last file is the useless one. I’d started hacking from one of @boonebgorges plugins with the idea of creating an admin screen from which groups could be linked to blog categories.
I’ve run out of time for now to play with that further and so for now am just going to duplicate the first two files for another couple of groups which will work for my purposes.
September 21, 2010 at 2:47 pm #93025In reply to: Using Buddypress and Thesis 1.5.1
paulhastings0
ParticipantWhile I don’t have any experience with Thesis, I’ve heard raving reviews about their customer support. Have you been able to check in their forums yet?
September 21, 2010 at 2:39 pm #93024In reply to: Using Buddypress and Thesis 1.5.1
nunomad
MemberThanks for the suggestion, Roger, but I’m not sure it will work for me. The whole site is a membership site using s2Member, so s2Member needs to govern the functionality of WordPress and Buddypress in an integrated way.
-
AuthorSearch Results