Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted May 5, 20222 yr 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.
May 5, 20222 yr 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
May 5, 20222 yr 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?
May 5, 20222 yr 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?
May 5, 20222 yr 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
May 5, 20222 yr 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; }
May 5, 20222 yr 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. 🤦♂️
May 5, 20222 yr 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 May 5, 20222 yr by Jamynee