We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

[Answered] How can I remove "Status - Questions" bar on newsfeed | Forum

Topic location: Forum home » Support » General Questions
Emil
Emil Sep 15 '15
Hello. I have just installed the "Questions" plugin and it is great but it also installed a new bar on newsfeed with 2 tabs - Status - Questions. How can i remove that bar and only regular status update filed to appear.

Or maybe move "Add Questions" to the sidebar instead...

Thanks.




The Forum post is edited by Taissa Sep 21 '15
ketkew
ketkew Sep 15 '15
Emil,

The Add Question is a menu option which you can find in the Admin under > Pages > Manage pages.

If you want to remove the link "Questions" in the field, you can add some custom CCS code in via the Admin > Appearance > Customize > CCS:

html body div .ow_ic_lens {
    background-image: url("images/ic_lens.png");
    display: none;
}
Emil
Emil Sep 15 '15
Thank you sir for your reply! :)

But I want the whole bar altogether gone. I just want the old Status Update field that is now below that Status-Questions bar.

Thanks.
The Forum post is edited by Emil Sep 15 '15
ketkew
ketkew Sep 16 '15
To remove the complete bar:

html body div .ow_ic_lens {
    background-image: url("images/ic_lens.png");
    display: none;
}
html body div .ow_ic_chat {
    background-image: url("images/ic_lens.png");
    display: none;
}
Emil
Emil Sep 16 '15
Thank you ketkew :D

Cheers!