Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Event system #44

Closed
ghost opened this issue Apr 24, 2014 · 5 comments
Closed

Event system #44

ghost opened this issue Apr 24, 2014 · 5 comments

Comments

@ghost
Copy link

ghost commented Apr 24, 2014

Do you have it in plans? Calendar, agenda view, anounce...

@danpros
Copy link
Owner

danpros commented May 14, 2014

Sorry for late response, have another project out there 😄

Currently no, for databaseless platform seems too much isn't it?

@Xarcell
Copy link

Xarcell commented May 16, 2015

I would like to see a event calendar as well. My clients don't like having to use a separate system(google calendar) for creating events and I don't have any alternative solutions.

@Xarcell
Copy link

Xarcell commented Sep 9, 2015

I had a thought. Perhaps a widget that shows only a list of posts by date where the "event" tag was used? Would be nice if it showed a monthly calendar with it too though.

On my clients websites I have to call two google calendars with different view settings. One set to monthly view, and the other set to list view; just to get the desired effect. However, my clients keep calling me asking me to add events because they always mess it up. They either add a date to the wrong calendar(personal by default), don't understand how to use google calendar, or refuse to sign up with google over privacy issues. The list of excuses go on and on...

Here is a screenshot of the two calendars in a custom HTML gadget on Blogger:
screenshot-calendar-widget

If we could something at least close to this I would appreciate it.

Calendar events is a make or break for my clients, and they currently hate how I've done it. The only choice is to move to another web application and make them pay for web hosting. This is difficult, because I'm trying to keep them off of SQL servers(because SQL servers in shared hosting isn't reliable to oblivious users). Thus, noDB or SQLite web applications are my only options that I want to offer to my clients.

@danpros
Copy link
Owner

danpros commented Sep 9, 2015

@Xarcell so you want to display let say specific tags? there is a built in function for that, yes undocumented yet. I will open the Wiki and make any body can edit it so other user can add any tips.

Let say you want to display the "event" tag, just use the get_tag() function:

function get_tag($tag, $page, $perpage, $random)

Example:

$events = get_tag('event', 1, 5, false);
foreach ($events as $e) {
    echo '<div>' . $e->title . '</div>';
}

Or get the category event:

function get_category($category, $page, $perpage)

Example:

$events = get_category('event', 1, 5);
foreach ($events as $e) {
    echo '<div>' . $e->title . '</div>';
}

@Xarcell
Copy link

Xarcell commented Sep 9, 2015

Thank you for this.

@danpros danpros closed this as completed Dec 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants