Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

WP BookingWizz not reacting WordPress

  • SOLVED

I have integrated BookingWizz, but it is not allowing me to click through to book.

Examples:

1. This is an event listing. Clicking "Book Now" does not function.

https://theedgetrainingacademy.com/all-upcoming-events/

2. This example is an event calendar. January 15 has an event. When clicked, a lightbox window should appear, allowing the user to book that event. It does not appear, however.

https://theedgetrainingacademy.com/student-athlete-recruiting-consultation-calendar/

-------
I have tried removing all additional plugins and using different themes, with the same result.

Answers (2)

2013-01-06

Dbranes answers:

Hi

It looks like you have some "non-secure" files blocked, because you are using https:

[blocked] The page at https://theedgetrainingacademy.com/all-upcoming-events/ ran insecure content from http://theedgetrainingacademy.com/booking/js/jquery.colorbox.js.

[blocked] The page at https://theedgetrainingacademy.com/all-upcoming-events/ ran insecure content from http://theedgetrainingacademy.com/booking/css/colorbox.css.



You have this code in your html code, and it is calling <em>http://</em> instead of <em>https://</em>

<script type="text/javascript">

if (typeof jQuery != "function")
{
document.write('<scr' + 'ipt type="text/javascript" src="http://theedgetrainingacademy.com/booking/js/jquery-1.7.2.min.js"></scr' + 'ipt>');
}
</script>
<script>
if (typeof jQuery.colorbox != "function")
{
document.write('<scr'+'ipt type="text/javascript" src="http://theedgetrainingacademy.com/booking/js/jquery.colorbox.js"></scri'+'pt>');
document.write('<link type="text/css" media="screen" rel="stylesheet" href="http://theedgetrainingacademy.com/booking/css/colorbox.css" />');
}

function redirect(url,name){

window.open(url,name);
//$.colorbox.close();
}
</script>


so it looks like you should change that.

2013-01-06

Naveen Chand answers:

Yes, @Dbranes is right. You are using some plugin which is making your site SSL enabled. Or perhaps your hosting service provider might have enabled it. If I type your site URL without "https", then the lightbox is working perfectly fine.

Either you change the URLs in the javascript as written by @Dbranes or send the plugin files of WP BookingWizz in a zip format to my email: [email protected] so I can edit and send you.