Title: Ben Kaeding's Replies | WordPress.org

---

# Ben Kaeding

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Return Post ID using query for meta_key and meta_value within an echo](https://wordpress.org/support/topic/return-post-id-using-query-for-meta_key-and-meta_value-within-an-echo/)
 *  Thread Starter [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/return-post-id-using-query-for-meta_key-and-meta_value-within-an-echo/#post-6220175)
 * Resolved.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Return Post ID using query for meta_key and meta_value within an echo](https://wordpress.org/support/topic/return-post-id-using-query-for-meta_key-and-meta_value-within-an-echo/)
 *  Thread Starter [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/return-post-id-using-query-for-meta_key-and-meta_value-within-an-echo/#post-6220174)
 * alchymyth, That is almost exactly what I needed. I added the post _type to include
   both pages and posts.
 * `<?php $my_query = new WP_Query('meta_key=PVC_Featured_Image&meta_value=1&post_type
   =any');`
 * I should have know that. Thanks for your assistance.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slideshow] after the updating 2.2.13 slideshow don't appear](https://wordpress.org/support/topic/after-the-updating-2213-slideshow-dont-appear/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/after-the-updating-2213-slideshow-dont-appear/#post-4060954)
 * This is correct turning on worked for me. Thank you elysblog
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] event calender](https://wordpress.org/support/topic/event-calender-2/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/event-calender-2/page/2/#post-3987792)
 *     ```
       function my_init() {
       	if (!is_admin()) {
   
       wp_register_script('jquery.migrate', 'http://code.jquery.com/jquery-migrate-1.2.1.js',, false, '1.2.1', true);
       		wp_enqueue_script('jquery.migrate');
       }
       ```
   
 * I haven’t tested this but using something like this to add the jquery migrate
   script in the footer should work as well. This would need to placed as code in
   a wordpress plugin or in the functions.php file in your theme.
 * * don’t mess with your functions.php unless you have both access to ftp and a
   copy before you change it. saving bad code in the functions.php will break your
   site.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] event calender](https://wordpress.org/support/topic/event-calender-2/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/event-calender-2/page/2/#post-3987791)
 * The jquery migrate plugin is just an add on for the jquery lib. You will need
   to upload the file to your server and reference/load it in your header or footer.
   It is not a wordpress plugin so it can’t be installed like other plugins.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] Problems with IE and WP 3.6](https://wordpress.org/support/topic/problems-with-ie-and-wp-36/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/problems-with-ie-and-wp-36/#post-4000386)
 * check out my latest post over here: [http://wordpress.org/support/topic/event-calender-2?replies=15](http://wordpress.org/support/topic/event-calender-2?replies=15)
 * I hope it helps.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] event calender](https://wordpress.org/support/topic/event-calender-2/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/event-calender-2/#post-3987763)
 * OK, so perfect storm… You need to read my comment earlier. WordPress is now using
   the most recent version of jquery. That means you must also include jquery-migrate-
   1.2.1.min.js the latest js lib that support all the functions that are no longer
   being supported. Go here to download to read and download the jquery plugin: 
   [https://github.com/jquery/jquery-migrate/](https://github.com/jquery/jquery-migrate/)
   Add it to your website to support the most recent version of jquery with your
   old theme functions. Then deal with IE by replacing the SimpleModal js with the
   replacement I listed above. If you don’t know how to edit the php or the js then
   simply replace the entire source of jquery.simplemodal.1.4.3.min.js in your plugin
   editor. Save a copy…. ’cause I ain’t going to put it back if you break it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] event calender](https://wordpress.org/support/topic/event-calender-2/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/event-calender-2/#post-3987754)
 * I had to use a modified version of the SimpleModal js file to correct the IE 
   issues as well. You can download it here from my site: [http://www.benkaeding.com/jquery.simplemodal.js](http://www.benkaeding.com/jquery.simplemodal.js)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] Problems with IE and WP 3.6](https://wordpress.org/support/topic/problems-with-ie-and-wp-36/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/problems-with-ie-and-wp-36/#post-4000382)
 * I had to use a modified version of the SimpleModal js file to correct the IE 
   issues as well. You can download it here from my site: [http://www.benkaeding.com/jquery.simplemodal.js](http://www.benkaeding.com/jquery.simplemodal.js)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] event calender](https://wordpress.org/support/topic/event-calender-2/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/event-calender-2/#post-3987752)
 * I was able to get Calendar working after including the jquery-migrate-1.2.1.min.
   js in my theme. It allows old jquery functionality to work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] event calender](https://wordpress.org/support/topic/event-calender-2/)
 *  [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/event-calender-2/#post-3987737)
 * Any updates on this issue yet? I updated WordPress to 3.6 as well before checking
   compatibility. 🙁
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] Calendar not displaying](https://wordpress.org/support/topic/calendar-not-displaying-1/)
 *  Thread Starter [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/calendar-not-displaying-1/#post-2258885)
 * You’re right. I was not calling the wp_footer in my theme. Thank you and sorry
   for the silly mistake. Great plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Calendar] Calendar not displaying](https://wordpress.org/support/topic/calendar-not-displaying-1/)
 *  Thread Starter [Ben Kaeding](https://wordpress.org/support/users/benkaeding/)
 * (@benkaeding)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/calendar-not-displaying-1/#post-2258882)
 * I thought of that already. There are no PHP errors in my log files and using 
   HttpFox, the files (custom.css?ver=0.9.9.2, cat_colors.css?ver=0.9.9.2 and jquery-
   ui-1.8.13.custom.css?ver=1.8.13) are loading correctly. Is there another js file
   that should be loading?

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