-
Prashant Singh replied to the topic Can not react – icons in the forum How-to & Troubleshooting 6 years, 1 month ago
In these situations most probably plugins are getting conflicted and that’s why this issue is coming.
I have just tested with BuddyPress and twentyseventeen theme and it’s working fine: https://screencast-o-matic.com/watch/cF6Qb7YY6ZPlease try to disable plugins one by one and check if the issue remains same or gone.
Thanks
-
Prashant Singh replied to the topic Can not react – icons in the forum How-to & Troubleshooting 6 years, 1 month ago
Can you please confirm if this behaviour remains same with the default theme like twenty seventeen?
If no then certainly your theme is creating the issue there.
Thanks
-
Prashant Singh replied to the topic Can not react – icons in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
They are called favourite and delete activity icon. Can you please confirm if there is any js error in browser console when you click theme?
Thanks
-
Prashant Singh replied to the topic Activity/updates in the forum How-to & Troubleshooting 6 years, 1 month ago
Create a file named bp-custom.php in the plugins folder and then put this code there. For reference: https://codex.buddypress.org/themes/bp-custom-php
If not able to do it then the easiest way is to install the plugin Code Snippets https://wordpress.org/plugins/code-snippets/ and add a new snippet there, then paste this code.
Thanks
-
Prashant Singh replied to the topic Activity/updates in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please try following code snippet:
function yuravw_remove_dp_activity( $activity_object ) {
$exclude = array( 'new_avatar');
if( in_array( $activity_object->type, $exclude ) )
$activity_object->type = false;
}
add_action('bp_activity_before_save', 'yuravw_remove_dp_activity', 1, 15 );It will stop any new activity of…[Read more]
-
Prashant Singh replied to the topic Default Landing group while editing Member profile in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please check this thread: https://buddypress.org/support/topic/how-to-hide-base-group-in-the-edit-profile-panel/
Thanks
-
Prashant Singh replied to the topic Profile field groups tabs while editing profile in the forum How-to & Troubleshooting 6 years, 1 month ago
You can use this hook ‘xprofile_data_before_save’ to do it. Just have to redirect to next profile group.
Thanks
-
Prashant Singh replied to the topic Profile field groups tabs while editing profile in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
It will need custom coding. Profile groups are already there and one can edit but save and continue will require custom coding.
Thanks
-
Prashant Singh replied to the topic Activation Email in the forum Miscellaneous 6 years, 1 month ago
Hi,
Please check this article: https://joshuawinn.com/huge-email-delays-on-rackspace-cloud-sites-dont-use-php-mail/
Some good information is there.
Thanks
-
Prashant Singh replied to the topic Is Buddypress compatible with optimizepress and/or infusionsoft in the forum Third Party Plugins 6 years, 1 month ago
I am not sure that infusionsoft tags will let you handle access to the community but you can always test once. I never tested that.
-
Prashant Singh replied to the topic Buddy Press User Profile Avatar Picture Preview not Showing in the forum How-to & Troubleshooting 6 years, 1 month ago
Glad to know that it is fixed 🙂
-
Prashant Singh replied to the topic How to send private massage only support person's role not anyone in buddypress in the forum How-to & Troubleshooting 6 years, 1 month ago
You can use a plugin called code snippets abd there add a new snippet then paste this code there.
-
Prashant Singh replied to the topic Activity Feed showing items twice in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
For him it was his theme’s bug. So you can also test once with the default theme like twentyseventeen and if it fixes the bug then certainly your theme have the issue. You have to then report to the theme developer.
Thanks
-
Prashant Singh replied to the topic Activation Email in the forum Miscellaneous 6 years, 1 month ago
I think now we have to just debug using these resources: https://premium.wpmudev.org/forums/topic/buddypress-does-not-send-activation-email
-
Prashant Singh replied to the topic Issues with uploading profile pictures in the forum How-to & Troubleshooting 6 years, 1 month ago
Great to know that it is fixed now 🙂
-
Prashant Singh replied to the topic profile page sidebar assignment in the forum How-to & Troubleshooting 6 years, 1 month ago
https://codex.wordpress.org/Function_Reference/dynamic_sidebar
We can use this function to call the sidebar.
Thanks
-
Prashant Singh replied to the topic How to send private massage only support person's role not anyone in buddypress in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
It seems like with the new template we can not do too much changes but still please try this code:
add_filter( 'get_footer', 'ps_fill_user_name' );
[Read more]
function ps_fill_user_name(){
if (bp_is_messages_compose_screen()) {
?>
<script… -
Prashant Singh replied to the topic Extra information form after email confirmation in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
You can use this plugin https://buddydev.com/plugins/bp-autologin-on-activation/1
So once they will confirm their account using activation link they will be auto logged-in and then will be sent to their profile where they can fill there details. But if you want to make them redirect directly to the extra profile tab then use this…[Read more]
-
Prashant Singh replied to the topic Is Buddypress compatible with optimizepress and/or infusionsoft in the forum Third Party Plugins 6 years, 1 month ago
Hi,
I am not sure what kind of compatibility you want but I can see this https://memberium.com/tag/buddypress/ and I guess people are already using BP with Infusionsoft.
Thanks
-
Prashant Singh replied to the topic Issues with uploading profile pictures in the forum How-to & Troubleshooting 6 years, 1 month ago
Ok, please do the same with plugins now. Disable them one by one, except BuddyPress, to check if the issue remains same or not. Just go like – disable one plugin and check if the issue is there or not. If yes then re-activate the plugin and if not then this is the culprit and please report to plugin developers then.
Thanks
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago