Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Make carlos

    (@make-carlos)

    function customize_register_init( $wp_customize ){
    $wp_customize->remove_section('astra-pro');
    }
    add_action( 'customize_register', 'customize_register_init', 9999 );

    Why this action is not working in latest Version of astra, Only worked with old version. Please advice.

    Hi @make-carlos,

    Sorry for the delay.

    What text would you like to remove?

    Anyway, if you are an Astra Pro user, please reach out to us thru our Support Portal as this forum is intended to help the Astra free users. You will also get a faster response by submitting a ticket thru our Support Portal, as mentioned here.

    Kind regards,
    Herman ??

    Thread Starter Make carlos

    (@make-carlos)

    Under customization we can show this:

    More Options Available in Astra Pro!

    I need to remove this text using remove_action so it was worked before but after astra 3.0 that hook is no longer work.

    Thanks

    Hi @make-carlos,

    Please add the code below to your site to remove that text

    function my_customizer_styles() { ?>
        <style>
            li#accordion-section-astra-pro {
                display: none !important;
            }
        </style>
        <?php
    }
    add_action( 'customize_controls_print_styles', 'my_customizer_styles', 999 );

    I hope it will help.

    Kind regards,
    Herman ??

    P.S. We recommend reaching out to us through our Support Portal for faster and quicker help and resolution as mentioned here.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove text from Customizer’ is closed to new replies.