I noticed that in the general questions list if you hover over a user, you will see this link, then on clicking on the link, it will display a list of all the questions that user has asked. How can I remove that? Because even an anonymous user can see it. Also, I am running BuddyPress so I want it to redirect to the user’s Activity Page, instead of showing all his DWQA Questions to everybody.
1 Answers
If you disable hover link for the username, you can use the following code:
.dwqa-questions-list .dwqa-question-item a {
cursor: default;
pointer-events: none;
}
span.dwqa-question-category a {
cursor: pointer !important;
pointer-events: auto !important;
}
Please login or Register to submit your answer