-
Boone Gorges started the forum topic Group admin joined time showing as the UNIX epoch in the group How-To and Troubleshooting: 15 years, 6 months ago
For some reason, many (most?) of the group creators in my installation have date_joined = the unix epoch. Needless to say it is not the case that they joined the group in 1970. I’m not sure what’s causing this (not happening on bp.org) but I wrote a filter that displays the group creation time if […]
-
Boone Gorges posted on the forum topic All previous group activity deleted. in the group BuddyPress Group Email Subscription: 15 years, 6 months ago
Phew, that’s a relief 🙂
Good suggestion about the Email Options tab.
-
Boone Gorges posted on the forum topic Creating a new page for groups in the group Creating & Extending: 15 years, 6 months ago
Use the Group Extension API: https://codex.buddypress.org/developer-docs/group-extension-api/
Most of the methods will be irrelevant to your purposes. function display() is what you’re looking for – that’s the part that will display the content of the tab.
-
Boone Gorges posted on the forum topic Tiny Mce in the group How-To and Troubleshooting: 15 years, 6 months ago
Jonas – the only thing I can think of is a javascript conflict. Are you running other plugins that load scripts into the head of the document?
-
Boone Gorges posted on the forum topic Different Ways of Inviting in the group Invite Anyone: 15 years, 6 months ago
@hnla I have the same suspicion. That’s why I keep putting it off 🙂 In fact, I deleted my Facebook account not too long ago so it’s going to be hard for me to find a way to test a FB contact importer.
-
Boone Gorges posted a new activity comment 15 years, 6 months ago
OK, yup, you’re right, it looks like a bug. (A difference between WP and WPMU) I have a few fixes to make later today, and I’ll release a version that doesn’t have the problem.
-
Boone Gorges posted on the forum topic Different Ways of Inviting in the group Invite Anyone: 15 years, 6 months ago
-
Boone Gorges posted a new activity comment 15 years, 6 months ago
By “confirm” do you mean “activate”? I don’t think that’s possible, as the plugin gets the list of users from the WP user table, and new items are not written to the user table until after they’ve activated their accounts.
What version of BP/WP are you running? What version of the plugin? Are you allowing open signups on your site, or are all…[Read more]
-
Hi
I am running 1.2.3 / 2.9.2 not MU
I am using the default theme
Users register and are required to confirm their account using the email link
I have not created any accounts
I am using the latest version of the plugin
It is displaying all users that have confirmed and all those who have not confirmedThanks
-
OK, yup, you’re right, it looks like a bug. (A difference between WP and WPMU) I have a few fixes to make later today, and I’ll release a version that doesn’t have the problem.
-
Thanks
Best support of all the plugins
5 star plugin
-
-
-
-
Boone Gorges posted on the forum topic All previous group activity deleted. in the group BuddyPress Group Email Subscription: 15 years, 6 months ago
Wow, you mean the plugin actually deleted the items out of your activity tables? To the best of my knowledge there is nothing in this plugin that’s even capable of deleting a single activity item.
-
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
Make sure that when using the Group Extension API, you change the class name and the name of the init method to match the name in bp_register_group_extension() call at the end. So, in the file that you sent me, since you say bp_register_group_extension( ‘New_Tab’ ), make sure that at the beginning of the file you […]
-
Boone Gorges posted on the forum topic Different Ways of Inviting in the group Invite Anyone: 15 years, 6 months ago
This is definitely on my list. I’m going to have a good hard look at plaxo to see how much of its code I can steal.
-
Boone Gorges posted on the forum topic Plugin not working? in the group Invite Anyone: 15 years, 6 months ago
Are you signed in?
If you’re signed in and try to visit the register page (which is where the accept-invitation link goes), you’ll be redirected to the BP main page. Log out of BP and try again.
-
Boone Gorges posted on the forum topic Understanding bp_core_load_template in the group Creating & Extending: 15 years, 6 months ago
I must admit that I all the template redirection of BP and WP are somewhat magical and mysterious to me. What about just requiring the template? If you’re using the BP Group Extension API, you need to have a display() method; the content of the method could be to require the necessary template file. That’s […]
-
Boone Gorges posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 6 months ago
@xberserker – It’s a bit hard to tell just from that what’s going on. Put
print_r($inviters)at the very beginning of the function just to see what the variable looks like. -
Boone Gorges posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 6 months ago
@xberserker – I think that $inviters is an array. So you’ll probably need to do something like
foreach( $inviters as $inviter ) {
cp_alterPoints( $inviter, ......
cp_log( ...., $inviter .....
} -
Boone Gorges posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 6 months ago
@xberserker – I’m afraid I don’t know how the function cp_alterPoints works. Try printing the content of $inviter_id and $invitee_id just to make sure that they’re being fed to the argument. Beyond that you’ll have to dig deeper into CubePoints to figure out what’s going on.
-
Boone Gorges started the forum topic Hidden group info collecting not working in the group BP System Report: 15 years, 6 months ago
You may notice that BP System Report is returning zeros when it auto collects data about hidden groups. That’s because of a limitation in BP core that prevents automated means of accessing groups marked as hidden. I’ve submitted a patch to fix the problem, but it probably won’t be integrated until BP 1.3. Thanks for […]
-
Boone Gorges posted a new activity comment 15 years, 6 months ago
That’s a good idea. The problem with per user tracking is that it adds a ton of overhead to your server. Might be a good idea for another plugin, only to be used in small bp installations.
-
Yes I think it would help recognize heavy users and another use would be to have frontend display of the data, if the stats are there, many of them can be used for the member profile. — i’ve been trying to find and pull all stats for_user lately and I came across this plugin and thought it would be cool if i could get help getting counts for all…[Read more]
-
-
Boone Gorges posted on the forum topic Simplify? in the group Custom Profile Filters for BuddyPress: 15 years, 6 months ago
Yeah, I’ve been mulling that kind of change for a long time. I should talk to JJJ, as I know he’s been overhauling xprofile and had once mentioned including something like this in the core. Otherwise to write the JavaScript to do what you say wouldn’t be too hard.
-
Boone Gorges posted on the forum topic Suggested integration in the group CubePoints Buddypress Integration: 15 years, 6 months ago
10 is the priority, which is used to reconcile when different functions are hooked to the same action. 10’s the default, so putting it there doesn’t change anything, but it’s needed so that 3 is understood as the $accepted_args argument.
See https://codex.wordpress.org/Function_Reference/add_action
- Load More
@boonebgorges
Active 2 years, 3 months ago
Thanks
Best support of all the plugins
5 star plugin