Title: echapp's Replies | WordPress.org

---

# echapp

  [  ](https://wordpress.org/support/users/echapp/)

 *   [Profile](https://wordpress.org/support/users/echapp/)
 *   [Topics Started](https://wordpress.org/support/users/echapp/topics/)
 *   [Replies Created](https://wordpress.org/support/users/echapp/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/echapp/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/echapp/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/echapp/engagements/)
 *   [Favorites](https://wordpress.org/support/users/echapp/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] How to make the header in mobile doesnt change on scrolling](https://wordpress.org/support/topic/how-to-make-the-header-in-mobile-doesnt-change-on-scrolling/)
 *  Thread Starter [echapp](https://wordpress.org/support/users/echapp/)
 * (@echapp)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/how-to-make-the-header-in-mobile-doesnt-change-on-scrolling/#post-7471846)
 * Hi Menaka,
 * My website is still in development,
    I decided to use the standard style.
 * Thanks for the reply
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Remove section "You are previewing …"from customizer](https://wordpress.org/support/topic/remove-section-you-are-previewing-from-customizer/)
 *  Thread Starter [echapp](https://wordpress.org/support/users/echapp/)
 * (@echapp)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/remove-section-you-are-previewing-from-customizer/#post-7141343)
 * Hi bcworkz, thank you for replying
 * I solved this issue with:
 *     ```
       function remove_customize_info(){
           wp_enqueue_script( 'my_script', get_stylesheet_directory_uri() . '/js/script.js' );
       }
       add_action( 'customize_controls_print_scripts', 'remove_customize_info' );
       ```
   
 *     ```
       jQuery( document ).ready(function() {
           jQuery( "#customize-info" ).remove();
       });
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Zerif Lite] Remove customizer section from parent theme](https://wordpress.org/support/topic/remove-customizer-section-from-parent-theme/)
 *  Thread Starter [echapp](https://wordpress.org/support/users/echapp/)
 * (@echapp)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/remove-customizer-section-from-parent-theme/#post-7132611)
 * Hi,
 * It was not working because the priority argument was not defined.
 * `add_action( 'customize_register', 'my_customizer', 11 );`

Viewing 3 replies - 1 through 3 (of 3 total)