• Resolved chrismjteo

    (@chrismjteo)


    Hello,

    I’m doing the final touches of the app and realised a few things

    1. for the weekly calendar, today is sunday. The calendar schedule shows next week and does not show today. Is there anything setting i missed out on? Bookings are auto accepted and lead time is set to 0

    2. Wondering if there’s any way to reduce the size of the schedule table. And also to prevent the auto-scrolling down to the check-out form after a timeslot selection is made

    Thanks in advance!

    Chris

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Hakan Ozevin

    (@puckrobin)

    Hi again,

    1. I will check this and inform you soon.
    2. Yes, there is a way. Add these codes in Tools > Custom Functions:

    add_filter( 'app_js_data', 'app_no_scroll' );
    function app_no_scroll( $data ) {
    $data['is']['noScroll'] = true;
    return $data;
    }

    Cheers,
    Hakan

    Plugin Author Hakan Ozevin

    (@puckrobin)

    1. I checked this. I think your “Week Starts On” setting is Monday, right? This will be fixed in the next update. Until that time, you can use like this: [app_book type=”weekly” add=”-1″]
    2. You can use css codes to reduce the size of the table, but I need to see the page to help you more.

    Thread Starter chrismjteo

    (@chrismjteo)

    Hi Hakan, thanks very much

    Code for no-scroll works great!

    A quick feedback when i’m using on mobile:
    The squares are quite sensitive to touch, even when the user tries to scroll, it’s considered as a selection for booking

    It can take a while to get used to it, does not affect the function of using the app

    All good!

    Chris

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Booking app display’ is closed to new replies.