Hi Folks,
I never use the Preview function, and it bothers the hell out of me when on mobile. Is there a way to turn it off?
Lee
Hi Folks,
I never use the Preview function, and it bothers the hell out of me when on mobile. Is there a way to turn it off?
Lee
What do you mean by âpreview functionâ? Can you clarify?
Use CSS to hide the post preview button. You can do almost anything with CSS.
Also, how does it bother you on mobile? It doesnât even show up until you press the buttonâŚ
Hi, @codinghorror and @nexo,
Apologies for the lateness of my reply.
Here is an example of the âPreviewâ pop-up. I never use it, and always have to manually close it down, and I wondered if I could get rid of it permanently? It also pops up on my mobile device and makes it incredibly awkward to post anything. I have asked across my group if anyone else has issues with mobile, and nobody does, so maybe itâs my phone (Huawei)?
Are you talking about the blue suggested topics popup or the actual preview side that displays what youâre typing?
It would be useful to know how to switch both off, and give that option to the user (if possible).
Not 100% sure, but it shouldnât. Are you displaying the site as the desktop version on your mobile? Can you provide a screenshot?
You can remove the preview panel client-side on desktop using a browser extension that allows adding custom CSS like Live Editor.
The CSS rule would be:
.d-editor-preview-wrapper {
display: none;
}
Iâll look like this:
Hi @Canapin
When it comes to things like CSS, I am more âPongâ than âWorld of Warcraft,â I really donât have a clue. Can I pay people to do things like this?
On the second note, about the mobile interface.
Here are some images
On this one, I canât scroll to the title.
On this one, I canât abandon my post.
Looks like you are on the desktop version of Discourse on your phone. This may happen if you set Chrome to request desktop for all sites.
Reach for the Hamburguer Menu and select âMobile versionâ on the botton.
What is the âhamburger menu?â
Itâs at the top upper right đĄ of your browser tab and looks like this â°
You really really donât want to be on desktop mode on your mobile device. Thatâs a recipe for much suffering.
Itâs been killing me!
Holy crap, that was so easy, thanks so much!
Hiding the preview panel in your desktop browser is super-easy. It wonât work on mobile unless you use a browser that supports such an extension.
Here are the steps on Chrome:
Then this CSS rule will be applied automatically each time you visit meta.discourse.org.
If you need paid assistance, you can send me a direct message though.
Just donât use it then.
Thanks.
Iâve asked the community for feedback. I donât want to remove something of value to them. If they give me the thumbs up, I will try this or ping you.
Sure. Note that my solution works only on client-side, so only for the user that follow these steps and nobody else.