How can I remove "Suggested Articles" from the ticket submission form?

Return to top

25 Comments

  • Sam
    Community Moderator

    I was able to achieve this by adding the following line into script.js:

    $('div.suggestion-list').hide();

    The 'searchbox' element is contained within the 'suggestion-list' element, so suppressing the parent element effectively hid it.

    3
  • Dave Dyson

    Thanks for sharing your solution, Samuel!

    1
  • Wade Fitzner

    有年龄的增长,不同的或更可能……藏den files that I am not seeing to make this change?

    suggestion-list does not exist in my style.css, nor the page I am working on.

    Im trying to add some code to hide the suggestion list for one pulldown, but have it available for another. I've emailed support, with no responses.

    It will more than likely be an addition like this....

    In the HTML
    form

  • Subject Dropdown #1


  • And in the CSS
    .hidden{ display: none }

    Any help would be appreciated.

    0
  • Christopher Kennedy
    Zendesk Developer Advocacy

    Hi Wade,

    The code you add will first need to detect that the conditions where you wish to hide suggested articles are present. This will most likely be easier with Javascript. Once your code identifies this, then it can use the one-line snippet that Samuel shared to finally hide the suggested articles.

    Best,

    0
  • Anita Rajkumar

    How to hide suggested articles only when tab out from email subject?

    0
  • Dave Dyson
    Hi Anita, what do you mean by "only when tab out from email subject" ?
    0
  • Anita Rajkumar

    onmouseout - is it possible to hide when the user moves the mouse away from email subject

    0
  • Tipene Hughes
    Zendesk Developer Advocacy
    Hey Anita!

    Something like this should do the trick:

    const requestField = document.getElementById("request_subject"); const suggestionList = document.querySelector(".suggestion-list"); requestField.addEventListener('mouseover', function () { suggestionList.style.display="block" }) requestField.addEventListener('mouseout', function() { suggestionList.style.display="none" })

    You'll also need to adddisplay: noneto the.form .suggestion-liststyling:

    .form .suggestion-list { display: none; font-size: 13px; margin-top: 30px; }

    I hope this helps! Feel free to reach out with any questions.

    Tipene
    0
  • Autumn Fair

    Is there a way to limit the articles suggested based on the form a customer selects? I really like having Suggested Answers but we have some articles that are very similar so the list can look repetitive. Instead, I'd like a way to only show suggestions from a specific category for each form. Thanks in advance for any ideas you have!

    0
  • Vlad
    Community Moderator
    The Wise One - 2022

    Hey @Autumn Yes that is doable with a help of ZD API. You should use the Search endpoint with scope to the needed category on each ticket form.

    1
  • Raphaël Péguet

    Hi all!

    It is possible to get the syntax that will make it possible to filter the suggested articles based on the label please ??

    Best regards,

    1
  • Tony Jansson

    Hi,

    Is it possible to limit the results to be for example maximum 3 results for suggested articles?

    Best Regards,

    Tony

    0
  • Vlad
    Community Moderator
    The Wise One - 2022

    Hey Tony, just add this at the end of your theme CSS file, it should do the trick.

    .searchbox-suggestions li:nth-child(n+4) {display: none;}
    2
  • Tony Jansson

    Thanks Vlad! Just pasted it at the bottom and it worked :)

    0
  • Lolu

    Hello,

    I have a slightly different question. How do I make the suggested articles open in a different tab?VladTipene Hughes

    0
  • Tipene Hughes
    Zendesk Developer Advocacy

    HiLolu,

    There isn't a native way to open the suggested articles in a new tab on click, past right clicking the link and opening in a new tab. One way you could achieve that programmatically is by using a mutation observer to watch for the links that are dynamically generated, and adding the required attributes to them. Here's an example of how that could look:

    window.addEventListener('load', () => {
    // Get suggestion list element
    const suggestion_list = document.querySelector(".suggestion-list");

    // MutationObserver to watch for changes to the DOM at the suggestion list div
    // and add required elements to dynamically generated links
    const config = { attributes: true, childList: true, subtree: true };
    let suggestionObserver = new MutationObserver((list) => {
    if(list[0].target == suggestion_list){
    // Creates variables if suggestion list children have been populated to the DOM
    if(suggestion_list.childNodes){
    const searchbox_suggestions = document.querySelector(".searchbox-suggestions");
    const search_list = searchbox_suggestions.children[0];
    // Adds attributes if suggested article links have been populated to the DOM
    if(search_list){
    search_list.childNodes.forEach((li) => {
    li.firstChild.setAttribute('target', '_blank');
    li.firstChild.setAttribute("rel", "noopener noreferrer");
    })
    }
    }
    }
    });
    suggestionObserver.observe(suggestion_list, config)
    })
    0
  • Raphaël Péguet

    Hi Zendesk community,

    Any updates on this one?

    It is possible to get the syntax that will make it possible to filter the suggested articles based on the label please ??

    Best regards,

    0
  • Justin Federico

    Is there a way to limit the suggested results by ticket form? We use multiple forms and we only want to see suggestions from the relevant KBs depending on the form selected.

    0
  • Vlad
    Community Moderator
    The Wise One - 2022

    Yes it is, using ZD API search endpoint.

    0
  • Justin Federico

    Thanks,Vlad!

    Where/How would this be applied to the ticket form?

    Any other info would be greatly appreciated.

    0
  • Erica Girges
    Zendesk Developer Advocacy
    Hi Justin,

    I believe this would be the endpoint you're looking for theHelp Center's Search API.

    There are a few ways you can achieve what you're looking for.

    By using the API, you would essentially be building out your own suggested articles functionality and search results.

    Another way to configure this is to look into usingAnswer Bot with your web forms. This will allow you to use labels to refine search results per form. It might be best to look into this way first as the search functionality itself is already built in and you would just need to apply labels. You can get more info on best practices for using labels for Answer Bothere.

    Hope this helps!

    Erica
    0
  • Sandra Campbell

    hello

    I'm trying to implementSam's suggestion

    (see his comment back from May 4, 2021:

    https://support.zendesk.com/hc/en-us/articles/4408881724314/comments/4408889510554) which I've also pasted in bold below)

    It didn't work for me. I pasted the code at the end of the script.js before the final close brackets for the main function. Is that the right spot (I'm a newbie so any help much appreciated).

    thanks, Sandra

    I was able to achieve this by adding the following line into script.js:

    $('div.suggestion-list').hide();

    The 'searchbox' element is contained within the 'suggestion-list' element, so suppressing the parent element effectively hid it.

    0
  • Sam
    Community Moderator

    Zendesk AdminHi Sandra!

    Two things should make this work. In your script.js file, make sure the above code is somewhere within a document.ready function, like so:

    $(document).ready(function() {
    $('div.suggestion-list').hide();
    });

    You can enter the code into an existing document ready function, or use the one above.

    Second, you'll need to ensure that jQuery is installed in your environment for it to work. Please seeImporting or upgrading jQueryfor more information.

    Let us know if that gets things going in the right direction for you!

    1
  • Sandra Campbell

    ThankSam, that worked!

    0
  • Rina

    We have an article which we want to display on the website to customers, but not on the list of suggested articles that appear in the automated first response.

    Is there a way to omit specific articles from being suggested?

    0

Pleasesign into leave a comment.

Powered by Zendesk