Title: kmitz's Replies | WordPress.org

---

# kmitz

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Planet Green] Problem using Elementor on home page](https://wordpress.org/support/topic/problem-using-elementor-on-home-page/)
 *  Thread Starter [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/problem-using-elementor-on-home-page/#post-14707737)
 * Ok, thanks. Did you folks write the Kirki code or was the generated somehow?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Planet Green] Problem using Elementor on home page](https://wordpress.org/support/topic/problem-using-elementor-on-home-page/)
 *  Thread Starter [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/problem-using-elementor-on-home-page/#post-14706917)
 * The home page is apparently not a “page” in the WordPress meaning, nor is it 
   a “post”. It seems to be as a result of Kirki code, therefore it is not editable.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP FullCalendar] Calendar works, but event date is wrong](https://wordpress.org/support/topic/calendar-works-but-event-date-is-wrong/)
 *  Thread Starter [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/calendar-works-but-event-date-is-wrong/#post-13834168)
 * I was able to create a custom plugin that added a filter to the wpfc_ajax event
   just before the json is sent to the browser. PODS stores the data I’m after in
   wp_postmeta.
 * It works when the calendar is first loaded, but not when you click the next/previous
   month buttons. Any help with where I might look into that?
 *     ```
       add_filter( 'wpfc_ajax', '_modify_dates', 50, 1 );
   
       function _modify_dates( $items ) {
   
       	global $wpdb;
   
           for ($i = 0; $i < count($items); $i++) {
   
       		$sql = "SELECT meta_value FROM wp_postmeta WHERE meta_key='event_date' AND post_id=" . $items[$i]['post_id'];
       		$evdate = $wpdb->get_var($sql, 0);
   
       		$sql = "SELECT meta_value FROM wp_postmeta WHERE meta_key='event_duration' AND post_id=" . $items[$i]['post_id'];
       		$duration = $wpdb->get_var($sql, 0);
   
       		$dt_obj = date_create($evdate);
       		$d_start = date_format($dt_obj, 'Y-m-d\TH:i');
   
       		$int = 'PT' . $duration . 'H';
       		$end = $dt_obj->add(new DateInterval($int));
       		$d_end = $end->format('Y-m-d\TH:i');
   
               //$items[$i]['color'] = '#999999';
               $items[$i]['start'] = $d_start;
               $items[$i]['end'] = $d_end;
       	}
   
           return $items;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP FullCalendar] Calendar does not appear with [fullcalendar] command](https://wordpress.org/support/topic/calendar-does-not-appear-with-fullcalendar-command/)
 *  [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/calendar-does-not-appear-with-fullcalendar-command/#post-13795021)
 * Also, you have some javscript errors in your calendar page related to FullCalendar:
 *     ```
       Uncaught TypeError: $(...).first(...).fullCalendar is not a function
           at HTMLDocument.<anonymous> (<anonymous>:87:30)
           at e (jquery.min.js?ver=3.5.1:2)
           at t (jquery.min.js?ver=3.5.1:2)
       ```
   
 * Did you see this topic?
 * [https://wordpress.org/support/topic/js-errors-on-running-with-wp-5-6/](https://wordpress.org/support/topic/js-errors-on-running-with-wp-5-6/)
 * Try clearing your cache if you have a caching plugin enabled.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP FullCalendar] Calendar does not appear with [fullcalendar] command](https://wordpress.org/support/topic/calendar-does-not-appear-with-fullcalendar-command/)
 *  [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/calendar-does-not-appear-with-fullcalendar-command/#post-13794974)
 * [@ploesslmaddie](https://wordpress.org/support/users/ploesslmaddie/), I just 
   looked at the source code and it looks like those files are included. I can’t
   see you settings page, though.
 * Try disabling Events Calendar and refreshing the page to see if the FullCalendar
   shows up. You can try that with your other plugins, too, just as a test.
    -  This reply was modified 5 years, 6 months ago by [kmitz](https://wordpress.org/support/users/kmitz/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP FullCalendar] Calendar does not appear with [fullcalendar] command](https://wordpress.org/support/topic/calendar-does-not-appear-with-fullcalendar-command/)
 *  [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/calendar-does-not-appear-with-fullcalendar-command/#post-13794968)
 * For what it’s worth, I just installed FullCalendar 1.3.1 on WP 5.6 and it’s working
   for me (I do not use Events Manager).
 * I would check the source code of the page where you put the [fullcalendar] shortcode(
   right click > View Page Source in Google Chrome). Make sure it’s loading jquery(
   line 52-57 for me) and the FullCalendar js file (line 65, which will look like
   the line below).
 * src=’[http://localhost:8888/pods/wp-content/plugins/wp-fullcalendar/includes/js/main.js?ver=1.31&#8242](http://localhost:8888/pods/wp-content/plugins/wp-fullcalendar/includes/js/main.js?ver=1.31&#8242);
 * Make sure you do not have an entry on the last box of the FullCalendar settings
   page titled “Load JS and CSS files on”.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WP Bootstrap Starter] Child Theme Preset Style](https://wordpress.org/support/topic/child-theme-preset-style/)
 *  [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/child-theme-preset-style/#post-12089192)
 * Hi [@ickehier](https://wordpress.org/support/users/ickehier/) ,
 * I’m not at all familiar with SASS/LESS, either.
 * Can you explain what you did exactly in the above post?
 * Thx.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 - PayPal & Stripe Add-on] May I have a usage example, please?](https://wordpress.org/support/topic/may-i-have-a-usage-example-please/)
 *  Thread Starter [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/may-i-have-a-usage-example-please/#post-6059755)
 * I’ll keep an eye out for it, thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 - PayPal & Stripe Add-on] May I have a usage example, please?](https://wordpress.org/support/topic/may-i-have-a-usage-example-please/)
 *  Thread Starter [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/may-i-have-a-usage-example-please/#post-6059744)
 * Oh, I see that’s on the Pro version.
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 - PayPal & Stripe Add-on] May I have a usage example, please?](https://wordpress.org/support/topic/may-i-have-a-usage-example-please/)
 *  Thread Starter [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/may-i-have-a-usage-example-please/#post-6059723)
 * Thanks. I was confused because I was expecting a field for the amount or something.
   Is that possible? We’d like to leave the amount up to the donor.
 * kmitz
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] HTML5 compliance](https://wordpress.org/support/topic/html5-compliance/)
 *  Thread Starter [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/html5-compliance/#post-5711180)
 * Hi,
 * Sorry for the wait. I did try the twenty fifteen theme as a test and the calendar
   validated to HTML5. Thanks for the help troubleshooting.
 * kmitz
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] https errors due to imported fonts](https://wordpress.org/support/topic/https-errors-due-to-imported-fonts/)
 *  Thread Starter [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/https-errors-due-to-imported-fonts/#post-5264999)
 * Just updated to v 2.1.5 and all error messages gone.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Quick Fix Help](https://wordpress.org/support/topic/quick-fix-help/)
 *  [kmitz](https://wordpress.org/support/users/kmitz/)
 * (@kmitz)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/quick-fix-help/#post-4498675)
 * Are you running the Genesis theme or sub-theme? Check themes/Genesis/functions.
   php — open in your code editor.
 * I found some code (looked like it was base-64 encoded) inserted before the normal-
   looking code. The fact that it had 2 sets of PHP tags tipped me off.
 * Comment out or remove that first function that starts like this:
 * `$wp_function_initialize = create_function('$a',strrev(';)a$(lave'));`
 * If you don’t have Genesis, check your other themes. I’ve also read online that
   the code is sometimes in the header.php file, but not in my case.

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