hide all links by containing element

Deleted user August 31, 2016

This question is in reference to Atlassian Documentation: How to hide Download All links for attachments in Confluence

I want to hide all links which contains "/emptytrash", i tried the following code but it does not work.

a[href*="/emptytrash"] { display: none; }

 any ideas?

1 answer

0 votes
Siddheshwar mhetre
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 31, 2016

Hi,

 You can do this by adding script in Custom HTML

Go to the Administrator -> LOOK AND FEEL -> Custom HTML

Add below code to tag

 image2016-9-1 10:30:3.png

  1. If you want to remove the link from Purge All, use below code

 

<script>
  AJS.toInit(function(){
$("#space-tools-body").load( "site/result.htm", function() {
   $("#space-tools-body a").removeAttr("href")
});
}
});
</script>

    2. If you want to hide Content of Purge All you can use below code

<script>
  AJS.toInit(function(){
if(window.location.href.indexOf("/emptytrash") > -1) {
  jQuery("#space-tools-body").hide();
}
});
</script>

Hope this work!

Regards,

Siddheshwar

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events