Replies
Hi Kelsey,
Welcome back to Buddydev forums.I just had a look at your activity page and I see a lot of javascript errors. Please fix them.
Your tweet blender plugin is not loading js files and there are a few more error. Please try to fix the js errors and then check if it is working ?
This plugin uses javascript to detect the location of the end of activity and since javascript in browser is a single threaded scripting language, An error before the code will cause any following code to stop execution. That’s what is happening(My guess) here.
- Brajesh Singh on September 22, 2015 at 8:30 pm in reply to: "Rate Limit User Activity" Breaks "Activity as Wire" and Notifications #547
Hi Steve,
Thank you for posting.
I was not aware of the issue but these plugins may conflict. Both deal with the activity updates in different way and there is a possibility of conflict.I will look into it and get a solution by tomorrow.
Thank you
Brajesh - Brajesh Singh on September 22, 2015 at 2:44 pm in reply to: [Resolved] Anonymous Plugin with rtMedia (conflict) #545
Hi Sebastian,
This is a problem at the end of RT Media.Anonymous activity does not do any sql query directly. All we do is filter
‘bp_has_activities’ and pass a meta_query argument. BuddyPress handles the rest. Please ask the RT Media guys to look into it, most probably thy are doing direct query/filtering on the activities which is conflicting with the activity meta query. Hi Jay,
You are most welcome. Did that solve the issue?- Brajesh Singh on September 22, 2015 at 9:19 am in reply to: [Resolved] notifications with custom post types using the notify author plugin #542
Hi Rosie,
Thank you for asking. this plugin already does that. There is no need to do anything extra. It will notify for all post types.Hope that clarifies it.
PS: I see you have marked it resolved, I hope you got that before my post 🙂
Thank you
Brajesh BuddyPress should be network activated. I haven’t tested the per site configuration with multisite & bp multi network, can’t say much about that.
Hi Milo,
Sorry about the confusion.1. If you want to have a separate domain for the second site the first thing you need to do is use a Multisite Domain mapping plugin and configure the mapping. Check if it works properly by visiting the second domain. Most of the domain mapping plugin will also give you the option to force redirect to your new domain when accessed directly(the sub site). So, That should fix your two instance issue.
2. once you are done with that, just enable Multisite network plugin and activate BuddyPress. Visiting the dashboard/settings will lead to make it work as earlier.
What I am trying to say is the only thing you need to think is about configuring Domain mapping plugin to work properly(setting up DNS etc). This multi network plugin does not have any special requirement or any issue whether you use domain mapping or not.
Hi Milo,
With BuddyPress Multi network there is no specific settings for domain mapping(It does not need ). If you configure domain mapping properly, It will work out of the box.The concept of domain mapping on multisite is that you have the same database but instead of using sub domain/directory style child blogs, you map these child to Independent domains.
Please check and make sure that Multisite domain mapping is working properly and then you can try the multi network plugin.
- Brajesh Singh on September 20, 2015 at 11:07 am in reply to: [Resolved] Prevent subscribers from uploading images? #531
Hi A,
Apologies for the delayed reply.
Please put this in your bp-custom.phpadd_filter( 'mpp_user_can_create_gallery', 'mpp_custom_prevent_gallery_creation', 11, 3 ); function mpp_custom_prevent_gallery_creation( $can_do, $component, $component_id ) { return buddydev_is_above_subscriber(); } add_filter( 'mpp_user_can_upload', 'mpp_custom_prevent_gallery_upload', 11, 4 ); function mpp_custom_prevent_gallery_upload( $can_do, $component, $component_id, $gallery ) { return buddydev_is_above_subscriber(); }
That will do it but the Ui will be still visible.
Hi Jay,
My apologies for the delayed reply.Please open the sidebar.php and look for this
<input type="hidden" name="testcookie" value="1" />
should be on line 67. Please remove that and it should be fixed.