Events+ Organized, Attending, Maybe, Not Attending

Can you please explain “Organized”. I can’t find any documentation on it and am not sure what it is.

How do I remove Attending, Maybe, Not Attending from Profile page?

How do I remove “Organized” if I find I don’t need it.

Thank you.

Support access is granted

  • JMorris
    • I do geek stuff

    Hello again Mary,

    I believe you are referring to the BuddyPress: My Events add-on for Events+. This adds the following sections to each member’s BuddyPress profile page.

    Organized are events that the member has published (orgainized).

    If you wish to keep that feature and hide the other sections, you’ll need to use either a little CSS or jQuery to hide those links.

    Using CSS:

    #mabe-personal-li, #attending-personal-li, #not-attending-personal-li{
    display:none;
    }

    Using jQuery:

    <script>
    jQuery('#mabe-personal-li, #attending-personal-li, #not-attending-personal-li').remove();
    </script>

    If you don’t want to display any of these sections in the member’s profile, just disable the BuddyPress: My Events add-on.

    I hope this clarifies a bit.

    Best regards,

    James Morris