- This topic has 19 replies, 4 voices, and was last updated 7 years, 7 months ago by
Leo.
-
AuthorPosts
-
May 3, 2017 at 5:54 pm #313589
Collin
Hello, when creating a new page/post I’d like to be able to have the checkmarks ticked by default so that all sections are de-activated by default. If I could predefine the boxes to be checked that’d save me a lot of time. Thanks!
May 3, 2017 at 6:38 pm #313595Leo
StaffCustomer SupportHi Collin,
Are you referring to the Sections add-on? It should be de-activated by default.
or are you looking to disable a certain element for all pages?
Let me know 🙂
May 3, 2017 at 6:54 pm #313598Collin
I’m looking to disable certain/all elements for all posts/pages by default.
May 3, 2017 at 6:56 pm #313599Leo
StaffCustomer SupportCan you list out all the elements you are wanting to disable?
Could be done with some CSS.
May 4, 2017 at 4:03 pm #314115Collin
All of them, actually. Do they each have their own CSS id/class?
May 4, 2017 at 5:10 pm #314131Leo
StaffCustomer SupportThis CSS should cover all the elements that are in the Disable Element meta box:
.site-header, #site-navigation, .navigation-clone, #mobile-header, #secondary-navigation, .generate-page-header, .page-header-image, .page-header-image-single, .entry-header, .site-footer { display: none; }
Adding CSS: https://docs.generatepress.com/article/adding-css/
May 4, 2017 at 5:17 pm #314134Collin
Does your Sections plug-in use CSS to function, similar to what you’ve provided here? I was under the impression it actually ensured the blocks of code for each section did not load (not just hide those sections with CSS).
May 4, 2017 at 5:58 pm #314143Leo
StaffCustomer SupportYou are right. My bad…
– Top bar: If no widgets are added, top bar wouldn’t load.
– Header: https://docs.generatepress.com/article/generate_header/
– Primary Nav: Customizer > Layout > Primary Navigation > Navigation Location > No Navigation
https://docs.generatepress.com/article/generate_navigation_location/– Secondary Nav: Wouldn’t load if no secondary menu is added.
– Featured Image/Page Header: Customizer > Layout > Page Header > Single Post Header Location > Hide
– Content Title: https://docs.generatepress.com/article/generate_show_title/
– Footer:
add_action( 'after_setup_theme','tu_remove_footer' ); function tu_remove_footer() { remove_action( 'generate_footer','generate_construct_footer' ); }
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know if you need more info.
May 5, 2017 at 8:20 pm #314621Collin
Thanks Leo, but this is assuming I want to make the change globally. I don’t want to do that. I only want to default to selecting all sections to be INACTIVE (instead of active) when I create a new page. Then I can choose which page sections to ACTIVATE each time instead of DEACTIVATING.
May 5, 2017 at 8:26 pm #314624Leo
StaffCustomer SupportJust making sure you are referring to the Disable Elements add-on and not Sections add-on?
https://docs.generatepress.com/article/disable-elements-overview/
https://docs.generatepress.com/article/sections-overview/I don’t actually think there is a way to do that currently. Will ask to Tom to confirm 🙂
May 5, 2017 at 8:27 pm #314625Tom
Lead DeveloperLead DeveloperCurrently that’s not possible (well, it would require considerable programming).
Disable Elements will be getting an overhaul to allow default values + desktop/tablet/mobile visibility soon 🙂
May 5, 2017 at 8:28 pm #314626Collin
Yes, Disable Elements. Thanks
May 5, 2017 at 8:29 pm #314628Collin
Ok, thanks for the update Tom. I will survive clicking them all each time for now 😉
May 5, 2017 at 8:32 pm #314630Tom
Lead DeveloperLead DeveloperNo problem! The defaults/responsive controls are pretty high up on my to-do list 🙂
February 19, 2018 at 3:01 pm #500626Ian
Was this implemented?
My desire would be to set some defaults in the Customizer (e.g. footer and content title elements disabled) and then have every new page I generated thereafter have those settings, not requiring me to click them every time I create a new page. In other words, to have a basic page template that’s not the norm.
On a related note, if I’d created 20 pages with those defaults and then needed to have the content title activated in all of them, is there some universal way to do that once and have it affect all 20 pages? -
AuthorPosts
- You must be logged in to reply to this topic.