Giter VIP home page Giter VIP logo

Comments (5)

danpros avatar danpros commented on May 24, 2024

Sorry for late response, have another project out there 😄

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

from htmly.

Xarcell avatar Xarcell commented on May 24, 2024

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.

from htmly.

Xarcell avatar Xarcell commented on May 24, 2024

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.

from htmly.

danpros avatar danpros commented on May 24, 2024

@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>';
}

from htmly.

Xarcell avatar Xarcell commented on May 24, 2024

Thank you for this.

from htmly.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.