• Andrea Scarfo’

    (@andreascarfo)


    I noticed that on mobile is not possible to do bookings
    url /wp-admin/admin.php?page=seatreg-management

    For now I solved edited bootstrap.min.css adding display:none to modal-backdrop.show

    .modal-backdrop.show{opacity:.5;z-index:980!important;display:none}

    I tried operate on z-index of .modal-open .modal and .modal-backdrop.show which would be the best way and while in mobile simulation on desktop was working, it was not the same on mobile.

    It’s a bit messy but for now it’s working.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author thesiim

    (@thesiim)

    I have not really given much attention to booking manager mobile support. Its better to use desktop for that. I will add it to the to-do list.

    Thread Starter Andrea Scarfo’

    (@andreascarfo)

    Hi all,
    I found the definitive solution.

    Can you add the following rows to “bootstrap.min.css” ?

    .modal-backdrop.show {
    	display: none;
    }
    .modal-backdrop {
    	display: none;
    }
    .modal-open #wp-responsive-overlay {
    	display: block !important;
    	position: fixed;
    	width: 100vw;
    	height: 100vh;
    	background: #0008;
    	top: 0;
    }
    @media screen and (max-width: 600px) {
    	#wp-responsive-overlay {
    		display: none !important;
    		background: #0008;
    	}
    	.modal-open #wp-responsive-overlay {
    	display: block !important;
    }
    	.modal-backdrop {
    		display: none;
    	}
    }
    Plugin Author thesiim

    (@thesiim)

    Its not a good idea to modify bootstrap source CSS directly

    Thread Starter Andrea Scarfo’

    (@andreascarfo)

    You can pick full css here minified.

    If want to check it here you have the readable css version.

    Thread Starter Andrea Scarfo’

    (@andreascarfo)

    I don’t know another way to fix.

    I’m writing here as you as the developer and you will find the best way.

    I hope I have helped you as you helped me so much! ^_^

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘bookings backend mobile’ is closed to new replies.