How to hide this type of button only on this duplicate item page?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hopegeek
    Junior Member
    • Dec 2023
    • 13

    How to hide this type of button only on this duplicate item page?

    Hello community, please i would like to find out how i can hide this CREATE button on duplicate item page.
    I tried using CSS to handle it but it has affected the whole system, i want it to be hide only on that specific page, help me to locate the view about it then i can set HTML attribute and make use of it in CSS to hide it.
    Click image for larger version

Name:	image.png
Views:	285
Size:	66.0 KB
ID:	100712
    Click image for larger version

Name:	image.png
Views:	183
Size:	21.5 KB
ID:	100713

    Only the create button i want hide, it should only affect this modal please.
    How to go about it?
    Thanks in advance.
  • abidoss
    Senior Member
    • Mar 2023
    • 230

    #2
    Workaround: API Before-Save script that will re-check duplicates and throw an error regardless duplicate checking is suppressed (`recordService\skipDuplicateCheck`).

    Comment


    • hopegeek
      hopegeek commented
      Editing a comment
      Could you write the code for me to see please?? i don't really understand your suggestions.
      Thank you.
  • abidoss
    Senior Member
    • Mar 2023
    • 230

    #3
    You can check here to see if it can help you, even if it's a bit old.
    Hi, I was able to present the information duplication message, but even so the system is letting you save the "Save" button, is it possible to

    Comment


    • hopegeek
      hopegeek commented
      Editing a comment
      Thanks so much for this link, i followed the instructions but still not working for the current version of the CRM.
      Any other suggestions to link me with ?
      Thank you.

    • hopegeek
      hopegeek commented
      Editing a comment
      I just want to hide or remove: create button from the modal when duplicate entry pops up and leave the Cancel button there.
  • Ashif Malayil
    Senior Member
    • Dec 2023
    • 176

    #4
    Any solution for this i also have the same query.

    Comment

    • eymen-elkum
      Active Community Member
      • Nov 2014
      • 472

      #5
      Add custom css file and put the following css style:

      Code:
      div[id^="duplicate-modal-container"] .modal-footer button[data-name="save"]{
          display: none
      }
      ​
      CEO of Eblasoft
      EspoCRM Expert since 2014
      Full Stack Web Developer since 2008
      Creator of Numerous Successful Extensions & Projects​

      Comment

      Working...