-
aces replied to the topic Make Content Private in the forum How-to & Troubleshooting 10 years, 8 months ago
It would help if you listed the plugins, and details about anything else you have tried such as code snippets.
Did you try https://wordpress.org/plugins/private-bp-pages/ – if so what was the problem?
-
aces replied to the topic one user cannot access buddypress pages in the forum How-to & Troubleshooting 10 years, 8 months ago
I’m not sure if it’s useful to you but upgrading to the latest version of buddypress might help as there has been some attention to issues with usernames….
See the following tickets: https://buddypress.trac.wordpress.org/ticket/5185 and https://buddypress.trac.wordpress.org/ticket/4622
in the above is an example of user name validation that,…[Read more]
-
aces replied to the topic using bp-custom.php causing conflicts in the forum How-to & Troubleshooting 10 years, 8 months ago
It’s not clear from your code as you don’t use the
code
tag….The error messages suggest that the problem is on line two of your bp-custom.php file.
Is that all that’s in your file and if so, then is
<?php
the first thing in the file? There should not be any other characters, blank spaces or lines before it. Similarly there should be…[Read more] -
aces replied to the topic Disable the BP registration in the forum How-to & Troubleshooting 10 years, 9 months ago
Have you tried wrapping it in a function and and using an action as suggested in
https://gist.github.com/r-a-y/5578432 ?Did you find this discussion about the issue:
-
aces replied to the topic [Resolved] Disabling BP Registration in the forum How-to & Troubleshooting 10 years, 9 months ago
see other topic: https://buddypress.org/support/topic/disable-the-bp-registration/
-
aces replied to the topic BP networking among peers only (restricted groups) in the forum How-to & Troubleshooting 10 years, 9 months ago
Try upgrading to bp 1.9+ it has had some attention in the user name area: https://buddypress.trac.wordpress.org/ticket/5185 and https://buddypress.trac.wordpress.org/ticket/4622
-
aces replied to the topic Buddypress Default Theme Missing from 1.9.2? in the forum Installing BuddyPress 10 years, 9 months ago
Try
add_filter( 'bp_do_register_theme_directory', '__return_true' );
added to bp-custom.phpSee https://codex.buddypress.org/themes/bp-default-theme-moving-forward-with-bp-1-9/ also http://bpdevel.wordpress.com/2013/11/13/the-future-of-the-bp-default-theme/ and https://buddypress.trac.wordpress.org/ticket/5212
Alternatively, what…[Read more]
-
aces replied to the topic BuddyPress 2014 Survey in the forum Requests & Feedback 10 years, 9 months ago
-
aces replied to the topic Please Bring Back The BuddyPress Default Theme 🙁 in the forum Showcase 10 years, 10 months ago
-
aces replied to the topic How to use the same buddypress tables on more then one site! in the forum Installing BuddyPress 10 years, 10 months ago
You can actually map multiple domains to one wordpress mu site with https://wordpress.org/plugins/wordpress-mu-domain-mapping/ … not sure if that helps…
-
aces replied to the topic Update Broke the Site – Please Help in the forum How-to & Troubleshooting 10 years, 10 months ago
Not really, apart from making sure all plugins are up to date.
If I am worried about a particular plugin and/or it hasn’t been upgraded for a long time, I will check on it’s wordpress.org ‘support’ section as well as the plugin or developer’s website…
I also run a local version of a website to test things out on first.
Also backup…[Read more]
-
aces replied to the topic Update Broke the Site – Please Help in the forum How-to & Troubleshooting 10 years, 10 months ago
That fatal error is referencing bp profile widgets plugin…. Can you access your /wp-content/plugins/ directory and either rename or delete that folder. That should de-activate that plugin…..
Edit: you beat me to it….
-
aces replied to the topic Not able to edit title of page after registration in the forum How-to & Troubleshooting 10 years, 11 months ago
You should not edit core files.
See https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/
The line you refer to is in the buddypress.pot file…
-
aces replied to the topic Username with space stop working in BP 1.9 in the forum How-to & Troubleshooting 10 years, 11 months ago
https://buddypress.trac.wordpress.org/ticket/5185#comment:15 ?
Have you got anything in your bp-custom.php or functions.php files (or a custom plugin etc.) that might affect this?
-
aces replied to the topic [Resolved] Buddypress 1.9 update made the default BP theme gone in the forum Installing BuddyPress 10 years, 11 months ago
Try
add_filter( 'bp_do_register_theme_directory', '__return_true' );
added to bp-custom.phpSee https://codex.buddypress.org/themes/bp-default-theme-moving-forward-with-bp-1-9/ also http://bpdevel.wordpress.com/2013/11/13/the-future-of-the-bp-default-theme/
-
aces replied to the topic Sending username with activation email in the forum How-to & Troubleshooting 10 years, 12 months ago
Please don’t hijack other people’s topics, especially when they are so ancient.
There is a a way to add the username on the second link down on my post: https://buddypress.org/support/topic/dashes-in-usernames/#post-169926.
If your issue is about buddypress removing hyphens then it looks like it will be fixed for bp 1.9 due quite…[Read more]
-
aces replied to the topic User calendar in the forum Third Party Plugins 10 years, 12 months ago
@formbi
https://wordpress.org/plugins/events-manager/ supports buddypress according to it’s feature list…. although I haven’t tried it. -
aces replied to the topic Whitespace in Username in the forum Requests & Feedback 11 years ago
see: https://buddypress.org/support/topic/dashes-in-usernames/#post-169926
Though this looks like it might be resolved in bp 1.9
-
aces replied to the topic Disable Buddypress Sitewide Activity RSS in the forum How-to & Troubleshooting 11 years ago
try replacing the ‘wp’ with ‘bp_actions’
function bp_remove_feeds() {
[Read more]
remove_action( 'bp_actions', 'bp_activity_action_sitewide_feed', 3 );
remove_action( 'bp_actions', 'bp_activity_action_personal_feed', 3 );
remove_action( 'bp_actions', 'bp_activity_action_friends_feed', 3 );
remove_action( 'bp_actions',… - Load More
@aces
Active 9 months, 3 weeks ago