Skip to:
Content
Pages
Categories
Search
Top
Bottom

Buddypress activity plus pludin issues

  • @shahriar83

    Participant

    wordpress 4.9.6. buddypress 3.0.0
    after instal of Buddypress 3.0.0 with flatesome theme. Everything is good but suddenly buddypress activity plus opions become disappear in with buddypress activity post box. what can I do.

Viewing 15 replies - 1 through 15 (of 15 total)
  • @vapvarun

    Participant

    @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.

    @shahriar83

    Participant

    thanks @vapvarun, after deactivate of buddypress activity reaction plugin. its work. Buddypress activity plus work propery. thanks a lot.

    @shahriar83

    Participant

    But cant work with in activity post box of any group. what can I do? @vapvarun

    @vapvarun

    Participant

    @shahriar83 what exact issue are your getting on them?

    @shahriar83

    Participant

    Buddypress activity plus not active with groups in my web.

    @vapvarun

    Participant

    I am able to replicate the issue, You can report here once
    https://wordpress.org/support/topic/problem-with-new-buddypress-template/

    @jonaskjodt

    Participant

    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');

    @shahriar83

    Participant

    @jonaskjodt your php show fatal eror!!!!!!!

    @vapvarun

    Participant

    @jonaskjodt that’s very old thread and different topic. There are some structural changes inside the template files and actions are also updated.

    @jonaskjodt

    Participant

    Ah alright, my mistake 🙂

    @shahriar83

    Participant

    so, please can you give update thread for this issues.

    @vapvarun

    Participant

    @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.

    @shahriar83

    Participant

    ,@vapvarun thanks.

    @shahriar83

    Participant

    I cant do anything? because I am not expert about internal work of wordpress language.

    @vapvarun

    Participant

    Keep eye on https://wordpress.org/support/topic/buddypress-activity-plus-plugin-issues/ thread. That’s all you have to do

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Buddypress activity plus pludin issues’ is closed to new replies.
Skip to toolbar