• Resolved patrick.hubig

    (@patrickhubig)


    Hi there,
    i tried to restrict access to the Frontend to have less functions. I lost some informations on my tooltip and would like to have the Name and Info visible on that tooltip on the Frontend. Can i manually configure this ? At this time i only see the Time for a booking, nothing else.

    Thanks in advance
    Patrick

    http://wordpress.org/extend/plugins/booking/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author wpdevelop

    (@wpdevelop)

    Hello,
    Unfortunately, right now is not possible to show in the mouse over tooltip the “name” or some other info about the booking, when mouse over specific date. Sorry.

    Thread Starter patrick.hubig

    (@patrickhubig)

    ok, so can you help me to customize this on my Own ? Can you tell me which code where to fill in ? I would change this on PHP basis.

    I do use this code for visualizing:
    [bookingcalendar type=1 nummonths=2]

    Thanks
    Patrick

    Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    Unfortunately its not so easy to customize in the actual version. Because its will require to make modifications in many places of the plugin (need to get this data from DB, transfer it to the client side and then visualize it in correct way). We will add such possibility (to customize it) in the future updates of the plugin.

    Thread Starter patrick.hubig

    (@patrickhubig)

    ok i understand. We recently upgraded and restrictetd this only to the standard user. Before this we had a higher level to access it and there we had this in the tooltip. Since we restrictetd some functunality to Admins the tooltip shows only the Time.

    So will this be in the next update ? Can you give me a timerange?

    Thanks in advance
    Patrick

    Plugin Author wpdevelop

    (@wpdevelop)

    I am not clearly understand your message about the relations of the user roles and tooltip information. Sorry. Can you explain it more detail and send the screenshots of that to the support email (you can find it at the plugin site)?
    Thank you.

    Thread Starter patrick.hubig

    (@patrickhubig)

    Oh ok, im am not a native english speaking person 😉
    But it doesn’t matter at all.

    I just want to see the Time and the Name on this Tooltip. We had this before we upgraded the Version. It should be displayed always and independend of the User Roles.

    We do use this as a booking Calendar for our photostudio. So i need to know who booked at a specific Time with “Time and Name” in case i have to negotiate with this Person.

    I hope this is more understandable 😉

    You can see the Frontend with Tooltip here
    https://www.dropbox.com/s/17kd7ltehqy5d04/wordpress-booking-tooltip-frontend.jpg

    Thanks in advance
    Patrick

    Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    please try todo this customization:

    open the file.. /booking/inc/biz_s.php

    find this function declaration:

    function wpdev_booking_get_additional_info_to_dates($blank, $type_id ) {

    then comment next line from this:

    return '';

    to this:

    // return '';

    after open this file /booking/inc/js/biz_s.js

    then find this code:

    function get_additional_info_for_tooltip( bk_type , td_class , times_array ){
    return '';

    and make this modification:

    function get_additional_info_for_tooltip( bk_type , td_class , times_array ){
    // return '';
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Customizing Frontend Tooltip’ is closed to new replies.