SUPPORT BREAK!

I'm happy to share that my second daughter was just born! Because of this, I won't be available for technical support for some itme, depending on how quickly my wife recovers.


I expect to be back between around April 4. Thank you for your understanding and patience!

Okay
  Print

How to hide titles on CMS pages

you can hide with custom css code(you can paste code in backoffice > themeeditor > custom css field)

#cms .page-header {

display: none;

}

or if you want to hide only for one cms page then you need to base on cms page id. Ecxample

#cms.cms-id-2 .page-header {

display: none;

}