Hi,
this is the typical javascript error which you get, if you includes a jquery library in a not Joomla! conform way, while another extension, like Visforms uses the Joomla! conform way and then tries to use this jQuery object.. Mostly it is either the template iteself or another thirdparty extension, which you have installed on your website, that causes the problem.
If you check further you will certainly find that jquery is included on your website twice. One time with a link
Code:
<script src="/media/jui/js/jquery.min.js"></script>
which would be the Joomla! conform way and a second time with a link that might look something like that
Code:
<script src="/modules/mod_evo_frontpage_pro/library/jquery-1.8.3.min.js"></script>
which is not compatible with Joomla! and will break any Joomla! Core or extension javascript that tries to use jQuery, except of course the one extension, that has included this script.
Please check the following post, maybe it can help you fix the problem.
www.vi-solutions.de/en/forum-index/17-jo...ditional-fields#5070
Regards,
Aicha