Code

Discussion on Quick Events For PHP

Discussion on Quick Events For PHP

Cart 244 sales
Recently Updated

caketheme supports this item

Supported

This author's response time can be up to 1 business day.

88 comments found.

hello. I have a question for you. When a new event is created from the admin panel, the letters we want to use in our language such as ğ,ş,i,ü,ö appear as ‘äÿ’. how do we fix this? As additional information, I tried your demo page, there is no problem. It may be in our server settings. How do you think we should do our server settings?

Hi,

- To fix the language problem, please remove all utf8_encode() function on events.php. For example:
From:
$event->title = utf8_encode($db_event['name']);
To:
$event->title = $db_event['name'];

- There are many cache (or cookies) system, so we can’t know which is used on your server. We think you should contact with your webmaster (or your server provider) to check it.

Thank you so much. the solution you provided solved the problem. :)

Hello there 1-We want the calendar days to start on Monday, not Sunday, where can we set this? 2- the system is constantly stuck on cookies, the changes we make do not improve without deleting the cookies, what is the reason for this?

Hi,

1. To do it, please use:
<div class="quick-events" data-view="calendar" data-layout="full" data-start="monday" />
2. May be your website use cookies. (We don’t implement cookie for script. You can test it here:
http://caketheme.com/script/php-quick-events-demo/admin
User: admin
Pass: admin

Do you offer support for calendar integration / sync?

Hi. We don’t implement the custom work now. But we can help you to install the script on your server.

Is it possible to sort entries in a day by start_date?

Hi. The calendar is sorting events by start_date now.You can see it on function sortEventsByDate() on file assets/js/quick-events.js

Quick question, can i setup default month to show. Example it’s November now and i would like to set default month to be December.

Hi. To do it, you need modify the code on file assets/js/quick-events.js:
- Comment out line 171 and 172: https://gyazo.com/3445d94027735ff96a7ae012e0c62291
- Change line 559:
From:
showEventsCalendar(events_calendar_contain, today_month_g, today_year_g, 'current');
To:
showEventsCalendar(events_calendar_contain, 12, 2022, 'current');

Are you able to offer customization services for the quick events calendar? We have an existing DB we wish to connect it to to display events. We’d also like the ‘pop out’ to be changed/different.

Is there any package deal for both events and quicktimetable. Ultimately we like the layout for each and want to try and integrate them together for different views.

Hi. Could you send us the detail of your custom work to email caketheme.com@gmail.com ? (If possible, could you attach the demo image to make the idea clearly ? ). After that, we will investigate and inform you the result.

We sent an email. Look forward to a response

Hi. We have received you email. We will investigate and answer you.

It would be a good idea to be able to mark or put a different background color for Saturdays and Sundays or for holidays that are stored in a table

Hi.
- The Saturday and Sunday are marked as class weekend, so you can style for them (add the different background): https://gyazo.com/6bcc8332f8d8db064907014e6e0c4fa1 .
- About the holidays, we have not solution for it now. If want to do it, we think need have the configuration on admin to manage the holiday (Set which day is holiday).

I see a small bug when an event starts in one month and ends in the next month because it doesn’t repeat the name so the title of that event is not exactly known. Only the color strip is visible. https://www.dropbox.com/s/4t5d1i4t08i7cdq/calendar.jpg?dl=0

Hi. Thank for your report. We will fix it for the next update version.

Perfect

I search in comments but I don’t find any solution. How can I increase the number of colors?

I’ve got it with css.

Ok. If you have any question, please let us know.

Good day,

Please have a look at www.warries.co.za/newsite/gebeure. The calendar is showing on Localhost but not on the live server. There are no errors displaying, even when the error reporting is turned on. I do not know how to troubleshoot if there are no errors even in the error log file.

Please let me know if you need any other info to assist with troubleshooting.

Regards John

Hi. Could you give us the FTP to email caketheme.com@gmail.com ? We will investigate the problem.

Hi. I have just sent the FTP details via email.

Hi. We have fixed the problem. You can test it now.

In Spain, if I write directly in database, for example á, é, ñ,... then script the script stops working. There is something wrong with the character encoding. For example, if I type Meeting, the “events” table saves “Reunión” and if I manually change to “Reunión”, I get error

Hi. Could you give us the Admin and FTP to email caketheme.com@gmail.com ? We will check it.

I have a few questions before buying. 1. is it possible to integrate the calendar into an already created page, for example using an iframe? 2. Does the calendar have its own administration? 3. Events are inserted into the calendar by the administrator or is it also possible for visitors to the site? 4. Can each event have its own URL, for example for event sharing purposes? Thank you for the answers

Hi. Thank for your attention. 1. It is impossible to do it. To integrate the calendar into an already created page, you need modify this page: include some js and css files, then use the script’s shortcode to display it.
2. Yes, it has. You can test the admin on:
http://caketheme.com/script/php-quick-events-demo/admin
User: admin
Pass: admin
3. Events are inserted into the calendar by the administrator only.
4. No, it can’t. The event’s info is displayed on the popup.

So I’m not happy about that, I like the script a lot and I was hoping for the possibility of a seamless integration, this way I will have to look for another alternative unfortunately :(

Hello, when I add or change events it takes a long time to update on client side pc. Is there a way we can force the page to reload or clear a cache?

Hi. We don’t use the cache on our script. You can test it on:
http://caketheme.com/script/php-quick-events-demo/admin
User: admin
Pass: admin

Do you offer customization?

Hi. Unfortunately, we have not enough resource and time now, so we don’t implement the custom work.

Hello, it has area for ads?

Hi. Unfortunately, this feature is not available on current version of our script.

Hi, this is just for your information. It appears that the data-start option is not working. I changed quick-events.js to make sunday the default!!!

Hi. Thank for your mention. We will fix it for the next update version.

Can I create email reminders?

Or do I need to hire this as an extra, I would like to know if it can be done, how much would the cost of this functionality be.

Thanks.

Hi. Unfortunately, this feature is not available on current version of our script. We have not enough rescue and time now, so we don’t implement the custom work. Looking forward to your sympathy.

Hi,

Please, let me know what is the difference between “Quick Events” and “Quick Events for PHP”. Is it possible to use only JS part of Quick Events for PHP or does it has to be used together with PHP?

Thanks!

Hi. The difference is: The PHP version has admin panel to manage the events. The frontend get events from database, so the PHP version has to be used together with PHP. The JS version is only frontend, the events will be managed on json file or got from your exist MySQL database via 1 PHP file (if you want to integrate it into your exist PHP-MySQL system).

Hello. Is this Event calendar available in Spanish? Thanks

Hi. Yes, you can translate the text of calendar on language file.

Is there an event registration as well email confirmation after registering? If yes, does the admin view, cancel, and close registration for an event?

Thank you,

Erez

Hi. Unfortunately, this function is not available. Thank for your attention.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey