• After the last update having custom contact forms enabled seems to be causing issues with jQuery in other plugins. I am seeing the following error for custom-contact-forms-datepicker.js. This error occurs in some themes but not others.

    custom-contact-forms-datepicker.js:4 Uncaught TypeError: Object [object Object]

    // JavaScript Document
    $m = jQuery.noConflict();
    $m(document).ready(function(){
    	$m(".ccf-datepicker").datepicker();
    });

    http://ww.wp.xz.cn/extend/plugins/custom-contact-forms/

Viewing 1 replies (of 1 total)
  • Thread Starter nick50119

    (@nick50119)

    The following change to the file appears to have fixed the issue.

    // JavaScript Document
    jQuery(document).ready(function(){
    	jQuery(".ccf-datepicker").datepicker();
    });
Viewing 1 replies (of 1 total)

The topic ‘custom-contact-forms-datepicker.js:4 Uncaught TypeError: Object [object Object]’ is closed to new replies.