Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey there Quinn Goldwin,

    The tutorial you linked is 5 years old so I’m not really sure if that can be the issue.

    I’ve tested BuddyPress Activity Plus plugin to see if it shows on properly on group page activity stream and it works properly, see screenshot https://screencast.com/t/2tRJ1TJq.

    I’m not really sure what modifications you’re trying to make but it’s quite possible that the code in that post is outdated and the plugin is not working properly because of that.

    Best regards,
    Bojan

    Thread Starter Quinn Goldwin

    (@quinngoldwin)

    the only difference I see is the activity form is now sitting on a new URL

    original buddypress activity url
    https://www.mysiteurl.com/groups/mygroupname

    activity url on my site
    https://www.mysiteurl.com/groups/mygroupname/activity

    do you have the coding set where it is going to call the bpfb_form_container on the groups root or is the coding setup where bpfb_form_container is called on every “whats new” activity form?

    If the answer is yes for the groups root, can you please tell me the code location to change it to group/activity?

    much appreciated

    Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey again Quinn Goldwin,

    The issue is not related to the to the slug of the group activity page but rather to the way how conditions are set in the plugin.

    I’ve talked to our plugin developer on this one and we’ll try to add a filter in the following version which we’ll be able to use so ActivityPlus is shown in your custom group page.

    Best regards,
    Bojan

    Thread Starter Quinn Goldwin

    (@quinngoldwin)

    found a quick solution. It is calling the home page to show activity plus.

    heres what i did to fix it.

    in the plugin folder > lib > class_bpfb_binder.php

    CHANGE THIS

    // Load the script on Group home page
    			(defined('BP_GROUPS_SLUG') && bp_is_groups_component() && 'home' == $bp->current_action)
    		) {

    TO THIS

    // Load the script on Group home page
    			(defined('BP_GROUPS_SLUG') && bp_is_groups_component() && 'activity' == $bp->current_action)
    		) {

    OR WHAT EVER THE SLUG NAME FOR YOUR ACTIVITY PAGE IS.

    Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey again Quinn Goldwin,

    Awesome work ?? And thank you for posting solution as well!

    Have a great day!

    Cheers,
    Bojan

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘after adding a custom group home page, Activity plus doesnt show in groups’ is closed to new replies.