how can i remove the closed and resolved functionality ? i only require open and answered.
I want to remove the dropdown where user marks the question as resolved and the ‘resolved’ & ‘closed’ tabs on the question listing page.
Hi,
You can add the following code to the style.css file:
.dwqa-single-question .dwqa-dropdown-menu .dwqa-closed {
display: none;
}
.dwqa-single-question .dwqa-dropdown-menu .dwqa-pending {
display: none;
}
.dwqa-single-question .dwqa-dropdown-menu .dwqa-resolved {
display: none;
}
Regards,
This also removes the other dropdowns on the same page like public/private setting dropdown and the edit/delete dropdown.
You can add the following code:
.dwqa-single-question .dwqa-question .dwqa-privacy {
display: none;
}
Regards,
I mean to say that after applying this css :
dwqa-single-question .dwqa-dropdown-menu .dwqa-closed {
display: none;
}
.dwqa-single-question .dwqa-dropdown-menu .dwqa-pending {
display: none;
}
.dwqa-single-question .dwqa-dropdown-menu .dwqa-resolved {
display: none;
}
The other dropdowns on the same page like public/private setting dropdown and the edit/delete dropdown are also removed. I do not want to remove these features. I only wanted to remove the closed and resolved functionality.
I see, I have confused, sorry about that. I have checked your site and added a question for further checking and I see that it works fine and the closed and resolved functionality removed.
Also, i have checked this code in our demo and it does not remove the public/private section as you mentioned here.
If you still face there issue, you can send me username & password of your site, I will check and help you resolve it.
Regards,
Please login or Register to submit your answer