Notifications
Clear all

[Solved] Is it possible to show the editor open by default?

5 Posts
2 Users
0 Reactions
389 Views
Posts: 8
Topic starter
(@furkangunes04)
Active Member
Joined: 9 months ago

Can I make the topic creation editor window open by default at the top or bottom of the page where topics are listed?

Normally, clicking the "Ask a Question" or "Start a Topic" button opens the relevant editor on the same page. I want to make this open by default. How can I do this?

4 Replies
Sofy
Posts: 4910
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

Hi,

Please try the CSS code below:

.wpf-form-wrapper.wpf-topic-create {
   display: block !important;
}

#wpforo #wpforo-wrap .wpf-head-bar-right .wpf-button{
   display:none;
}

The CSS code should be inserted in the "Custom CSS code" textarea, located in the Dashboard > wpForo > Settings > Colors & Styles Tab. More info here: https://wpforo.com/docs/wpforo-v2/settings/colors-styles/

We'd also recommend you check out the "Q&A Layout – Display Answer Editor" option. For more information, visit here:  https://wpforo.com/docs/wpforo-v2/settings/posting-editor-settings/#q-a-layout-%E2%80%93-display-answer-editor

Posts: 8
Topic starter
(@furkangunes04)
Active Member
Joined: 9 months ago

Thanks, it worked!

Now, can i move the editor section to below of the topics?

1 Reply
Sofy
 Sofy
Admin
(@sofy)
Joined: 7 years ago

Support Team
Posts: 4910

@furkangunes04 

Add this one as well: 

#wpforo #wpforo-wrap .wpforo-content {
   display: flex;
   flex-direction: column;
}

#wpforo #wpforo-wrap .wpf-topic-create {
  order: 1;
}
Posts: 8
Topic starter
(@furkangunes04)
Active Member
Joined: 9 months ago

Sorry for the late reply but the code worked. Thank you very much for your attention!