I already tried what was recommended in the FAQ.
The error that shows up from the error console is:
Error: D.mask.set is not a function
Source file: http://sincityrentals.net/wp-content/plugins/booking.premium.plus.2.8/include/js/jquery.meio.mask.min.js
Line: 7
That’s the only problem it is showing, but maybe someone could check my website and see if anything else may be preventing the calendar from appearing.
Thanks
Hello,
For fixing this issue, please make these steps:
please open the file …wp-content\themes\graphene\functions.php
at line: 1047
and make modification from this:
/* Load jQuery Tools script */
function graphene_scrollable_js() {
wp_enqueue_script('graphene-jquery-tools', 'http://cdn.jquerytools.org/1.2.5/all/jquery.tools.min.js', array('jquery'), '', true);
}
to this:
/* Load jQuery Tools script */
function graphene_scrollable_js() {
wp_enqueue_script('graphene-jquery-tools', 'http://cdn.jquerytools.org/1.2.5/all/jquery.tools.min.js', array('jquery'), '', false);
}
The only javascript error I’m getting seems to come from
Error: jQuery("form.product_form").livequery is not a function
Source file: http://djhymn.com/wp-content/plugins/wp-e-commerce/wpsc-core/js/wp-e-commerce.js?ver=3.8.4.391083
Line: 273
I think it’s something to do with your calendar plugin calling a different version of jquery but I am unable to fix this, I have tried:
<script type="text/javascript"
src="http://djhymn.com/wp-content/themes/activetheme/js/jquery-1.4.4.min.js"></script>
in the header file, the functions file, and am really lost where to go from here.
Hello Onna,
please contact to this email info @ onlinebookingcalendar.com
with screenshots of your settings and order number of purchasing booking calendar.
Kind regards.
This post helped, but in newer versions of the Graphene theme, the specific line number reference has changed. Instead, I searched for the “cdn.jquerytools.org” URL (there is only one instance in the latest version of the theme) and changed the last function call parameter there from “true” to “false” and was back in business with the booking calender.