Rick Jacobson
asked 9 years ago

How can I remove the link to the users profile? All the questions that get asked have the username and it’s clickable to their profile. I just need to remove this link from their username.

Thanks

4 Answers
DominicStaff
answered 9 years ago

Hi,
To remove link to profile, you can add the following code to the style.css file:

.dwqa-single-question .author {
    pointer-events: none;
}
.dwqa-list-question .dwqa-meta .dwqa-author {
    pointer-events: none;
}

Hope this helps !

Inforce
answered 4 years ago

Hi,
is this code supposed to still work? We are using the free version of your plugin and would also like to remove link to user profiles. But the code above is not working.
many thanks for your help.
Nadine

DominicStaff
answered 4 years ago

If you are using the Free version, you can use the following code: 

.

dwqa-questions-list .dwqa-question-item .dwqa-question-category a {
    pointer-events: auto;
    cursor: pointer;
}

.dwqa-questions-list .dwqa-question-item .dwqa-question-meta a,
.single-dwqa-question .dwqa-question-item .dwqa-question-meta  {
    pointer-events: none;
    cursor: none;
}
Inforce
answered 4 years ago

Cool that works. thank you very much

Dominic Staff
replied 4 years ago

You’re welcome!
Let me know if you have any issues or questions.

Powered by DW Question & Answer Pro