Jump to content

Featured Replies

Posted

Since my site is only a forum and I don't need user to create events, I would like to know how to remove the + Create ▼ link that appears in the header. 

Solved by Adriano Faria

Go to solution
  • Community Expert

There is no way in which to remove that without customisation to your theme. To note however, this is not just for events. Its for the creation of any content item, including topics

 

Since my site is only a forum and I don't need user to create events

Then disable the calendar application, or restrict access to it?

  • Community Expert
  • Solution

You can also probably hide via custom CSS ( li cCreate ).

  • Author
 

Then disable the calendar application, or restrict access to it?

How can I disable it? I tried removing permissions for all, but the "create" button remains. Do I have to uninstall the app?

  • Community Expert

You would go to System>Site Featureds>Applications and click "Enabled" next to the calendar application if you wish to just disable that application

Your provided information was "I don't need user to create events"

Disabling the app or restricting access to the calendar will stop that. It won't hide the 'Create' button though.

Here is the answer to your actual requirement - use CSS to hide it.

li#cCreate{
	display:none;
}

 

  • Author
 

There is no way in which to remove that without customisation to your theme. To note however, this is not just for events. Its for the creation of any content item, including topics

Thank you. I'll customize the CSS then, no problem, just wanted to make sure that was the way to handle it. Since there's a big "Start new topic" button a few pixels below I feel that link is redundant for my site.

 

You would go to System>Site Featureds>Applications and click "Enabled" next to the calendar application if you wish to just disable that application

Ok I don't know how I didn't see it, I was just on that page trying everything. 🤦‍♂️

  • Author
 

You can also probably hide via custom CSS ( li cCreate ).

Thank you (and thanks to @Nathan Explosion). Because there's also a separator right after that "Create" link that I also wanted to hide I ended up using this: 

/* Hide "Create" link next to bell and letter icons in the header */
li#cCreate li#cCreate+li.elUserNav_sep {
    display:none;
}

 

Edited by Jamynee

Recently Browsing 0

  • No registered users viewing this page.