• Resolved politicske

    (@politicske)


    Hello. On this one site, I am trying to remove any mentions to premium theme on the customiser as per the client’s wishes. Is there a way to do so, e.g. for the descriptions below Typography and Blog settings?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    Do you mean the upsell messages about more options in GP Premium?

    If so, try this PHP:

    add_action( 'customize_register', function( $wp_customize ) {
        $wp_customize->remove_section( 'generatepress_upsell_section' );
        $wp_customize->remove_control( 'blog_get_addon_desc' );
        $wp_customize->remove_control( 'colors_get_addon_desc' );
        $wp_customize->remove_control( 'typography_get_addon_desc' );
    }, 500 );

    Let me know ??

    Thread Starter politicske

    (@politicske)

    Yes, the upsell messages. That code has worked. Thank you.

    Theme Author Tom

    (@edge22)

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove section’ is closed to new replies.