-
aces replied to the topic Profile CSS/Color in the forum How-to & Troubleshooting 11 years, 8 months ago
-
aces replied to the topic Enable buddypress on WP multisite's sub site in the forum Installing BuddyPress 11 years, 8 months ago
Set which blog ID BuddyPress will run on:
define ( 'BP_ROOT_BLOG', $blog_id );
From: https://codex.buddypress.org/developer/customizing/changing-internal-configuration-settings/
-
aces replied to the topic Why profile info becomes link? in the forum How-to & Troubleshooting 11 years, 9 months ago
-
aces replied to the topic [Resolved] Override bp-default responsive css in the forum How-to & Troubleshooting 11 years, 9 months ago
If you want to replace the responsive css with your own, you should be able to disable the default with
function bbg_enqueue_styles() {
remove_theme_support( 'bp-default-responsive' );
}
add_action( 'wp_enqueue_scripts', 'bbg_enqueue_styles', 5 );For more info see https://buddypress.trac.wordpress.org/ticket/3881#comment:2
-
aces replied to the topic [Resolved] Override bp-default responsive css in the forum How-to & Troubleshooting 11 years, 9 months ago
If you want to replace the responsive css with your own, you should be able to disable the default with
`function bbg_enqueue_styles() {
remove_theme_support( ‘bp-default-responsive’ );
}
add_action( […] -
aces replied to the topic Adding code for Google Website translator in the forum Installing BuddyPress 11 years, 10 months ago
Do you mean the code provided by the tool at https://translate.google.com/manager/website/ ?
I use an earlier version of this successfully with buddypress.
I would suggest the bit that is supposed to go […]
-
aces replied to the topic Getting 310 error. Too many redirects. URGENT! in the forum Installing BuddyPress 11 years, 10 months ago
I’m not sure if it’s the same thing but you could try putting the following in your bp-custom.php file:
remove_action( ‘bp_template_redirect’, ‘bp_redirect_canonical’, 2 );
More info: […]
-
aces replied to the topic Upgraded and now nav and sidebar is responsive????? in the forum How-to & Troubleshooting 11 years, 10 months ago
You could try putting the following in you child theme functions.php file
`function bbg_enqueue_styles() {
remove_theme_support( ‘bp-default-responsive’ );
}
add_action( ‘wp_enqueue_scripts’, […] -
aces replied to the topic How to remove responsive theme item & fixed width website. in the forum How-to & Troubleshooting 11 years, 10 months ago
You could try putting the following in you child theme functions.php file
`function bbg_enqueue_styles() {
remove_theme_support( ‘bp-default-responsive’ );
}
add_action( ‘wp_enqueue_scripts’, […] -
aces replied to the topic [Resolved] Help! Activation Email not sent–nothing works in the forum Installing BuddyPress 11 years, 11 months ago
Email should work but much can go wrong including things connected to plugins, themes and functions.php or bp-custom.php files.
Presuming the email didn’t go into spam, and WordPress sent emails before […]
-
aces replied to the topic [Resolved] Help! Activation Email not sent–nothing works in the forum Installing BuddyPress 11 years, 11 months ago
What does the WP Mail SMTP plugin email debug report say?
Does the email leave your host or have you tried googling the error numbers?
The plugin still needs the right settings. The reply from setting can […]
-
aces replied to the topic [Resolved] Help! Activation Email not sent–nothing works in the forum Installing BuddyPress 11 years, 11 months ago
Did WordPress send emails before you installed buddypress?
-
aces replied to the topic [Resolved] Help! Activation Email not sent–nothing works in the forum Installing BuddyPress 11 years, 11 months ago
Do they end up in the spam / junk / trash folder?
Have you tried the suggestions in BuddyPress isn’t sending out emails (eg. activation emails, email notifications) on the following page: […] -
aces replied to the topic Buddypress URL Structure for SEO Purposes in the forum Installing BuddyPress 11 years, 11 months ago
-
aces replied to the topic Activation emails not reaching users in the forum How-to & Troubleshooting 11 years, 11 months ago
-
aces replied to the topic Removing 'Global RSS Feed' in the forum How-to & Troubleshooting 11 years, 12 months ago
hmmn… it still works for me but only for the activity feed ( excluding the ` lines which weren’t converted to the new bp forum format ). It used to work for members as well.
To disable all feeds I just tried the […] - Load More
@aces
Active 9 months, 3 weeks ago