[Support request] Globally disabling various things

Home Forums Support [Support request] Globally disabling various things

Home Forums Support Globally disabling various things

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #219365
    Ahmed

    What is the most efficient way to globally disable the various things that may inhibit your use of elementor, rather than manually disable each time you create a new page

    #219369
    Leo
    Staff
    Customer Support

    I believe you have to use filters for that. Tom please correct if I’m wrong…
    This post might help: https://generatepress.com/forums/topic/disable-content-title/#post-218254

    #219413
    Tom
    Lead Developer
    Lead Developer
    .site-header,
    .primary-navigation,
    .page-header-image,
    .page-header-image-single,
    .site-footer {
        display: none;
    }

    That CSS will hide those elements globally.

    As for the title, you can do it with CSS (hide it):

    .entry-header {
        display: none;
    }

    Or remove it completely using the code Leo pointed to.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.