Is it possible to have no links on the terms? I just want a searchable list of words, but for the words to not be clickable.
Also do you have a screenshot of the backend for entry of the terms? I would like to see how many fields/steps a user needs to enter to add a single term. Ideally I would like a single text box, which a user can enter a list of words, rather than have to enter each word seperately. Thanks
1 Answers
In this case, you can add the following CSS code to the Dashboard > Appearance > Customize > Additional CSS
.dw-glossary-items li.post-item a {
pointer-events: none;
cursor: none;
}
Please login or Register to submit your answer