-
Tim Gan's profile was updated 9 years, 2 months ago
-
Bradley Ross replied to the topic Registration form => 404 not found in the forum Installing BuddyPress 9 years, 2 months ago
It may be that you don’t have mod_rewrite activated in httpd.conf. Make sure that the LoadModule statement for mod_rewrite is uncommented. (Remove # sign at beginning.) Also look for a statement <Directory /xxx> where /xxx is the directory containing the files for the web site. If you see AllowOverride None in that section, change it to…[Read more]
-
Bunty replied to the topic How to delete automatic message in the forum Installing BuddyPress 9 years, 2 months ago
Yes, but that can only be removed from previously mentioned file.
-
Bunty replied to the topic How to delete automatic message in the forum Installing BuddyPress 9 years, 2 months ago
Add this to “Additional CSS” into customization section
.activity-greeting {
display:none
} -
Bunty replied to the topic How to delete automatic message in the forum Installing BuddyPress 9 years, 2 months ago
file:
buddypressbp-templatesbp-legacybuddypressactivitypost-form.phpremove line no: 30 and 31
-
Bunty replied to the topic How to delete automatic message in the forum Installing BuddyPress 9 years, 2 months ago
I would like to see the screenshot for mobile device issue.
-
Bunty replied to the topic How to delete automatic message in the forum Installing BuddyPress 9 years, 2 months ago
You can do that by commenting two lines ( 30 and 31 ) from
buddypressbp-templatesbp-legacybuddypressactivitypost-form.php -
Mike W replied to the topic BP 2.8.0 Update Broke Profiles in the forum How-to & Troubleshooting 9 years, 2 months ago
Nope. The hook does work, because profiler says the function is called later now, but the function still doesn’t seem to exist and throws the undefined function exception.
Also, other plugins do as well including gears which is used by theme authors such as myself for allowing users to easily add elements to a website from buddypress.
-
Bradley Ross's profile was updated 9 years, 2 months ago
-
Bradley Ross replied to the topic Cannot Sign up in the forum Installing BuddyPress 9 years, 2 months ago
From my previous post, changing AllowOverride None to AllowOverride FileInfo seems to have made the member, groups, and other pages operational.
The following is a diff of the httpd.conf from the Yosemite version of macOS and my current version. Remember that there are three configuration files: httpd.conf, my.cnf,…[Read more]
-
Bradley Ross replied to the topic Cannot Sign up in the forum Installing BuddyPress 9 years, 2 months ago
I have .htaccess
I have loaded the entire system three times and followed the directions
I have made sure that all of the files have an owner of _wwwI have already screamed and will probably do so again. I am currently using
Apple Macintosh macOS 10.12.3
Wordpress 4.7.2
Theme: TwentySeventeen
bbPress 2.5.12
BuddyPress 2.8.0
Jetpack 4.6The…[Read more]
-
Henry Wright replied to the topic Navigation API – Default Slug? in the forum Creating & Extending 9 years, 2 months ago
Check out this article:
-
Mike W replied to the topic BP 2.8.0 Update Broke Profiles in the forum How-to & Troubleshooting 9 years, 3 months ago
This is what I have (I shorted the above code as an example of how to hook into bp_ready)
function executeSteamID()[Read more]
{
$steam64id = xprofile_get_field_data('Steam64 ID', get_current_user_id());
$steamUser = xprofile_get_field_data('Steam User', get_current_user_id());
$steamCache = xprofile_get_field_data('Steam Cache',… -
Mike W replied to the topic BP 2.8.0 Update Broke Profiles in the forum How-to & Troubleshooting 9 years, 3 months ago
So… make sure this is right…
function doProfileStuff()
{
echo xprofile_get_field_data('stuff');
}add_action('bp_ready', 'doProfileStuff');
I guess the question is “how” to hook into it or do you use bpready directly in place of add_action ?
May I ask for an example.. If I see how it is used, I can run with that being as there…[Read more]
-
Mike W replied to the topic Can't display user profile fields in the forum How-to & Troubleshooting 9 years, 3 months ago
xprofile_get_field_data() throws undefined function for me.
-
Mike W replied to the topic BP 2.8.0 Update Broke Profiles in the forum How-to & Troubleshooting 9 years, 3 months ago
Actually, that brings me to another issue it seems…
Call to undefined function xprofile_get_field_data()Did that function change? I’m currently using it on a steam community website to pull steam ID’s so I can poll steam and display a stream widget on the user’s profile page.
-
Mike W replied to the topic BP 2.8.0 Update Broke Profiles in the forum How-to & Troubleshooting 9 years, 3 months ago
please read this:
If you wanted to be superman for a day all you had to do was ask! 🙂 Thanks danbp!
-
Mike W started the topic BP 2.8.0 Update Broke Profiles in the forum How-to & Troubleshooting 9 years, 3 months ago
Sorry, you are not allowed to access this page.
Is now thrown when the admin tries to edit any xprofile field.
I’ve taken the following steps:
1) Disabled theme
2) Disabled all pluginsThe problem persisted which likely means there was an oops in the release.
If it helps the site is multisite (just in case it can’t be replicated on a single-site)
-
Andrew Tegenkamp started the topic Navigation API – Default Slug? in the forum Creating & Extending 9 years, 3 months ago
I’m trying to edit my user’s profile so that when they click on “Settings” they go to the “Email” (/settings/notifications/) by default. I found https://codex.buddypress.org/developer/navigation-api/ and am trying to apply that to the default_subnav_slug but must be missing something. Any ideas?
[Read more]
add_action( 'bp_setup_nav',… -
Henry Wright replied to the topic Having Extended Profiles Fields in New User Registration Admin Email in the forum How-to & Troubleshooting 9 years, 3 months ago
I believe the
wp_new_user_notification()function is what you’re looking for. It’s pluggable so you can define your own which will override the original definition:function wp_new_user_notification( $user_id, $deprecated = null, $notify = '' ) {[Read more]
// Your own code here. Copy and paste the original function's content and then modify if you… - Load More