Site Submission Terms

Site Submission Terms

You must agree to all of the following in order to have your Sites packaged in GP Premium.

Sites should be useful to the user without having to install the packaged content. This means that GeneratePress itself should be customized to a specific point of being useful to the user. For example, Sites that only make use of page builder templates with minimal GeneratePress elements will be rejected.
Sites must be customizable inside the Customizer. Custom CSS that overwrites Customizer options should be limited, especially when it comes to colors and typography.
Site content must not include any affiliate links whatsoever.
Site content must not include any tracking scripts, including Google Analytics or any other service.
Site content must not include any malicious coding intended to harm the user. If malicious coding is found, the site will be rejected, and any other existing Sites from the same submitter will be removed.
All content and images must be GPL licensed. You will need to include URLs to the images you』ve packaged in your Site.
GeneratePress and GP Premium are GPL, so any sites you submit will also fall under the GPL license.
Sites can be removed or disabled at any time without notice.

generate_show_title

generate_show_title

The generate_show_title filter allows you to choose whether to display your page titles or not.
To remove titles globally, use this snippet:
add_action( 'after_setup_theme', 'tu_remove_all_titles' );
function tu_remove_all_titles() {
add_filter( 'generate_show_title', '__return_false' );
}
Default (boolean): true
Usage
Please refer to the Using Filters article to learn how to use this filter.

Footer Widths

Footer Widths

Footer layout options can be found in Customize > Layout > Footer.
Footer Width
The Footer Width option is the outer container of your footer, including your footer widgets and copyright area.
Setting this to Full will make your background color/image span the entire width of your screen.
Setting it to Contained will contain it to the width of your container, set in Customize > Container.
Inner Footer Width
The Inner Footer Width option refers to the inner container which holds the content of your footer (Footer widgets, copyright area).
Setting this to Full will make your footer content span the entire width of your screen.
Setting it to Contained will contain your footer content to the width of your container.

generate_page_header_video_muted

generate_page_header_video_muted

The generate_page_header_video_muted filter allows you to choose whether the sound in the background video is muted or not.
Default (boolean): true
Usage
Please refer to the Using Filters article to learn how to use this filter.

generate_show_post_navigation

generate_show_post_navigation

The generate_show_post_navigation allows you to remove the individual post navigation shown at the bottom of your single posts.
Default (bool): true
Usage
Please refer to the Using Filters article to learn how to use this filter.

generate_dashboard_page_capability

generate_dashboard_page_capability

Note: This is a new filter in GeneratePress 2.0
The generate_dashboard_page_capability filter allows you to set the required user role for viewing the Appearance > GeneratePress page in the Dashboard.
Default (string): edit_theme_options
Usage
Please refer to the Using Filters article to learn how to use this filter.