shahrilzero
Forum Replies Created
-
Forum: Reviews
In reply to: [Appointment Calendar] Easy to manage, customizea and very helpful supportOr maybe you could consider this thing?
In admin panel, instead of mark all pending appointment and delete them. Why not mark all pending appointment and approve all of them? Should be better when I want to approve all appointment in 1 click. Maybe you can change from delete button to approve/cancel/delete button or drop down menu where I can select approve, cancel or done.
Forum: Reviews
In reply to: [Appointment Calendar] Easy to manage, customizea and very helpful supportAgree with that. Maybe can make it enable/disable for it? I don’t prefer add captcha too because it will slow down in making a booking. I prefer to track and blacklist user ip to make a booking.
Or enable the client to add multiple day for 1 booking?
Forum: Plugins
In reply to: [Appointment Calendar] Pending, Approved, Canceled and DoneSolved it. I forgot to fetch the sql. Thanks for the codes
Forum: Plugins
In reply to: [Appointment Calendar] Pending, Approved, Canceled and DoneIt don’t work for me. I copy the codes
$status = $single->status; if($status == 'pending') { $status = "Booking-Pending"; } if($status == 'approved') { $status = "Booking-Approved"; } if($status == 'cancelled') { $status = "Booking-Cancelled"; } if($status == 'done') { $status = "Booking-Done"; } $date = str_replace("-",", ", $date); ?> { title: "<?php echo $status; ?>", start: new Date(<?php echo "$date, $start"; ?>), end: new Date(<?php echo "$date, $end"; ?>), allDay: false, backgroundColor : "#1FCB4A", textColor: "black", },into php file but nothing happen. When I copy the source you give, it give me errors. Am I missing something?
Forum: Plugins
In reply to: [Appointment Calendar] how to Add more appointment in one time slotis there any way not to overlap the time that client have book? eg: client A book today at 10 am and next client want to book same date and time. if can disable that time would be better
Forum: Plugins
In reply to: [Appointment Calendar] Client side cannot make bookingNever mind. I found the problem. I comment on line 631 that makes dialog box don’t appear anything.