I’m trying to hide links (added by users), in both answers and questions.
How do I achieve this?
1 Answers
You can use the following code in the style.css file or Dashboard > Customize > Additional CSS
.dwqa-questions-list .dwqa-question-item .dwqa-question-meta span:first-child,
.dwqa-question-item .dwqa-question-meta span:first-child,
.dwqa-answer-item .dwqa-answer-meta span:first-child {
cursor: none;
pointer-events: none;
}
Please login or Register to submit your answer