Title: ronicke's Replies | WordPress.org

---

# ronicke

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Undefined array key “section_coupon_display”](https://wordpress.org/support/topic/undefined-array-key-section_coupon_display/)
 *  Thread Starter [ronicke](https://wordpress.org/support/users/ronicke/)
 * (@ronicke)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/undefined-array-key-section_coupon_display/#post-16449628)
 * Thank you!
 * The solution was to disable Coupons inside the Elementor builder also.
 * Best regards
 * Ronicke
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [WAMP – WordPress -exhausted memory limit](https://wordpress.org/support/topic/wamp-wordpress-exhausted-memory-limit/)
 *  Thread Starter [ronicke](https://wordpress.org/support/users/ronicke/)
 * (@ronicke)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/wamp-wordpress-exhausted-memory-limit/#post-12440925)
 * Thank you for helping me on the right path.
    I was not aware that WordPress already
   included the jquery package.
 *     ```
       function load_stylesheets()
       {
           /*
            * array() if its required to load another script too before working. Version. media
            */
           wp_register_style('bootstrap', get_template_directory_uri() . '/css/bootstrap.css', array(), '4.4.1', 'all' );
           wp_enqueue_style('bootstrap');
           /*
            * For override purpose - Load this last.
            */
           wp_register_style('style', get_template_directory_uri() . '/style.css', array(), '4.4', 'all' );
           wp_enqueue_style('style');
       }
   
       /*
        *  Add the function to be run.
        */
       add_action('wp_enqueue_style', 'load_stylesheets');
   
       function load_scripts(){
           wp_register_script('customScript', get_template_directory_uri() . '/js/scripts.js', array( 'jquery' ), '1.0.0', true);
           wp_enqueue_script( 'customScript' );
       }
       add_action('wp_enqueue_scripts', 'load_scripts');
       ```
   

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