-
bp-help replied to the topic Enh Req: Checkbox to disable BP Registration in the forum Installing BuddyPress 11 years, 1 month ago
@postmarkj
It will always help to mention your using multisite when requesting support! In that case you need to go to Network Admin/Dashboard/Settings/Network Settings and to the right of registration settings check “Registration is disabled.” -
bp-help updated the A quick look at 1.7 Theme Compatibility page, on the BuddyPress Codex 11 years, 1 month ago
A Brief overview of BuddyPress Theme Compatibility in 1.7
BuddyPress 1.7 heralded a new era in BP development with a vastly improved approach to templating, its aim being to far more closely mirror the […]
-
bp-help replied to the topic Enh Req: Checkbox to disable BP Registration in the forum Installing BuddyPress 11 years, 1 month ago
@postmarkj
Have you went to dashboard/settings/general and unchecked “Anyone can register” to the right of Membership? Remember BP is a WP plugin and if you disable WP registration, you also disable BP registration. -
bp-help replied to the topic Change Name tabs on Buddy bar navigation with an Image (Icon) in the forum How-to & Troubleshooting 11 years, 1 month ago
@jslucas
This topic is almost a year and a half old. Please create your own topic. Be detailed in your requirement and you will likely get more responses! Good luck! -
bp-help replied to the topic [Resolved] BuddyPress compatible with Avada theme? in the forum How-to & Troubleshooting 11 years, 1 month ago
@tayenewm
The only certain way to find out if the theme is causing registration issue’s is to activate a known theme that works with BuddyPress like twenty twelve, or bp-befault and test it against registration and activation. If the issue is resolved after switching to one of these themes, then it is a theme issue and you would have to get…[Read more] -
bp-help replied to the topic Combining Profile Edit Pages in the forum How-to & Troubleshooting 11 years, 1 month ago
@arunondeck
Please start your own topic. This thread is over a year old, plus the topic author has not been around for a good while on the forums so the likely hood that they will respond is slim. You will get better responses if you start your own topic. Good luck! -
bp-help replied to the topic [Resolved] Buddypress xprofile author "bio" in post footer. in the forum How-to & Troubleshooting 11 years, 1 month ago
@3rdaxis
Glad I could help! Good luck with your BuddyPress site! 🙂 -
bp-help replied to the topic [Resolved] Buddypress xprofile author "bio" in post footer. in the forum How-to & Troubleshooting 11 years, 1 month ago
@3rdaxis
The problem is it would require that the username the user entered in the profile field to match their twitter id exactly. If not it may take them to god knows where. Anyway, this is untested but you can give it a whirl!
[Read more]
<?php
if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?>
<a… -
bp-help replied to the topic [Resolved] Buddypress xprofile author "bio" in post footer. in the forum How-to & Troubleshooting 11 years, 1 month ago
Or:
<?php
if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?>
<a href="https://twitter.com/USERNAME" target="_blank">Twitter: <?php echo $string; ?></a> <?php
}
?>
-
bp-help replied to the topic [Resolved] Buddypress xprofile author "bio" in post footer. in the forum How-to & Troubleshooting 11 years, 1 month ago
@3rdaxis
Untested but maybe something like this would work, in this example you would need to change “USERNAME” at the end of the URL to the persons twitter name. To get other URL’s to work you should just change the URL etc.
[Read more]
<?php
if ( $string = xprofile_get_field_data( 'BIO', get_the_author_meta('ID') ) ) { ?>
<a… -
bp-help replied to the topic active members on the friend page of BP not showing in the forum How-to & Troubleshooting 11 years, 1 month ago
@fel3000
Friends page is for current friends not potential friends. Logically it would not make any sense to have an “Add Friend” button in there because if they was already your friend they would be listed. -
bp-help replied to the topic Private message users in the forum How-to & Troubleshooting 11 years, 1 month ago
@chur74
Don’t you suppose that would be a clear violation of any privacy policy?
This could probably be done but ethically I think it is a bad idea. You could probably hire a developer that could do this for you, but I would warn of the legalities involved. “Just because you own a business does not give you the right to put hidden cameras in the…[Read more] -
bp-help replied to the topic Members page visibility in the forum Installing BuddyPress 11 years, 1 month ago
@pelaso
It is really only so much we can do with the info provided, and as @hnla stated it is a guess as to what could be wrong. Maybe you should consider hiring a developer. If you decide too then you can leave your job and contact info here:
As well as…[Read more] -
bp-help replied to the topic [Resolved] How to redirect bp users to activity page in the forum How-to & Troubleshooting 11 years, 1 month ago
@tse11
What have you set as your front page? Links are always helpful! -
bp-help replied to the topic Members page visibility in the forum Installing BuddyPress 11 years, 1 month ago
@pelaso
Have you checked for some type of redirect in bp-custom.php or in the themes functions.php? -
bp-help replied to the topic Private message users in the forum How-to & Troubleshooting 11 years, 1 month ago
@chur74
Can you be more clear of what your requirement is please? -
bp-help replied to the topic [Resolved] How to redirect bp users to activity page in the forum How-to & Troubleshooting 11 years, 1 month ago
@tse11
If the code above doesn’t work try this one because I just noticed you had mentioned multisite.
[Read more]
function bphelp_redirect() {
if( is_user_logged_in() && is_multisite() && is_super_admin && is_home) {
// redirect to dashboard code
bp_core_redirect( get_option( 'home' ) . '/wp-admin/' );
}else {
if( is_user_loggedin() &&… -
bp-help replied to the topic [Resolved] How to redirect bp users to activity page in the forum How-to & Troubleshooting 11 years, 1 month ago
@tse11
Patience please! Deactivate the plugin you was using for redirecting and try this in bp-custom.php https://codex.buddypress.org/plugin-development/bp-custom-php/ :
[Read more]
function bphelp_redirect() {
if( is_user_logged_in() && is_super_admin && is_home) {
// redirect to dashboard code
bp_core_redirect( get_option( 'home' ) . '/wp-admin/'… -
bp-help replied to the topic [Resolved] How to redirect bp users to activity page in the forum How-to & Troubleshooting 11 years, 1 month ago
@tse11
Search the forum. This has been covered before! You could create a conditional to do this. Basically an if and else statement. You would need to include is_super_admin in the conditional check and the user would be redirected appropriately. For instance:
[Read more]
function bphelp_redirect() {
if( is_user_logged_in() && is_super_admin ) {
//… -
bp-help updated the Building a Child Theme page, on the BuddyPress Codex 11 years, 1 month ago
[Updated for BuddyPress 1.5.2]
This is an approach to child themeing based on the BuddyPress Default theme. You may opt to choose a regular WordPress theme and take advantage of the BuddyPress Theme […]
- Load More
@bphelp
Active 9 years, 1 month ago