PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

I don't see the data picker

  1. Hi, I've a problem on this website: test-larin.com/royal

    In homepage I have a data-picker form but it doesn't expland, I don't know if I have change something on CSS (another webmaster had work on the website but know now he is gone.

    Can you help me? Thanks!

    Posted 11 years ago on Monday December 31, 2012 | Permalink
  2. You have a JavaScript error on that page:

    Timestamp: 12/31/12 7:56:12 AM
    Error: TypeError: $ is not a function
    Source File: http://www.test-larin.com/royal/
    Line: 367

    It's coming from this line:

    <script type="text/javascript">
    			$('ul.tabbernav li a').html('');
    			document.getElementsByTagName("ul.tabbernav li a").innerHTML = '';
    		</script>

    If you fix that problem, I think you will find that the datepicker works. You can find the source of that error by following our troubleshooting steps http://rkt.gs/testing

    Posted 11 years ago on Monday December 31, 2012 | Permalink
  3. Thanks! With your troubleshooting steps I know that the problem is Mailchimp official plugin: if I deactivate it the data picker works! But I need this plugin... what you suggest?

    Thanks

    Posted 11 years ago on Monday December 31, 2012 | Permalink
  4. I would contact the plugin author to see if they have a fix.

    I did not think from that error message that it would be related to Mailchimp at all. The error seems to be coming from some tabbed navigation script, and the fix is simple:

    replace this $('ul.tabbernav li a').html('');

    with this jQuery('ul.tabbernav li a').html('');

    If you found the conflict to be with the Mailchimp plugin though, please contact them for their solution.

    Posted 11 years ago on Monday December 31, 2012 | Permalink