Rohit D
asked 8 years ago

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.

1 Answers
DominicStaff
answered 8 years ago

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,

rd08
replied 8 years ago

This also removes the other dropdowns on the same page like public/private setting dropdown and the edit/delete dropdown.

dominic Staff
replied 8 years ago

You can add the following code:

.dwqa-single-question .dwqa-question .dwqa-privacy {
    display: none;
}

Regards,

rd08
replied 8 years ago

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.

dominic Staff
replied 8 years ago

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,

Powered by DW Question & Answer Pro