Questions tagged [event-calendar]

18 questions
1
vote
0 answers

Can't popup modal in the fullcalendar

I have a problem creating a popup modal in the full calendar function. I using this code to let the modal box popup $('#createEventModal').modal('toggle');, but it cannot work. Below is my coding.
1
vote
2 answers

javascript holding onto old variable

I'm using JQueryFullCaledar and have written a function to hijack the eventclick. By default it just ran this code: var id = event.id; $.ajax({ url:"delete.php", type:"POST", data:{id:id}, success:function() …
Greg
  • 21
  • 3
0
votes
0 answers

Recurrence event using rrule in event calendar

I have following data data = [ { busy: true, status: "confirmed", recurrence: { rrule: [ "RRULE:FREQ=WEEKLY;UNTIL=20230602T182959Z;BYDAY=FR,MO,TH,TU,WE;WKST=SU", ], }, }, { busy: true, status:…
user3653474
  • 3,393
  • 6
  • 49
  • 135
0
votes
1 answer

WP - get the ticket list from tribe event calendar tickets

I use the event calendar plugin with its tickets extension. I want to get a list of the emitted tickets. like: array( 0 => ticket 1, 1 => ticket 2 ) I looked for a solution in the doc https://docs.theeventscalendar.com/ but impossible to find…
0
votes
0 answers

Calendar plugin for Typo3 (10.4.26)

any recommendation for a calendar plugin that can display a list of events (sorted by month), a monthly calendar display and filter/search function? currently unable to find proper plugin - I can display a number of events as list but am unable to…
0
votes
0 answers

How can I retrive data from a mongodb database and show in an ejs file?

I am trying to create a calendar using Nodejs, EJS and Mongodb wherein one can write events for a particular day. The events get stored in a collection called Names in a mongodb database called Sample Database. This is the code in app.js…
98k374
  • 1
  • 1
0
votes
0 answers

Display week and list view Events Calendar

I'm trying to display the current week of events in list view using the Event Calendar plugin. However, it seems I can only use the 'view' parameter once (either list or week). How can I do this? Here is my code:
RRhodes
  • 501
  • 6
  • 19
0
votes
0 answers

How I can import event calendar in angular

enter image description hereI am create a project with dot net and angular 14.I want to use event calendar in front(angular),so I found on internet command to install it but on official site it writes that I need to include module as depedency.In…
Svarga
  • 1
  • 1
0
votes
0 answers

Draggable external events in @event-calendar

Has anyone tried creating external events that can be dragged into @event-calendar/time-grid and vice versa using javasript/stimulus js? https://www.npmjs.com/package/@event-calendar/day-grid/v/0.3.1 Thanks for answering in advance :D
0
votes
1 answer

In WooCommerce how can I make it so users can only buy 1 product per order and make it so on a specific product they can only buy it once per user?

I'm building a ticketing website for events. I'm using WooCommerce and The Events Calendar plugin. I've already made it so that users must be logged in to buy a ticket (product). Then I found this code snippet that would limit it so that only 1…
0
votes
1 answer

How to find one nearest date in HTML-Calendar django

i want to implement an event calendar. i am faced with the problem of displaying the closest event to today's date. to find the nearest date, i use __gte in queryset, after queryset finds all the nearest dates, I want to highlight the first one with…
0
votes
1 answer

How to query only the first instance of the Recurring Event

I want to query the event, but I don't know how to query only the first instance of the Recurring Event, Since my code query all the event, and it looks like a mess on the archive page, I just want to query the first instance. $args = [ …
0
votes
1 answer

Event end date modify using hook

I am using The event calendar. I would like to adjust the events. so they don't move over to past events for an hour after they end. So for example, if an event ends at 3 PM EST we don't want it to move to the past events page until 4 PM EST. In…
Nims Patel
  • 1,048
  • 9
  • 19
0
votes
3 answers

How to delete .00 when Event Tickets $ is displayed as ¥

I am building a ticket sales test site using Event Tickets. https://wordpress.org/plugins/event-tickets/ This is the modal part of "Tickets" on this page. https://naturetest.net/2020/07/02/mcvities-digestive-biscuits-advert-kittens/ Originally the $…
0
votes
2 answers

Too few arguments to function App\Http\Controllers\EventController::edit(), 0 passed and exactly 1 expected

hi guys please help me im new to the laravel i don't know why i have this error Symfony\Component\Debug\Exception\FatalThrowableError Too few arguments to function App\Http\Controllers\EventController::edit(), 0 passed and exactly 1 expected this is…
1
2