Wordpress calendar plugin

Asked

Viewed 116 times

-3

  • 2

    The goal of this community is not this, so your question will probably be closed soon. If you try to implement a plugin similar or get some error during its use, your question will be welcome here.

1 answer

2


This calendar is looking like the plugin flatpickr. https://chmln.github.io/flatpickr/

I strongly recommend, is the best plugin I’ve ever used!

flatpickr("#inline", {
	inline: true,
	weekNumbers: true
})
<link href="https://unpkg.com/flatpickr/dist/flatpickr.min.css" rel="stylesheet"/>
<link href="https://chmln.github.io/flatpickr/bower_components/flatpickr/dist/themes/material_green.css" rel="stylesheet"/>
<script src="https://unpkg.com/flatpickr"></script>

<input class="flatpickr" type="text" placeholder="Select Date.." id="inline">

Browser other questions tagged

You are not signed in. Login or sign up in order to post.