-
Boone Gorges posted on the forum topic Invite Options in the group Invite Anyone: 15 years, 6 months ago
@nshamatutu No way to do this yet, but it’s a good idea that I’ll look into in the future.
-
Boone Gorges posted on the forum topic Make wp-admin-bar relative position and inline within header instead of footer / absolute position? in the group How-To and Troubleshooting: 15 years, 6 months ago
The reason that the admin bar is loaded in the footer might be partially for SEO reasons, as @hnla hypothesizes, but I’m guessing it’s more for plain old load time while it’s a minor annoyance if the admin bar takes an extra second or two to show up, it’s a real problem if the content of […]
-
Boone Gorges posted on the forum topic Invite Options in the group Invite Anyone: 15 years, 6 months ago
Yup, I will make automatic joining/friending into admin options. (From my point of view, automatic friending makes more sense than automatic group joining, but I can see the value in both and I definitely want them both to be possible.) @nshamatutu Very interesting idea about displaying who invited whom. It’s easy to do. I’ll build a […]
-
Boone Gorges posted on the forum topic Add as favorite/remove favorite function doesn't work only on Members pages. in the group How-To and Troubleshooting: 15 years, 6 months ago
Go into bp-themes/bp-default/functions.php and find the function called bp_dtheme_js_terms. Copy it (including the add_action line at the bottom) and paste into functions.php of the theme you’re using.
That should at least fix the error I’m seeing in that screenshot.
-
Boone Gorges posted on the forum topic bp_filter_request: What does it do and how does it work? in the group How-To and Troubleshooting: 15 years, 6 months ago
Ha, that is a lot easier! Thanks for sharing @arxpoetica
-
Boone Gorges posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 6 months ago
@xberserker friends_friendship_accepted passes along three arguments to any function that hooks to it. Try something like this:
function do_some_stuff( $friendship_id, $inviter_id, $invitee_id ) { // Do some stuff here } add_action( 'friends_friendship_accepted', 'do_some_stuff', 10, 3 );The 3 on the add_action is very important, as it makes…[Read more] -
Boone Gorges posted on the forum topic Would this plugin be possible? Adding another tab to a BP group to allow us to display ANYTHING in i in the group Creating & Extending: 15 years, 6 months ago
If you follow the instructions I gave above, you’ll have to edit the content of the screen by typing HTML directly into display() in the plugin. It’s a bit more complicated to make the pages editable by you on the front end. The code on the codex page will actually function as a plugin, so […]
-
Boone Gorges posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 6 months ago
I think it’s this (in bp-friends.php)
do_action( 'friends_friendship_accepted', $friendship->id, $friendship->initiator_user_id, $friendship->friend_user_id ); -
Boone Gorges posted on the forum topic Would this plugin be possible? Adding another tab to a BP group to allow us to display ANYTHING in i in the group Creating & Extending: 15 years, 6 months ago
Sure, it’s easy to do.
Use the BP Group Extension API: https://codex.buddypress.org/developer-docs/group-extension-api/
Basically, each method will be blank, except for the first one (my_group_extension(), or whatever you rename it to) and display(). You will probably also want to disable the create step and the edit step, as under “Optional Parameters”.
-
Boone Gorges posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 6 months ago
@xberserker $user_id is the person who accepted (the hook happens at the very end of the process, after the person has registered and therefore has a user id), and $inviters should be an array of those people who had sent invitations to that person (the referrers).
-
Boone Gorges posted on the forum topic Add as favorite/remove favorite function doesn't work only on Members pages. in the group How-To and Troubleshooting: 15 years, 6 months ago
Ok. In that case you’ll have to check the JavaScript to see what element it’s trying to grab. (I’m not at my computer at the moment so I can’t). It’s likely that the problem has to do with the parent elements of the favorite button – somewhere up the tree, your theme doesn’t have the […]
-
Boone Gorges posted on the forum topic Add as favorite/remove favorite function doesn't work only on Members pages. in the group How-To and Troubleshooting: 15 years, 6 months ago
Can you switch back to bp-default to see if the problem still happens?
-
Boone Gorges posted on the forum topic Verify email before register in the group How-To and Troubleshooting: 15 years, 6 months ago
I don’t know off the top of my head of a good plugin that does this, but I did find some helpful (if wordy) tutorials on writing some jQuery that will make it work: http://theadhamian.wordpress.com/2009/12/01/jquery-validation-part-2-using-jquery-validation-plugin/
-
Boone Gorges posted on the forum topic Verify email before register in the group How-To and Troubleshooting: 15 years, 6 months ago
Exactly what do you mean by “verify”? How are you going to guarantee that the user gets it right? Just checking that it’s a well-formatted email address?
-
Boone Gorges posted on the forum topic Add as favorite/remove favorite function doesn't work only on Members pages. in the group How-To and Troubleshooting: 15 years, 6 months ago
It’s working OK for me. Are you using the default theme, or a custom theme? What version of BP?
-
Boone Gorges posted on the forum topic Avatar error in the group Miscellaneous: 15 years, 6 months ago
Are you using a custom theme? It looks like the necessary JavaScript might not be loading.
-
Boone Gorges posted on the forum topic bp_filter_request: What does it do and how does it work? in the group How-To and Troubleshooting: 15 years, 6 months ago
Strictly speaking, wp-load.php is the handlet for all AJAX calls, in virtue of the WP AJAX API. The key to finding the function that processes data is to look in bp-themes/_inc/ajax.php for an add_action hooked to wp_ajax_. For instance, since in this case the action being passed is members_filter, search for wp_ajax_members_filter, and the function […]
-
Boone Gorges posted a new activity comment 15 years, 6 months ago
The release of Invite Anyone v0.6.2 yesterday includes a couple of action hooks requested by the developer of the BP Cubepoints plugin. So I would expect that there will be integration very soon.
-
Boone Gorges posted a new activity comment 15 years, 6 months ago
That’s great, Gibby! Thanks for your patience and for catching those bugs.
-
Boone Gorges posted an update in the group BP System Report: 15 years, 6 months ago
Hi BP System Report users! The plugin is still young so is likely to need lots of tweaking. Please don’t be afraid to post bugs and/or suggestions for further development.
- Load More
@boonebgorges
Active 2 years, 3 months ago