@shahriar83 seems working fine with Flatsome if you have not customized any template inside child theme
https://drive.google.com/a/wbcomdesigns.com/file/d/1QkXAnrqFYFKV3kLu47QQ0hiBD7TJZIfz/view?usp=drivesdk try to deactivate other bp related plugins to debug the issue.
thanks @vapvarun, after deactivate of buddypress activity reaction plugin. its work. Buddypress activity plus work propery. thanks a lot.
But cant work with in activity post box of any group. what can I do? @vapvarun
@shahriar83 what exact issue are your getting on them?
Buddypress activity plus not active with groups in my web.
I had some issues with this earlier too, using the code supplied in this thread should clear up your issue.
Here’s the code if you’re unable to click the link for some reason. You should put it in your bp-custom.php file.
function toa_check_page_reqiurement_and_lie_to_buddypress ($is, $component) {
global $bp;
if ($is || "activity" !== $component) return $is;
if ((defined('BP_GROUPS_SLUG') && bp_is_groups_component() && 'activity' == $bp->current_action)){
return true;
}
return $is;
}
function toa_setup_activity_filter () {
add_filter('bp_is_current_component', 'toa_check_page_reqiurement_and_lie_to_buddypress', 10, 2);
}
function toa_teardown_activity_filter () {
remove_filter('bp_is_current_component', 'toa_check_page_reqiurement_and_lie_to_buddypress', 10);
}
add_action('bpfb_init', 'toa_setup_activity_filter');
add_action('bpfb_add_cssjs_hooks', 'toa_teardown_activity_filter');
@jonaskjodt your php show fatal eror!!!!!!!
@jonaskjodt that’s very old thread and different topic. There are some structural changes inside the template files and actions are also updated.
Ah alright, my mistake 🙂
so, please can you give update thread for this issues.
@shahriar83 You have already created a thread with BP activity plus support, Explain to them how to replicate the issue.
You can replicate the issue with Template Pack BuddyPress Nouveau after BP 3.0 install using WordPress Default theme “Twenty Seventeen” at singe group activity page.
I cant do anything? because I am not expert about internal work of wordpress language.