dkraken
asked 4 years ago

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
DominicStaff
answered 4 years ago

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;
}
Powered by DW Question & Answer Pro