Joe Davidson
asked 10 years ago

I’ve seen some information about how to remove the status box completely, but I’m wondering if there’s a way to just eliminate the RESOLVED and CLOSED status options. I want the status box, but I only want OPEN and ANSWERED statuses.

1 Answers
DominicStaff
answered 10 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,

jdavidson224
replied 10 years ago

I’ve added the code to the style.css file, but I’m still not seeing the changes on the page when reloading. Just to confirm, this needs to be added to the plugin’s style.css file, not the theme’s style.css, correct?

dominic Staff
replied 10 years ago

You should add the codes to the theme’s style.css file.

Powered by DW Question & Answer Pro