-
Henry Wright replied to the topic Make "media" the default tab instead of profile in the forum How-to & Troubleshooting 11 years, 12 months ago
This is where I took the info from:
Are you doing anything else in bp-custom.php? Maybe something you’ve customised is causing the issue.
-
Henry Wright replied to the topic Facebook Only Registration in the forum How-to & Troubleshooting 11 years, 12 months ago
Is there an easy way to do this?
Yes. You can do this quite easily.
1. Choose a Facebook login plugin from the WP plugin repo:
https://wordpress.org/plugins/
Maybe try searching for
'social login'2. Hide the BuddyPress registration form
-
Henry Wright replied to the topic No activation mail in the forum How-to & Troubleshooting 11 years, 12 months ago
Your hosting company’s mail server might be at fault. Try checking that it works
-
Henry Wright replied to the topic Make "media" the default tab instead of profile in the forum How-to & Troubleshooting 11 years, 12 months ago
define( 'BP_DEFAULT_COMPONENT', 'media' );You’ll need to put that in bp-custom.php
-
Henry Wright replied to the topic No activation mail in the forum How-to & Troubleshooting 11 years, 12 months ago
Have you checked the spam folder?
-
Henry Wright replied to the topic Help! Loop! in the forum How-to & Troubleshooting 11 years, 12 months ago
Just bypass the login page with something like
wp_set_auth_cookie( 1, false, true ).Where 1 is the user ID of your admin account.
https://codex.wordpress.org/Function_Reference/wp_set_auth_cookie
-
Henry Wright replied to the topic [Resolved] Removing activity durations in the forum How-to & Troubleshooting 11 years, 12 months ago
It will be wp-content/themes/your-theme/style.css
-
Henry Wright replied to the topic BuddyPress-bbPress vs Ning 2.0/3.0 in the forum Creating & Extending 11 years, 12 months ago
Hi theaquaponicsource
There’s quite a lot of development activity going on right now with BP “under the hood” so to speak. Have a read of this blog post which announces the recent release of BP 2.0:
And keep in mind many of the WP plugins in the WordPress plugin repo work solidly on BP, you…[Read more]
-
Henry Wright replied to the topic How I can get Live chat plugin for my blog ? in the forum Third Party Plugins 11 years, 12 months ago
Take a look a BP Chat:
-
Henry Wright replied to the topic Limit members search to full name only in the forum How-to & Troubleshooting 12 years ago
Thanks @julianprice!
-
Henry Wright replied to the topic [Resolved] Code for members? in the forum Creating & Extending 12 years ago
Also, check out WP_User_Query
https://codex.wordpress.org/Class_Reference/WP_User_Query
You can do what you need to easily using the search parameters. For example:
$args = array(
'search' => $string,
'search_columns' => array( 'ID' ),
);
$user_query = new WP_User_Query( $args );Where
$stringis the user submitted search string i.e.…[Read more] -
Henry Wright replied to the topic How can I disable @mentions written by non-friends? in the forum How-to & Troubleshooting 12 years ago
friends_check_friendship_status()will handle the ‘friend check’ for you.bp_activity_at_name_filteris the @-mention filter you speak of. It’s hooked to various stuff such asbp_activity_comment_contentandpre_comment_content. Hope this helps. If you need anything else just shout. -
Henry Wright replied to the topic Bug with link posts in activity page in the forum Requests & Feedback 12 years ago
Right! I see what you mean. You could try letting the guys know over at BuddyPress Trac by raising a new ticket:
http://buddypress.trac.wordpress.org
They’ll be able to take a look
-
Henry Wright replied to the topic Hide user email in the forum How-to & Troubleshooting 12 years ago
Hi @trialsph
Which theme are you using? It isn’t great practice to display member’s email addresses on a site by default. Perhaps you should try a different theme which doesn’t do this.
-
Henry Wright replied to the topic Bug with link posts in activity page in the forum Requests & Feedback 12 years ago
How is the ending double quote being inserted to the page? As far as I am aware this can only come from the theme.
-
Henry Wright replied to the topic Bug with link posts in activity page in the forum Requests & Feedback 12 years ago
This could be down to your theme. What theme are you using?
-
Henry Wright replied to the topic [Resolved] Mobile Billing in the forum Creating & Extending 12 years ago
That is a massively good point @shanebp – could you even go up one level again and use
init? -
Henry Wright replied to the topic [Resolved] Mobile Billing in the forum Creating & Extending 12 years ago
Hi @tonymalony
Yes you can tweak the default sign up to do that. Also, consider using something like this to redirect logged-out users away from content you want accessible to logged-in members only.
function custom_redirect() {[Read more]
if ( ! is_user_logged_in() ) {
// redirect
wp_redirect( home_url() );
exit;… -
Henry Wright replied to the topic Multi stage registration? in the forum How-to & Troubleshooting 12 years ago
Hi @plinth
It isn’t possible by default. You could set up a new page and direct member’s to it on successful registration. That page would have a form on it which lets the member add profile info. Then when that page’s form has been processed successfully the member is taken to the third page and so on.
template_redirectis the hook you’d need…[Read more] -
Henry Wright replied to the topic Friend request in the forum How-to & Troubleshooting 12 years ago
This could be theme related. Which theme are you using?
- Load More
@henrywright
Active 2 years, 1 month ago