Title: mcgordon's Replies | WordPress.org

---

# mcgordon

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

 *   [Profile](https://wordpress.org/support/users/mcgordon/)
 *   [Topics Started](https://wordpress.org/support/users/mcgordon/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mcgordon/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mcgordon/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mcgordon/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mcgordon/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mcgordon/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: [[Custom Taxonomy Sort] [Plugin: Custom Taxonomy Sort] Minor Bug Report: Interaction with get the terms()](https://wordpress.org/support/topic/plugin-custom-taxonomy-sort-minor-bug-report-interaction-with-get-the-terms/)
 *  [mcgordon](https://wordpress.org/support/users/mcgordon/)
 * (@mcgordon)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-custom-taxonomy-sort-minor-bug-report-interaction-with-get-the-terms/#post-2987182)
 * Substitute lines 328-331 in the file custom-taxonomy-sort.php with the following.
   Hopefully this fix will make it into the next version of the plugin.
 *     ```
       if (
       	isset( $args['orderby'] ) &&
       	(
       		( $args['orderby'] == $this->orderby_parameter && $args['order'] == 'DESC' ) ||
       		( $args['orderby'] != $this->orderby_parameter && $this->get_sort_order() == 'DESC' )
       	)
       ) krsort( $ordered_terms );
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [HTML entities in the URLs for load-scripts.php](https://wordpress.org/support/topic/html-entities-in-the-urls-for-load-scriptsphp/)
 *  [mcgordon](https://wordpress.org/support/users/mcgordon/)
 * (@mcgordon)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/html-entities-in-the-urls-for-load-scriptsphp/#post-1261748)
 * This has been driving me nuts for ages and I finally decided to do something 
   about it today. Like you I was having random JS problems, both in the dashboard
   and with posts (couldn’t add tags). The problem is definitely with the Events
   Calendar plugin, but not for the reason you said. I don’t think the ampersands
   have anything to do with it.
 * Instead, it looks to be a conflict with the jQuery plugins being loaded by WPEC.
   It loads a plugin called jquery.dimensions.js, which according to the jQuery 
   site and this WPEC’s own inline code comments, is deprecated since jQuery 1.2.6
   as they moved its functionality into the core. When I commented out that script
   the problems went away.
 * WPEC loads that script in two places, both in the file events-calendar.php on
   lines 158 and 203. Comment out those two lines and your JS in the admin panels
   starts to work again.
 * I have NO idea how this change will affect the plugin. In my own site I only 
   use the SidebarEventsList() function to display a list of events and that certainly
   doesn’t require all the JS that the plugin tries to load.
 * Hope that helps.

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