-
Henry Wright replied to the topic Is there a plugin for reports? in the forum How-to & Troubleshooting 8 years, 10 months ago
Perhaps not quite what you’re after but @danbp has a community statistics plugin that might be helpful?
https://wordpress.org/plugins/buddy-community-stats/ -
Henry Wright replied to the topic in bp private messaing can i send? in the forum How-to & Troubleshooting 8 years, 10 months ago
Yes you can. Just type in multiple recipients when you’re composing the message.
-
Henry Wright replied to the topic Re-ordering a custom groups loop in the forum Creating & Extending 8 years, 10 months ago
I think the JavaScript will detect a new option list value and kick off a new query to load the new info. I’d imagine you’d need to write the JavaScript listener and the new query yourself but there may be a way of hooking in that I’m not familiar with. Perhaps someone else here can comment?
-
Henry Wright replied to the topic Customize email templates in the forum How-to & Troubleshooting 8 years, 10 months ago
Thanks Paul, this is a nice step forward with reference to sending email in BuddyPress.
-
Henry Wright replied to the topic Re-ordering a custom groups loop in the forum Creating & Extending 8 years, 10 months ago
Ajax would be my first thought. Check out the AJAX in Plugins article for an introduction to that:
https://codex.wordpress.org/AJAX_in_Plugins -
Henry Wright replied to the topic page meta in the forum How-to & Troubleshooting 8 years, 10 months ago
This will be added by your theme. Check out the Template Hierarchy article for info on how to customise what info is displayed.
Ref https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
-
Henry Wright replied to the topic buddypress function reference in the forum How-to & Troubleshooting 8 years, 10 months ago
The best code ref you’ll find is the plugin’s source. Inline documentation is very comprehensive
-
Henry Wright replied to the topic buddypress function reference in the forum How-to & Troubleshooting 8 years, 10 months ago
The closest you’ll find is the section for developers: https://codex.buddypress.org/context/developer/
-
Henry Wright replied to the topic Undefined index: position in Buddybar in the forum How-to & Troubleshooting 8 years, 10 months ago
Position is actually optional so if you wanted to avoid investigating what exactly is going on here you could just remove it altogether
-
Henry Wright replied to the topic Undefined index: position in Buddybar in the forum How-to & Troubleshooting 8 years, 10 months ago
This is most probably a result of your code (or a plugin you’re using) referring to a position array key, which isn’t defined.
-
Henry Wright replied to the topic Users creating posts in the forum How-to & Troubleshooting 8 years, 10 months ago
BuddyDev have the Simple Front End Post plugin: http://buddydev.com/plugins/bp-simple-front-end-post/
-
Henry Wright replied to the topic Community calendar/who's here function in the forum Third Party Plugins 8 years, 10 months ago
That’d work too. Thinking you’d need to reword it but that can be done through localisation. Ref: https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/
-
Henry Wright replied to the topic Community calendar/who's here function in the forum Third Party Plugins 8 years, 10 months ago
Just an idea: if you have no success finding a shared BuddyPress calendar, try searching for shared WordPress calendar. In BuddyPress, members are actually WordPress users so in theory things should work. You’ll need to test though, as always.
-
Henry Wright replied to the topic [Resolved] Conditional Tag to Target Specific Buddypress Group Page in the forum How-to & Troubleshooting 8 years, 10 months ago
Thanks for letting me know, @markob17. I always get current_action and current_item mixed up and should really do more testing 🙂
-
Henry Wright replied to the topic [Resolved] Conditional Tag to Target Specific Buddypress Group Page in the forum How-to & Troubleshooting 8 years, 10 months ago
@markob17 great to see you got it working. I’m wondering though, which function of mine isn’t working?
-
Henry Wright replied to the topic how can i change word Forums? in the forum How-to & Troubleshooting 8 years, 10 months ago
Can you paste the code you’re using?
-
Henry Wright replied to the topic [Resolved] Conditional Tag to Target Specific Buddypress Group Page in the forum How-to & Troubleshooting 8 years, 10 months ago
Haven’t used it in a while but try
bp_is_current_item()
. So, your condition would be:if ( bp_is_groups_component() && bp_is_current_item( 'events' ) ) {
// Code.
} -
Henry Wright replied to the topic [Resolved] Conditional Tag to Target Specific Buddypress Group Page in the forum How-to & Troubleshooting 8 years, 10 months ago
Try
bp_is_groups_component()
.Ref: https://codex.buddypress.org/developer/template-tag-reference/
-
Henry Wright replied to the topic how can i change word Forums? in the forum How-to & Troubleshooting 8 years, 10 months ago
@bruce30 I’ve made an edit to the code above which means it’ll now work for all text on your site, not just bbPress or BuddyPress text. So now if a new third-party plugin you add decides to use the word Forum, that will also be translated. I think this is a better approach.
-
Henry Wright replied to the topic how can i change word Forums? in the forum How-to & Troubleshooting 8 years, 10 months ago
@bruce30, building on @danbp‘s answer, you can add another
case
. Take a look at this example below which has 4 cases. Feel free to add or remove cases yourself. The number of cases you use will depend on the number of words or phrases you need to change.function bruce_localisation( $translated, $original_text, $domain ) {
switch (…[Read more]
- Load More
@henrywright
Active 8 months, 1 week ago