Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
385 views
in Q2A Core by
How can i disable the title of All Categories on right side from linking to the /questions page. I just want it to be a title, but not link.
Q2A version: 1.5.4

1 Answer

+1 vote
by

If you are fine with jQuery than try with this simple code.

$(".qa-browse-cat-note a").replaceWith($(".qa-browse-cat-note a").text());

...