Christian Freeman (codelion)
Forum Replies Created
-
Forum: Plugins
In reply to: [Buddy-bbPress Support Topic] "Support Topic Stats" Widget DisappearsI am using the latest version of bbpress (Version 2.5.4)
And I do have Buddy BB Press Support Topic network activated on my multisite. I’m not sure if that’s what’s causing the issue, but I did have a problem with the version that I was using before. The plugin would only work when I had it network activated.
I’ll try single site activation to see if that fixes the problem.
Forum: Plugins
In reply to: [BuddyPress Follow] Update Follow ContsThanks, that is very simple.
So, once I drop the wp_bp_follow table(s) [I’m running a multisite] I should be able to just deactivate BP Followers and reactivate it to re-create those tables again, right?
Forum: Plugins
In reply to: [BuddyPress Follow] Update Follow ContsI’m deleting the users via the Network Admin (I’m running a Multisite).
It does appear that the user’s follower/following connections are being removed upon deletion, but when was this feature added?
My Follower/Following counts are including users that don’t exist anymore. It must be some leftovers from a previous version.
Is there a way to simply remove ALL Follower/Following connections from the database and start fresh?
And I will help test v1.3, I just need to finish setting up my testing environment again.
Forum: Plugins
In reply to: [BuddyPress Extended Friendship Request] Error when accept friend requestGreat, thanks Brajesh!
Forum: Plugins
In reply to: [BuddyPress Extended Friendship Request] Error when accept friend requestI’m using version 1.0.4 and I’m getting the same error message:
Fatal error: Cannot unset string offsets in /home/theext7/public_html/wp-content/plugins/buddypress-extended-friendship-request/bp-extended-friendship-request.php on line 373
This only seems to happen when a new user is registering for my site, and my custom function automatically friends the user with the user who invited them using the
friends_add_friendfunction.I only get this error message when I have
force_acceptset to true. When I set it to false and the user tries to accept the request, I get the buddypress error message that says “there was a problem completing this friend request”, but the friend connection does go through.Is there a way to programmatically add a default friend request message via friends_add_friend?
Thanks for the VERY useful plugin.
Ok, I just realized that the Paypal express payments are indeed processing. However, I’m still getting the php error message, so the issue is only occurring on the PM Pro side.
As I mentioned before, I want to purchase premium support for this plugin, but I need to know that PM Pro will work for me, before I do so. And right now, this is the only issue standing in the way of the launch of my site.
Please help, I need a solution soon.
Thanks
Forum: Plugins
In reply to: [Mega Menu by WooRockets.com] Issues with Add Content Menu and Menu IconsAlso, I was unable to get my css fix working permanently by adding the rule to my theme’s css file.
Forum: Plugins
In reply to: [BuddyPress Follow] Auto Follow After New User RegistrationTry adding this code to your functions file.
function auto_follow_users( $user_id ){ if ( function_exists( 'bp_follow_start_following' ) { // Add your user ids here $users_to_follow = array( '1', '2', '3' ); foreach ( $users_to_follow as $follow_user ) { bp_follow_start_following( array( 'leader_id' => $follow_user, 'follower_id' => $user_id ) ); // If you don't want them to follow back remove the line below bp_follow_start_following( array( 'leader_id' => $user_id, 'follower_id' => $follow_user ) ); } } } add_action('bp_core_activated_user', 'auto_follow_users', 10, 1);Then, all you should have to do is change the array by adding the user ids of the users that want the new users to follow.
Let me know how it works for you . . .
Forum: Plugins
In reply to: [BuddyPress Follow] Followers/Following Shows All Members After Slug ChangeAlright, I’ve updated the bp-follow-hooks.php file and it works perfectly. Thanks for the quick solution.
Is there any way to do append query arguments to the sharethis link?
I’ve tried changing the st_link() function, but when I change the link, it doesn’t seem to be taking effect. It continues to show the default link that is being shared.
I need to know if this is possible so that I’ll know if I need to look into other options.
Thanks
I asked the same question here.
Basically, if you activate network subsite helper on all subsites except for the site that you want to be you “Main Site” for PM Pro, it should work.
I haven’t tried it myself, I just ended up making my main site of my multisite install the main site for PM Pro.
Forum: Plugins
In reply to: [BadgeOS] Can't Create Level Achievement TypeOk, I figured out that the update didn’t fix it. I have myCRED 1.5.4 installed and I realized that if I didn’t add a myCRED point value for the achievement, it wouldn’t appear in the user’s BP profile.
Forum: Plugins
In reply to: [BadgeOS] Can't Create Level Achievement TypeI’m really not sure what caused the issue myself, but the problem has been resolved after I updated to BOS 1.4.3.
Thanks for looking into this for me.
Forum: Plugins
In reply to: [BadgeOS] Can't Create Level Achievement TypeOk, I took your advice and I created the “Rank” achievement type.
This fixed the problem with PM Pro checkout, but now there’s a problem with the BOS Community Addon. Whenever a user earns a “Rank” achievement, it doesn’t appear in the Achievements tab of their buddypress profile, but my other achievement types do show up.
I checked the settings and it is set to show to the user.
Another weird thing is, when I checked this with a user that had no PM Pro membership level, the Rank achievement showed up on their profile.
Do you know what could be causing this?
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Action Hooks for New SubscriptionWhen you say “create your own subscription form”, do you mean:
A) Create a subscription form in my MailPoet settings?
OR
B) Create my own form via html/php?