-
Henry Wright replied to the topic Changing the groups slug in the forum How-to & Troubleshooting 7 years, 8 months ago
The BP Edit Group Slug plugin has been updated to work with BP 2.8. See this Tavern post for details:
BuddyPress Core Contributors Working on a Way to Safely Edit a Group’s Permalink
-
Henry Wright replied to the topic Trying to get property of non-object in the forum How-to & Troubleshooting 7 years, 8 months ago
@danbp Thanks for pointing that out, I’ll keep it in mind. My only thought is how do we know this issue is PHP 7 specific? To me it looks unrelated to PHP version.
-
Henry Wright replied to the topic Trying to get property of non-object in the forum How-to & Troubleshooting 7 years, 8 months ago
@airathalitov instead of commenting on an existing issue, this is probably worthy of opening a new ticket.
-
Henry Wright replied to the topic Choose categories or tags for activities in the forum How-to & Troubleshooting 7 years, 8 months ago
Great to hear! A typo in the function name is always a hard one to debug unless the function doesn’t exist and you get a PHP error.
-
Henry Wright replied to the topic Choose categories or tags for activities in the forum How-to & Troubleshooting 7 years, 8 months ago
Can you see what bp_activity_id() is returning by using var_dump() on the $actID variable?
-
Henry Wright replied to the topic Not getting BuddyPress registration emails in the forum Installing BuddyPress 7 years, 8 months ago
Are you sure the emails aren’t being sent? Could the BP emails be going into a spam folder?
-
Henry Wright replied to the topic City, State, Country Location Plugin in the forum Third Party Plugins 7 years, 8 months ago
It’s a single field.
That’s good because it makes the user location simple
Thanks for the info!
-
Henry Wright replied to the topic City, State, Country Location Plugin in the forum Third Party Plugins 7 years, 8 months ago
Nice @shanebp!
Does the plugin support dependent fields? This kind of thing:
Town
City – auto populated based on value of Town
Country – auto populated based on value of Town -
Henry Wright replied to the topic City, State, Country Location Plugin in the forum Third Party Plugins 7 years, 8 months ago
Thanks; it’s useful to know 🙂
-
Henry Wright replied to the topic City, State, Country Location Plugin in the forum Third Party Plugins 7 years, 8 months ago
That’s an interesting plugin. Do you know if the location fields are xProfile fields?
-
Henry Wright replied to the topic Change Text on Registration Page in the forum How-to & Troubleshooting 7 years, 8 months ago
Take a look at the Template Hierarchy article. The register.php template is the one you’ll need to modify.
-
Henry Wright replied to the topic How to set a testimonial page for members? in the forum How-to & Troubleshooting 7 years, 8 months ago
BuddyPress doesn’t have testimonial functionality but you should be able to find a plugin to get what you need.
-
Henry Wright replied to the topic [Resolved] Unminified Javascript in the forum How-to & Troubleshooting 7 years, 8 months ago
You can dequeue a minified script with
wp_dequeue_script()
and then enqueue the non-minified version withwp_enqueue_script()
.Ref
https://codex.wordpress.org/Function_Reference/wp_dequeue_script
-
Henry Wright replied to the topic [Resolved] Friendships component in the forum How-to & Troubleshooting 7 years, 9 months ago
Is the Friend Connections component activated when you go to Settings > BuddyPress?
-
Henry Wright replied to the topic Choose categories or tags for activities in the forum How-to & Troubleshooting 7 years, 9 months ago
Meta would allow you to segregate activity item types. You could add to meta after a new activity item is posted. The hook for that is
bp_activity_add
.Hope this helps.
-
Henry Wright replied to the topic Choose categories or tags for activities in the forum How-to & Troubleshooting 7 years, 9 months ago
BuddyPress activity items aren’t WordPress posts so as far as I know you can’t associate categories or tags with them. However, activity items do have associated meta.
Take a look at these functions which will be useful to you:
bp_activity_add_meta()
bp_activity_update_meta()
bp_activity_get_meta()
bp_activity_delete_meta() -
Henry Wright replied to the topic get events in the forum How-to & Troubleshooting 7 years, 9 months ago
Try this:
$args = array(
'meta_key' => 'group_id',
'meta_value' => '1',
'meta_compare' => '=',
'post_type' => 'event',
'posts_per_page' => -1
);
$query = new WP_Query( $args );if ( $query->have_posts() ) {
// Events
} else {
// No…[Read more] -
Henry Wright replied to the topic Custom Members-Loop and Pagination issues in the forum How-to & Troubleshooting 7 years, 9 months ago
Try using bp_parse_args instead. That’s the way I’d recommend to filter the members loop (both pagination and the loop of members will be addressed)
-
Henry Wright replied to the topic Hide Required BuddyPress Name Field in the forum Miscellaneous 7 years, 9 months ago
You have 2 options. I’d recommend the 2nd:
1: Copy and paste the JavaScript to your my-theme/buddypress/members/register.php template. In this case you’ll need to copy the
<script>
tags also.
2: Create a separate file (my-theme/js/script.js for example) and paste the JavaScript into that. In this case you don’t need to copy the<script>
tags. If…[Read more] -
Henry Wright replied to the topic Network for private persons and companies in the forum Creating & Extending 7 years, 9 months ago
Is that possible?
Yes but you’ll need to install some plugins and maybe write some custom code to get the functionality you need.
Check out the Getting Started article
- Load More
@henrywright
Active 8 months, 1 week ago