Title: rbevers's Replies | WordPress.org

---

# rbevers

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

 *   [Profile](https://wordpress.org/support/users/rbevers/)
 *   [Topics Started](https://wordpress.org/support/users/rbevers/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rbevers/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rbevers/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rbevers/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rbevers/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rbevers/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: [Own Plugin problem with the add_submenu_page](https://wordpress.org/support/topic/own-plugin-problem-with-the-add_submenu_page/)
 *  [rbevers](https://wordpress.org/support/users/rbevers/)
 * (@rbevers)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/own-plugin-problem-with-the-add_submenu_page/#post-896078)
 * Hi,
 * I realize it is a little bit late to react but i think i had the same problem
   and it took me some time to solve it.
 * WordPress seems to require that the various admin pages are located in separate
   files. In order to keep a single file I had to make WordPress think i’m using
   several files by adding a get parameter to the file.
 * like this,
 * `add_submenu_page(__FILE__, 'Categories', 'Categories', 9, __FILE__ . '?option
   =one', array(&$pc_plugin, 'AdminCategories'));`
 * Hope this is still helpfull to someone.
 * Kind regards,
 * Richard
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp_enqueue_script(‘jquery’) stopped working after upgrade to 2.8.2](https://wordpress.org/support/topic/wp_enqueue_scriptjquery-stopped-working-after-upgrade-to-282/)
 *  [rbevers](https://wordpress.org/support/users/rbevers/)
 * (@rbevers)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/wp_enqueue_scriptjquery-stopped-working-after-upgrade-to-282/#post-1150685)
 * I too had a problem with the $ notation.
 * I found something that seems to fix this
 *     ```
       <script type="text/javascript">
       jQuery.noConflict();
       </script>
       ```
   
 * This seems to check which library should use $ for compatibility with other
    
   frameworks. But if it doesn’t find any conflicts it reverts to jQuery. You will
   then be able to use both jQuery and $ notation in your code.
 * Hope this works for you too, just make sure you call it before the code that
   
   uses $.

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