How do I disable confluence blogs from users' personal profile

Liam O'Neill
Contributor
October 15, 2012

We don't want to launch our confluence intranet with blog capabilities, so I've disabled blog post permissions in all spaces.

However, users can still add a blog post from their personal spaces - is it possible to disable this feature?

1 answer

0 votes
Giuliano C_
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 15, 2012

You can disabel this feature through space by space basis, but you can use a standard template space and the Copy Space plugin to make the changes in every space.

To be updated and know which user have the permission, please, refer to the following SQL report:

select spaces.spacekey, spaces.spacename, spacepermissions.*
from SPACEPERMISSIONS, spaces
where spacepermissions.spaceid=spaces.spaceid
and
SPACEPERMISSIONS.permtype = 'EDITBLOG'
order by spaces.spacename

Also, there's a Javascript to disabel this function in the dashboard and all spaces. You can add it to your Confluence instance through Confluence Admin > Look and Feel > Custom HTML. Then paste the script at the end of the HEAD section. Please, refer to the following JS:

<script>
  AJS.toInit(function(){
    AJS.$('#createBlogpostLink').parent().hide();
    AJS.$('#addBlogLink').parent().hide();
  });
</script>

The scripts and the SQL report came from another answer. I didn't create the answer for you, just picked up some references form another question on atlassian.answers. https://answers.atlassian.com/questions/2124/how-can-i-disable-adding-blog-posts

Hope it helps you.

Kind Regards

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events