-
shanebp replied to the topic [Resolved] WP wouldn't auto upgrade, then this happened: in the forum How-to & Troubleshooting 10 years, 7 months ago
I don’t know why you’re getting those warnings.
I suspect it’s one of your plugins – one that has an admin page.For the public site, try opening the file: wp-config.php
It will be in the root of your install.Look for this: define(‘WP_DEBUG’, true);
And either delete it or change it to: define(‘WP_DEBUG’, false);
-
shanebp replied to the topic Statistics about my communinty in the forum How-to & Troubleshooting 10 years, 7 months ago
We provide a premium plugin for reporting:
But it does not show data re profile fields.
Re ‘checked boxes’ – you would want a total of the number of members who have checked box ‘x’ or a list of all members who have done so ?
-
shanebp replied to the topic Placing a set profile filed beside users name in h1 title in the forum How-to & Troubleshooting 10 years, 7 months ago
@jonbie
If you want to show profile data in the members loop
( as you seem to want in this thread: https://buddypress.org/support/topic/badly-need-some-help-with-a-profile-field/ )You may be interested in this premium plugin:
-
shanebp replied to the topic restrict listing users see certain users in the forum How-to & Troubleshooting 10 years, 7 months ago
If ‘offer service’ and ‘search service’ are extended profile fields, you can adapt this example:
-
shanebp replied to the topic Making Plugin activity show in Activitiy Stream in the forum Third Party Plugins 10 years, 7 months ago
>The plugin is currently not compatible with BuddyPress.
So you talking about adapting a premium plugin.
Is it reasonable to expect somebody to buy the plugin in order to help you?
Perhaps you’re hoping somebody already has it; but even then they would have to be willing to do the work and deliver it to you.Therefore it’s…[Read more]
-
shanebp replied to the topic display profile fields in member header in the forum How-to & Troubleshooting 10 years, 7 months ago
I believe the OP wants the code in member-header, not in members directory.
So pointing them to awkward code that isn’t relevant is not very helpful.
The OP’s issue is with their template over-ride for member-header.php
@cdb3212 –
paste the path to your over-ride so we can see if it’s in the right place.Use…[Read more]
-
shanebp replied to the topic [Resolved] Username vs display name in the forum How-to & Troubleshooting 10 years, 7 months ago
He means you can over-ride a BP template by following the directions here
-
shanebp replied to the topic field visibility in the forum How-to & Troubleshooting 10 years, 7 months ago
I’m not sure what you mean, but if you mean the member names as shown in the loop on the members page, then no.
If you’d like more info, please use:
-
shanebp replied to the topic field visibility in the forum How-to & Troubleshooting 10 years, 7 months ago
I’m not sure what the problem is.
You might be interested in our premium plugin that will handle everything for you.
-
shanebp replied to the topic Small Avatar Size in Activity Stream in the forum How-to & Troubleshooting 10 years, 8 months ago
>deem some activity as more important
I never understood that either.
It seems arbitrary and esoteric.Try this:
Create a template over-ride of
bp-templatesbp-legacybuddypressmembersmembers-loop.phpAnd replace
bp_member_avatar()
with
bp_member_avatar('type=full&width=50&height=50')
-
shanebp commented on the post, BuddyPress 2.0 Beta 1 is now available, on the site BuddyPress.org 10 years, 8 months ago
Spent yesterday with this beta on a vanilla install w/latest bbpress.
[ mainly testing our premium plugins – no problems ]Haven’t seen any major problems yet – very impressive given all the work that was […]
-
shanebp replied to the topic Ajax Activity in the forum How-to & Troubleshooting 10 years, 8 months ago
Clearly the OP does not speak English.
But that has never been a requirement for posting a support topic. -
shanebp replied to the topic Event Plugin Opinions in the forum Third Party Plugins 10 years, 8 months ago
Of the 2 mentioned, Events Manager is the better bet.
I’ve worked with the free version.
Depending on what you need to do, customizing it can be difficult.
And it’s resource intensive. -
shanebp replied to the topic field visibility in the forum How-to & Troubleshooting 10 years, 8 months ago
-
shanebp replied to the topic Login Redirect to "My Groups" page in the forum How-to & Troubleshooting 10 years, 8 months ago
If your groups are at url/groups/
then try pasting the code below into your theme / functions.phpIt should redirect non-admins to the groups page.
based on https://codex.wordpress.org/Plugin_API/Filter_Reference/login_redirect
function shug_login_redirect( $redirect_to, $request, $user ) {
[Read more]
//is there a user to check?
global $user;
if (… -
shanebp replied to the topic Login Redirect to "My Groups" page in the forum How-to & Troubleshooting 10 years, 8 months ago
>I’ve seen the way you can direct a user to their profile
Use the same approach and replace the profile url with the groups url.
bp_core_redirect( get_option('home') . '/groups/' );
-
shanebp replied to the topic Disable admin bar in the forum Creating & Extending 10 years, 8 months ago
Try this in your theme / functions.php
function splen_remove_admin_bar() {
if( !is_super_admin() )
add_filter( 'show_admin_bar', '__return_false' );
}
add_action('wp', 'splen_remove_admin_bar'); -
shanebp replied to the topic Is @megainfo okay? Can anyone else provide BP Wall support? in the forum Requests & Feedback 10 years, 8 months ago
-
shanebp replied to the topic How I hide my un-wanted profile tabs in the forum Installing BuddyPress 10 years, 8 months ago
@henrywright – they make a good argument.
But whatever works for each person.
I like filtering gettext because it’s faster than the poedit dance.
-
shanebp replied to the topic How I hide my un-wanted profile tabs in the forum Installing BuddyPress 10 years, 8 months ago
For renaming things, the recommended practice is to use a language file:
If you make a lot of changes, you should use that approach.
The ‘counting bubble’ is filled using sprintf.
You’re missing that call from your change.
You could try…[Read more] - Load More
@shanebp
Active 14 hours, 26 minutes ago