Downlaod and Copy BUttons on pictures


@lindsay_support @danny_support Is there a way to get rid of those download and copy buttons here? I’m also implementing pictures from databases and for Language exam training and I don’t really want them to be able to download those pictures, but more importantly, it looks just professional.

According to Claude, this is a Pickaxe-specific feature, and I can see that for actual AI image creation they are very helpful, so maybe you can give me a hint on a custom script on how to get rid of them on specific pickaxe, because in my use case they are really a pain.

Thank you!

1 Like

Hi @easydeutsch ,
Thanks so much for reaching out. There is, in fact, custom code you can use to hide the download & copy buttons.

To apply this for the agents that you are using for your language exams, head to your Deployments & Portals section for that agent and add this custom code to the Header section.

<style>
  .my-2 > .flex.items-center.justify-between > div:last-child > button:nth-of-type(1),
  .my-2 > .flex.items-center.justify-between > div:last-child > button:nth-of-type(2),
  .pxe-my-2 > .pxe-flex.pxe-items-center.pxe-justify-between > div:last-child > button:nth-of-type(1),
  .pxe-my-2 > .pxe-flex.pxe-items-center.pxe-justify-between > div:last-child > button:nth-of-type(2) {
    display: none !important;
  }
</style>

Please note that this custom code will hide buttons for other generated files, such as PDFs, images, or documents.

Let me know if you have any questions.

Best, Brian.

1 Like