-
shanebp replied to the topic How to make 'forum' the default view for BuddyPress group in the forum How-to & Troubleshooting 10 years, 10 months ago
This works fine on my basic test install
define( 'BP_GROUPS_DEFAULT_EXTENSION', 'forum' );
Make sure that the quotes are straight verticals – not slanted or curved.
Otherwise, it’s something about your install.
Are you positive that your group(s) have forums ? -
shanebp replied to the topic How to make 'forum' the default view for BuddyPress group in the forum How-to & Troubleshooting 10 years, 10 months ago
Over-ride this file:
buddypressbp-templatesbp-legacybuddypressgroupssinglehome.phpAnd adjust it to make forums the default rather than activity.
Over-riding BP templates:
https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/ -
shanebp replied to the topic bp_notifications_get_notifications_for_user doesn't display bbpress notification in the forum How-to & Troubleshooting 10 years, 10 months ago
Do a var_dump on $notifications so you can see the structures.
Your code will need to test each $notifications[$i] to see if it’s an array and then handle it accordingly.
-
shanebp replied to the topic Use full content for custom post activity entry in the forum How-to & Troubleshooting 10 years, 10 months ago
Use this hook: do_action( ‘bp_activity_entry_content’ );
in the template: buddypressbp-templatesbp-legacybuddypressactivityentry.php
And write a function to embed the video.
-
shanebp replied to the topic Link ultimate auction pro to buddypress email in the forum Creating & Extending 10 years, 10 months ago
If it’s the ‘pro’ version, then you paid for it, yes?
Part of that payment includes support, yes?
Have you asked the creators of ultimate auction pro about your issue?My guess – ultimate auction pro uses the WP email address for each member.
But so does BP.
So your question is unclear.
And your best chance for an answer is to ask ultimate…[Read more] -
shanebp replied to the topic Member/profile links in comments in the forum How-to & Troubleshooting 10 years, 10 months ago
I would think that there are several places where a link to the BP profile would appear.
To handle them all, including the case you state, try using the filter hook in
function bp_loggedin_user_domain()return apply_filters( 'bp_loggedin_user_domain', isset( $bp->loggedin_user->domain ) ? $bp->loggedin_user->domain : '' );
found in…[Read more]
-
shanebp replied to the topic Backend notification when user profile complete in the forum How-to & Troubleshooting 10 years, 10 months ago
Use something like this:
https://wordpress.org/plugins/buddypress-profile-progression/Omit the visual and add the member to your admin display and / or send an email when ‘points == x’
-
shanebp replied to the topic What is the url for a user's home in the forum How-to & Troubleshooting 10 years, 10 months ago
You’re creating these redirects thru Dashboard options provided by one or more plugins, yes?
Unless those options can include php, you’ll need to adjust or add code somewhere.
The complete profile link for a logged in user is returned by this call:
bp_loggedin_user_domain() -
shanebp replied to the topic Membership Reporting in the forum How-to & Troubleshooting 10 years, 10 months ago
@ubernaut – thanks for the kind words and your feedback during the dev
@henrywright
>like a member stats dashboardNot sure what you mean.
http://www.philopress.com/products/buddyreports/ is meant to be a flexible Administrator tool. Therefore access can be restricted.
There is this plugin for front-end…[Read more]
-
shanebp replied to the topic Membership Reporting in the forum How-to & Troubleshooting 10 years, 10 months ago
This premium plugin can handle most all needs re membership reporting and statistics:
BuddyReports -
shanebp replied to the topic Displaying profile fields in admin users.php in the forum How-to & Troubleshooting 10 years, 11 months ago
Doesn’t sound like you need to edit xprofile fields from within the Dashboard,
but this premium plugin allows you to view, edit and save xprofile field values from a User > Edit screen in the Dashboard:
http://www.philopress.com/products/bp-dashboard-user-profile-edit/ -
shanebp replied to the topic [Resolved] Timestamps in members timezone in the forum How-to & Troubleshooting 10 years, 11 months ago
Ah, didn’t notice that instruction, just looked at the code.
( It’s surprising how many plugins leave in that kind of code. )>I’m new to wordpress/buddypress so writing a plugin isn’t going to happen anytime soon
You’ve already done a good chunk of the work.
If you and/or @henrywright-1 want to draft a plugin, I’d be wil…[Read more] -
shanebp replied to the topic [Resolved] Timestamps in members timezone in the forum How-to & Troubleshooting 10 years, 11 months ago
Nice. It would also be interesting to provide this on all timestamps.
One issue ‘tho – in this:
http://docs.taptappress.com/buddypress-add-time-zone-list-profile-field/I think you’re inserting / updating all those xprofile fields on every page load.
Why not just do it once?You could write a plugin that uses ‘register_activation_hook’ to…[Read more]
-
shanebp replied to the topic Universal Profile Link in the forum How-to & Troubleshooting 10 years, 11 months ago
<a href="<?php echo bp_loggedin_user_domain(); ?>profile/">My Profile</a>
-
shanebp replied to the topic How to fix so that the country is visible next to username? in the forum Installing BuddyPress 10 years, 11 months ago
Did you look at this?
-
shanebp replied to the topic How to fix so that the country is visible next to username? in the forum Installing BuddyPress 10 years, 11 months ago
>they can see the list of members in either alphabetical order or by date of last visit.
You’re referring to the Members page?
And you want to show a profile field ( country ) for each member?You may be interested in this premium plugin:
http://www.philopress.com/products/buddyprofiledata/>Is it possible for the members to add several…[Read more]
-
shanebp replied to the topic Update to Get Avatar Function – Change ID based off user role/capabilities in the forum Ideas 10 years, 11 months ago
No problem.
Good luck with the project.
Post a link when it goes public. -
shanebp replied to the topic Update to Get Avatar Function – Change ID based off user role/capabilities in the forum Ideas 10 years, 11 months ago
> I have a million other things to code at the moment
Thanks for taking the time to post your code.
If you’d like to suggest an enhancement, please use trac to submit a ticket.
-
shanebp replied to the topic Update to Get Avatar Function – Change ID based off user role/capabilities in the forum Ideas 10 years, 11 months ago
Why would you hack a function in a core file?
2 filter hooks are provided.
You could use filter hook
apply_filters( 'bp_member_avatar', bp_get_member_avatar( $args ) );
in function bp_member_avatar()
and figure out the id and then pass in the ‘id’ via the $args argument for function bp_get_member_avatar.Or you could use the filter hook…[Read more]
-
shanebp replied to the topic Human Error in BP Source Code??? in the forum Requests & Feedback 10 years, 11 months ago
This is a hook.
do_action( 'bp_member_blog_order_options' );
It is not called in BP.
It’s there for your convenience.
You can change the hook tag although some other plugin may be calling it.
If you’re over-riding that template, you could add your own hook. - Load More
@shanebp
Active 11 minutes ago