Search Results for 'buddypress'
-
AuthorSearch Results
-
August 28, 2013 at 10:48 am #170545
In reply to: Toolbar buddypress menu on iPhone and iPad
studiopeter
ParticipantI’m having the same issue.
Is there a solution yet ??Regards,
PeterAugust 27, 2013 at 6:20 pm #170526In reply to: New great plugin, buddypress-wall by @megainfo
August 27, 2013 at 4:50 pm #170519In reply to: Is bp-friends-template.php editable?
terraling
ParticipantSorry @funmi-omoba, I didn’t quite get your question, but here is the code I added to my functions.php based on earlier answers:
function my_add_friend_link_text($button) { switch ( $button['id'] ) { case 'pending' : $button['link_text'] = 'x Pending'; $button['link_title'] = 'Cancel friend request'; $button['link_class'] .= ' btn btn-xs btn-warning'; break; case 'is_friend' : $button['link_text'] = '- Unfriend'; $button['link_class'] .= ' btn btn-xs btn-danger'; break; default: $button['link_text'] = '+ Friend'; $button['link_title'] = 'Send friend request'; $button['link_class'] .= ' btn btn-xs btn-success'; } return $button; } add_filter('bp_get_add_friend_button', 'my_add_friend_link_text');I’m changing the link text, changing the title, and adding additional classes (I’m using bootstrap and wanted the buttons styled the same as elsewhere, though that means deleting the generic button styling from buddypress.css)
Hope that helps.
August 27, 2013 at 4:15 pm #170516In reply to: Media Plugin for Buddypress
AnywhereButHollywood
ParticipantrtMedia is a huge, massive cluster of bugs. Awful. I have installed and uninstalled it at least 7 times in the last month, trying to give it just one more chance…. Every time I do, I discover a new bug.
Give BuddyDev’s Gallery plugin a shot. It’s premium ($30 for a 3-month “club” membership), but it’s got actual (if spotty) support – and without the attitude you get from rtMedia’s developers.
Also – and this is big for me – it includes the ability to embed media, rather than hosting. I really don’t want to be in the video hosting business at this point.
August 27, 2013 at 3:26 pm #170510jaemaz
ParticipantActually, this functionality is controlled by the BuddyPress Group Email Subscription plugin, but still… anybody? 🙂
August 27, 2013 at 2:39 pm #170505In reply to: New great plugin, buddypress-wall by @megainfo
meg@info
ParticipantOf course if your try the plugin in buddypress child theme other than the default will not work fine beceause the plugin use the default buddypress template !
the plugin work with all wordpress themes if the theme use legacy buddypress theme,
if it is child theme, in this case you must customize the plugin templates by modifying the template files. Just copy buddypress-wall\includes\templates\bp-default folder to your theme and edit the templates.A lot of Buddypress plugins present a template and suggest a customisation if the theme is buddypress child themes.
August 27, 2013 at 1:17 pm #170498In reply to: New great plugin, buddypress-wall by @megainfo
bp-help
ParticipantAugust 27, 2013 at 9:52 am #170495In reply to: New great plugin, buddypress-wall by @megainfo
Nexus66
ParticipantWill give it try..
August 27, 2013 at 9:36 am #170493In reply to: How to make Avatar a requirement?
Henry
MemberWhich premium plugin did you find?
To make uploading an avatar a requirement you’d have to have an upload form on the registration page. This used to happen in BuddyPress. Some discussion on it in this thread:
https://wordpress.org/support/topic/plugin-buddypress-avatar-upload-in-registration-formAugust 27, 2013 at 1:40 am #170487In reply to: two page home page?
bp-help
ParticipantAugust 27, 2013 at 1:05 am #170484In reply to: two page home page?
bp-help
Participant@villnoweric
Try this it is a slightly modified snippet I did earlier but fits your requirement. Follow the instructions in the code.`
// PLEASE NOTE FOR THIS TO WORK:
// Before adding this code to bp-custom.php
// https://codex.buddypress.org/developer/customizing/bp-custom-php/
// you will need to create a new page in the dashboard and name it
// something like “Dummy Page” for example or any name you choose.
// Do not add this page to your menu because it is just a dummy page
// for the redirect. Then go to Dashboard/Settings/Reading.
// Under “Front page displays” select “A static page.” Then use the
// “Front page” drop-down menu to select the page you created. In my
// example for instance I selected “Dummy Page” for my front page.
// Done! Now logged out visitors get redirected to the register page,
// and logged in users get redirected to the activity stream./* Redirects to profile upon login, and logged out users are redirected to register page */
function bp_help_redirect_to_profile(){
if( is_user_logged_in() && bp_is_front_page() ) {
bp_core_redirect( get_option( ‘home’ ) . ‘/activity/’ );}else {
if ( !is_user_logged_in() && !bp_is_register_page() && !bp_is_activation_page() )
bp_core_redirect( get_option( ‘home’ ) . ‘/register/’ );
}
}add_action( ‘get_header’, ‘bp_help_redirect_to_profile’,1 );
`August 27, 2013 at 12:33 am #170483In reply to: "Create a Page" functionality in BuddyPress?
rickkumar
ParticipantThanks for your comment.
I never said I want BP to be a facebook clone.
I love BP.I strongly feel that BP lacks depth in this functionality.
It is not useful at all. Facebook does it right.
A social network software should be able to do it right.That’s the only reason I mentioned facebook.
I hope you give this issue another consideration and help make BP more useful.
August 26, 2013 at 9:56 pm #170476In reply to: Stop Spam, Allow Members to Flag Spammers, etc.
Jose Conti
ParticipantHi @ubernaut
What WordPress and BuddyPress version do you use?
The reported users are listed in our DEV installations.
August 26, 2013 at 8:47 pm #170467In reply to: User Statistics Reporting in Buddypress?
tallmeerkat
Participanthi pcwriter. thanks for this response. I am looking for a reporting tool about users and also plugin(?) with which I can get an analysis of trending topics in the buddypress community at a given time. Does something exist?
August 26, 2013 at 8:08 pm #170464In reply to: Media Plugin for Buddypress
Tecca
ParticipantI found rtMedia to be great when I was testing it. I know you mentioned it’s not working, but it’s honestly the most quality media plugin I’ve found for BuddyPress. I think if you’re having this many problems with plugins, you might want to see if it’s your theme that’s causing these errors. Otherwise if you find other plugins, those may not work as well.
August 26, 2013 at 7:43 pm #170463Henry
MemberDisabling usernames sitewide sounds like a huge task to me. BuddyPress needs a unique identifier to use in URLs. Have you thought about providing your members with the ability to change their username?
You’d just need to send a global message to all members letting them know how they can update their username.
August 26, 2013 at 7:30 pm #170461In reply to: Media Plugin for Buddypress
Henry
MemberThere was an alternative to BuddyPress Media (rtMedia) – I think it was called BP Media. I’m not sure if it is supported anymore or even in the WP plugin repository but it might be worth a try if you can get hold of it. That said, rtMedia is working very well for me on my test site. Will be putting it live in the next few weeks.
August 26, 2013 at 7:25 pm #170457In reply to: Use email as usernane on registration
terraling
ParticipantI’m pretty certain there is no way to avoid them having a username, although in principle you could auto-generate a string of random characters that they never see.
I’m not familiar with the wordpress.com sign-up, but you could always pretty-please the Jetpack people to see if they will port it across to wordpress.org.
Or look at the various social networking plug-ins. Social Login allows “your visitors to comment, log-in and register with their social network accounts” and works with WordPress and BuddyPress.
If you want something more specific, then you may have to contract a developer to do it for you (then release it as a public plug-in!).
August 26, 2013 at 1:58 pm #170436mrshaffly
ParticipantAnyone?
August 26, 2013 at 11:31 am #170429In reply to: [Resolved] Logged-In User Profile Link URL
xiot
ParticipantThis looks nice but wasn’t what I was looking for since I have a frontpage already and don’t want to change it!
But the link within the code was pretty helpfull! I couldn’t find out where to find the bp-custom.php. Now I know that it has to be created 😀 Thanks anyway!And also thanks to @struth !
Cause of you i found out how to switch the result of is_user_logged_in() . It’s a simple “!” that needs to be in front of the function!But I still can’t imagine why the snippet was named to direct visitors to the registration page! It doesn’t do that.
Now the code is modded and it DOES redirect not logged in users to the registration page!
Feel free to use it 🙂
function redirect2profile(){ include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php') && is_user_logged_in()){ global $current_user; wp_redirect( get_bloginfo('url') . '/member/'. $current_user->user_login . '/profile/'); exit(); } else { if ($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php') && !is_user_logged_in()) { wp_redirect( get_bloginfo('url') . '/register/'); exit(); }} } add_action('init', 'redirect2profile');Cheers, Lars
August 26, 2013 at 11:13 am #170427In reply to: Remove [Site Name] from email subject line
Prince Abiola Ogundipe
ParticipantThis is what i did to remove it from activation email, you can play with it to remove it from all
function fix_bp_activation_subject($subject) { return __( "Activate Your Account",'buddypress ' ); } add_filter( 'bp_core_activation_signup_user_notification_subject ','fix_bp_activation_subject');Naijaping
August 26, 2013 at 7:04 am #170414In reply to: [Resolved] Logged-In User Profile Link URL
struth
ParticipantI just hijacked Mr Jacoby code:
add_action('after_setup_theme', 'remove_admin_bar'); // remove admin bar for users function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } } function redirect2profile(){ include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php') && is_user_logged_in()){ //show buddypress user profile page global $current_user; wp_redirect( get_bloginfo('url') . '/members/'. $current_user->user_login . '/profile/'); exit(); } } add_action('init', 'redirect2profile'); ?>Into a plugin for those who don’t know how, or just don’t want to add this code to the functions.php file. you can download it HERE
Removes the admin bar for all users except Administrators and gets “global $current_user;” profile to a page you create called Profile as described by jackreichert
I’ve said it before but I’m going to say it again – you’re a genius Mr Jacoby
August 26, 2013 at 4:15 am #170412In reply to: Buddypress/Bootstrap basic theme support
tsinclair1982
ParticipantWere you creating a theme?
August 25, 2013 at 8:24 pm #170402In reply to: [Resolved] Logged-In User Profile Link URL
xiot
ParticipantHi there!
This worked quite fine for me, but i have the problem that this code doesnt bring me to a signup page when you aren’t logged in.
I tried to add the redirect with “else” but it didn’t work for me either.
The code has now changed, since I tried to figure out why it doesn’t redirect me to my register page.I’m not very skilled with PHP so maybe someone can help me out.
I want the code to redirect the not logged in user to a register pagefunction redirect2profile(){ include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if ( is_user_logged_in()){ if ($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php')) { global $current_user; wp_redirect( get_bloginfo('url') . '/member/'. $current_user->user_login . '/profile/'); exit(); } } else { if ($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php')) { wp_redirect( get_bloginfo('url') . '/register/'); exit(); } } } add_action('init', 'redirect2profile');August 25, 2013 at 7:48 pm #170400In reply to: Private Message Button Label Change
funmi omoba
ParticipantThanks for your snippet which works great with standard buddypress message system but did not work if using BP Profile Message UX plugin, is there anyway to make it work please
https://wordpress.org/plugins/bp-profile-message-ux/
tahnks
-
AuthorSearch Results