I have a mouseover tooltip (cost or availability) in wrong position over specific date. How to fix this ?
This issue is exist only at the version 3.0 (or older) of Booking Calendar because CSS conflict with actual theme.
For the fixing positioning of the mouse over tooltip, please make these corrections:
Please open the ../booking/include/wpdev-premium.php file
find this function declaration: wpdev_booking_form($my_form, $bk_type)
then inside of this function, replace this code:
$my_form .= ‘<div class=”tooltips” id=”demotip’.$bk_type.’”> ‘. $bk_type .’ </div> ‘;
to this:
$my_form .= '<script type="text/javascript"> jWPDev(document).ready( function(){ jWPDev("body").append( "<div class=\"tooltips\" id=\"demotip'.$bk_type.'\"> '. $bk_type .' </div> " ); }); </script>';
Please, try firstly copy/paste this line into some txt blank file then copy it from TXT file and after this insert into your code at your site. Its for be sure, that there will be no any hidden characters copied.