RS EVENT multiday
“RS EVENT multiday” is an easy to use and highly flexible tool to manage and print posts as events by adding the sidebar-widget “RS EVENT multiday” and/or the functions rs_event_list(), rs_event_post() and rs_event_id(), which can be used in templates. It is based on the original “RS EVENT” by Robert Sargant. The plugin offers the possibility to add a “RS EVENT multiday” widget to the sidebar of your blog. It allows you to show a list of upcoming and/or past events. “RS EVENT multiday” includes three different functions, which can be used in templates. rs_event_list(), rs_event_post(), rs_event_id() FUNCTIONS First of all, the “RS EVENT multiday” widget adds the function rs_event_list() to your sidebar and you can costumize all the settings via the widget control panel at the backend of your blog. If you want to create designated pages to show an event list, you should create a special template file for the theme you use and add the function rs_event_list() manually to the code of your template. rs_event_list() This is the function used for the widget. Of course, it can be used in templates as well. It prints an unordered list of events according to the parameters given to it (see below). Both, the and the include class=”rsevent”, so you can costumize the output with stylesheets. Furthermore, the output can be customized with the parameters “html_list_v1”, “html_list_v2”, “html_list_v3” and “html_list_v4”. For details see the parameters-section below. Note: If you just want to get the return values from rs_event_list(), so they do not get printed, you should use the function rs_event_list_return(). rs_event_post() This function should be used in the single-post-template (usually the file single.php of your theme). It prints the date of the event. The output can be customized with the parameters “html_post_v1”, “html_post_v2”, “html_post_v3” and “html_post_v4”. For details see the parameters-section below. Note: If you just want to get the return values from rs_event_post(), so they do not get printed, you should use the function rs_event_post_return(). (This might be useful for e.g. Thematic themes.) rs_event_id() This function returns an array with IDs of posts, which include event-data. This array of IDs can then be used in other functions or loops. Each function can be customized by parameters. PARAMETERS The parameters are used to customize the functions (see above), if you use them within templates. If you use the sidebar-widget of “RS EVENT multiday”, you can make all the settings via the widget control panel at the backend of your blog. Please, have a look at the example below (“How to pass on parameters to one of the functions”) in order to see how it works. title (string) The widget-title in your sidebar. Not used, when the function is added to a template. default value: ‘Upcoming Events’ timespan (integer) The maximum distance into the future events will be retrieved for, in days. default value: 365 history (integer) The maximum distance into the past that events will be retrieved for, in days. This can also be set to a negative negative number, e.g. -2 to prevent events that are occuring in the next two days from appearing. default value: 0 date_format_1 (string) The style in which the date is formatted. date_format_1 is used for single-day events, for the end date of multi-day events, and for the start date of multi-day events if the two dates are NOT within the same year. default value: ‘d.m.Y’ date_format_2 (string) The style in which the date is formatted. date_format_2 is used for the start date of multi-day events if the two dates are within the same year. default value: ‘d.m.’ groupdateformat_y (string) The style in which the yearly headline date is formatted, if events are grouped by year. See also parameter group_by_year. default value: ‘Y’ groupdateformat_m (string) The style in which the monthly headline date is formatted, if events are grouped by month. See also parameter group_by_month. default value: ‘F’ groupdateformat_d (string) The style in which the daily headline date is formatted, if events are grouped by day. See also parameter group_by_day. default value: ‘d, l’ time_format (string) The style in which the time is formatted. Note: ‘second’ cannot be entered for event time and must not be used because of variable $fake_second (used to mark empty time value.) default value: ‘H:i’ time_connector (string) The sign(s) that are printed between the start-time and the end-time, if an end-time is entered. default value: ‘ – ‘ html_list_v1 (string) Used for rs_event_list(). Formats the output, if first date and time of an event is entered with “multi-day”-option off. default value: ‘ %DATE% @ %TIME% | %LOCATION% %TITLE% » read more « ‘ html_list_v2 (string) Used for rs_event_list(). Formats the output, if first date but no time is entered with “multi-day”-option off; if %TIME% is used here anyway (which usually does not make any sense), output of %TIME% equals “–:–“. default value: ‘ %DATE% | %LOCATION% %TITLE% » read more « ‘ html_list_v3 (string) Used for rs_event_list(). Formats the output, if “multi-day”-option is on and first date and end date is entered. default value: ‘ %DATE% - %ENDDATE% | %LOCATION% %TITLE% » read more « ‘ html_list_v4 (string) Used for rs_event_list(). Formats the output, if “multi-day”-option is on but no end date is entered. default value: ‘ %DATE% (multi-day) | %LOCATION% %TITLE% » read more « ‘ html_post_v1 (string) Used for rs_event_post(). Formats the output, if first date and time of an event is entered with “multi-day”-option off. default value: ‘ %DATE% @ %TIME% ‘ html_post_v2 (string) Used for rs_event_post(). Formats the output, if first date but no time is entered with “multi-day”-option off; if %TIME% is used here anyway (which usually does not make any sense), output of %TIME% equals “–:–“. default value: ‘ %DATE% ‘ html_post_v3 (string) Used for rs_event_post(). Formats the output, if “multi-day”-option is on and first date and end date is entered. default value: ‘ %DATE% - %ENDDATE% ‘ html_post_v4 (string) Used for rs_event_post(). Formats the output, if “multi-day”-option is on but no end date is entered. default value: ‘ %DATE% (multi-day event) ‘ max_events (integer) The maximum number of events to show. If this is set to 0, then all events will be shown. default value: 0 (i.e. show all) group_by_year (integer) value 0 = off, value 1 = on. If group_by_year is set, the function rs_event_list() outputs a date as a headline for all events, that take place within the same year. For multiday events, the first day of the event is used for grouping and every event shows up only once. The format of the date can be set with the parameter groupdateformat_y default value: 0 (i.e. “off”) group_by_month (integer) value 0 = off, value 1 = on. If group_by_month is set, the function rs_event_list() outputs a date as a headline for all events, that take place within the same month. For multiday events, the first day of the event is used for grouping and every event shows up only once. The format of the date can be set with the parameter groupdateformat_m default value: 0 (i.e. “off”) group_by_day (integer) value 0 = off, value 1 = on. If group_by_day is set, the function rs_event_list() outputs a date as a headline for all events, that take place within the same day. For multiday events, the first day of the event is used for grouping and every event shows up only once. The format of the date can be set with the parameter groupdateformat_y default value: 0 (i.e. “off”) no_events_msg (string) The output when the are no events within the set timespan. default value: ‘no upcoming events’ sort_order (string) Whether to list the events in ascending (value: ‘ASC’) or descending (value: ‘DESC’) date order. default value: ‘ASC’ category (integer) Show only events listed against posts in the category with this ID number. If this is set to 0, then all events will be shown. default value: 0 (i.e. show all) fulltext_active (integer) If this is set to 0, the wildcard %FULLTEXT% cannot be used for the HTML-Output of the Event-List and an excerpt for the wildcard %EXCERPT% is not created automatically, consequently, it has to be entered via the excerpt-box at the edit-post-page. You should disable %FULLTEXT% and set this to 0, if you do not need or use %FULLTEXT% and if you manually creat excerpts in order to improve the perfomance of the plugin RS EVENT multiday. default value: 1 (i.e. enabled and %FULLTEXT% can be used and excerpts are created automatically) loggedin (integer) Allows to hide the widget or the output of the function rs_event_list(). If this is set to 0, the list or the widget will only be visible to logged in users. default value: 0 (i.e. widget and function are visible to all) Customizing the html-output with wildcards The values “html_list_vX” and “html_post_vX” can be styled both for the widget (-> via the widget control panel) and within templates (please have a look at the example “How to pass on parameters to one of the functions” below). Simply use html-code and the following parameters: %URL% Outputs the URL of the event-post. %DATE% Outputs the start-date of the event, formatted as date_format_1 in _v1, _v2 and _v4 and as date_format_2 in _v3. %ENDDATE% Outputs the end-date of the event, formatted as date_format_2. %TIME% If a starttime and endtime is entered, the output is similar to %STARTTIME% time-connector %ENDTIME%. If just a starttime and no endtime is entered, %TIME% is similar to %STARTTIME%. %STARTTIME% Outputs the time when the event starts, if one is entered, formatted as time_format. %ENDTIME% Outputs the time when the event ends, if one is entered (can only be entered if a starttime exists), formatted as time_format. %LOCATION% Outputs an ordinary text value (if one is entered) which might be used to enter e.g. the location of the event. %TITLE% Outputs the title of the post. %FULLTEXT% Outputs the entire text of the post. (You can disable this wildcard to improve the perfomance of the plugin.) %EXCERPT% Outputs the excerpt of the post. If the %FULLTEXT% wildcard is disabled, an excerpt is not created automatically. Consequently, the excerpt-box at the edit-post-page has to be filled with text in order to output an excerpt when %FULLTEXT% is disabled. Please, also see the information for “fulltext_active” at the parameter section above. %ID% Outputs the ID of the post. How to pass on parameters to one of the functions Here is an example how to pass on some parameters to the function rs_event_list() [or rs_event_list_return()], when used within a template. It works similar with rs_event_post() [and rs_event_post_return()], just use the html_post_vX parameters instead of the html_list_vX parameters. Note: Parameters for the widget can be simply passed via the Widget-Panel of your blog-backend. 60, 'date_format_1' => 'm|d|Y', 'date_format_2' => 'm|d', 'html_list_v1' => ' %DATE%, %TIME% %TITLE% ', 'html_list_v2' => ' %DATE% %TITLE% ', 'html_list_v3' => ' %DATE% to %ENDDATE% %TITLE% ', 'html_list_v4' => ' %DATE% (multiday!!!) %TITLE% ', 'max_events' => 4, ); rs_event_list($argsevent); ?>
Top keywords
- event57×2.90%
- date46×2.34%
- rs40×2.04%
- rs event40×2.04%
- list37×1.88%
- value37×1.88%
- events29×1.48%
- default27×1.37%
- default value27×1.37%
- post25×1.27%
- time22×1.12%
- html20×1.02%
Eventin – Event Calendar, Tickets, Registration, Booking & WooCommerce
Eventin is a WordPress event calendar, event registration, and event management plugin for creating in-person, virtual, hybrid, and recurring events from a single dashboard. Create free or paid events, manage event listings, sell event tickets online with WooCommerce, Stripe, or PayPal, collect RSVPs, and manage attendees with an easy booking workflow. Eventin also includes AI-powered event creation, helping you generate event titles, descriptions, schedules, and FAQs in seconds. It’s also an excellent choice for eLearning and LMS websites, making it easy to manage live classes, webinars, workshops, coaching sessions, and cohort-based training alongside your courses. Built-in Zoom and Google Meet integrations let you host virtual sessions while recurring events simplify ongoing classes and training programs. Whether you’re organizing a one-day workshop, a multi-day conference, a meetup, or a large business event, Eventin helps you manage event registration, ticket sales, attendee check-in, speaker schedules, and event agendas from one place. QR code check-in tickets, automated confirmation emails, and WooCommerce-powered ticketing provide a smooth experience for both organizers and attendees. The free version includes Zoom integration at no extra cost, allowing attendees to receive meeting links automatically after registration. With Google Meet support, Google Calendar synchronization, iCal, Outlook Calendar, recurring events, and email automation, Eventin gives you everything you need to manage professional events with WordPress. Need help setting up your first event and sell event tickets in WordPress website? 👉 Let Us Know. More helpful links 👇 🎓 Live Demo | 📘 Documentation | 🛣️ Roadmap | 💼 Buy Pro | ⚙️ Features | 🎬 Video Tutorials 🎯 Why Eventin? Eventin combines: – Event Calendar – Booking System – Registration System – Ticketing System 👉 One plugin. Full control. 🗓️ WordPress Event Calendar – Month, Week, Day & List Views Eventin’s event calendar gives your visitors a beautiful, interactive way to browse upcoming events. Display events in a full monthly calendar grid, a compact list view, or a weekly agenda — all fully responsive from mobile to desktop. 🎫 Sell Event Tickets Online – Free, Paid & Early Bird Eventin makes it easy to create and sell event tickets directly from your WordPress site. Offer free events, paid events, or mixed ticketing — no third-party platform needed. 📋 Event Registration, RSVP & Attendee Management Eventin’s event registration system handles everything from collecting attendee information to tracking check-ins — all from one central dashboard. 💻 Virtual, Hybrid & Online Events with Free Zoom Integration Eventin is built for the modern event organizer who runs both in-person and online events. Unlike other event plugins, Eventin includes Zoom integration completely free — no premium add-on required. 🤖 AI-Powered Event Creation for WordPress Eventin is the only WordPress event management plugin with a built-in AI event creator. The Eventin AI tool generates complete event content in under 10 seconds. 🗃️ Event Scheduling & Speaker Management Manage complex multi-session events, conferences, workshops, and multi-day events with Eventin’s powerful scheduling system. 🎨 Event Page Builder & Design Customization Eventin works seamlessly with every major WordPress page builder, giving event organizers full creative control over their event pages. 📢 Who Can Use Eventin? Eventin is designed for anyone who creates and manages events in WordPress: 🎉 Event Planners & Organizers – Create and manage unlimited event listings, sell event tickets, handle registrations, and track attendees. 🏢 Agency Owners – Manage multiple events and event organizers for clients from one dashboard. 🎓 Online Tutors & eLearning Creators – Schedule live classes alongside your LMS courses or independently, run cohort-based programs, manage recurring sessions, and auto-send Zoom or Google Meet links all without a separate webinar tool. With Eventin, you can: Manage live classes, workshops, and webinars Add event registration and booking to your LMS website Schedule cohort-based learning sessions with recurring events Sell access to live training sessions using WooCommerce, Stripe, or PayPal Automatically send Zoom or Google Meet links after registration Track attendees and manage event-based learning experiences 💻 Webinar & Virtual Event Hosts – Run professional online events with automatic Zoom integration and email automation. 🏆 Conference Organizers – Create multi-day event schedules with speakers, sessions, tracks, and ticketing. 🤝 Meetup & Community Hosts – Create RSVP events with attendee limits and optional ticket sales. 📚 Corporate Trainers – Organize training sessions, workshops, and learning programs with structured schedules. 📢 Digital Marketers – Promote events, collect registrations, automate email follow-ups, and track conversion analytics. 🔥 Eventin Free Features — Complete Event Management at $0 Eventin’s free version gives you a full event management experience with no hidden costs. Event Creation & Calendar Unlimited event creation with no usage limits Smart admin dashboard — view all events, registrations, and bookings in one place Full event calendar with monthly, list, and grid views Session and agenda management for multi-session events Recurring events — daily, weekly, monthly, or custom patterns Event import and export for bulk management Upcoming and expired event tabs — auto-sorted and organized Ticketing & Payments Multi-tier ticket pricing — Early Bird, VIP, General Admission, and more WooCommerce integration — accept payments through all WooCommerce gateways Stripe and PayPal direct integration for ticket sales Branded PDF ticket templates sent automatically after purchase WooCommerce coupon support for discount codes Currency settings with symbol position and decimal separator options Purchase confirmation and reminder emails Event Registration & Attendees Event registration forms with custom fields RSVP system with response tracking and reporting Bulk and manual attendee registration Real-time attendee count and capacity management CSV export of attendee data and registration reports QR code check-in generation for every ticket — free Booking management dashboard with full attendee history Virtual Events & Integrations Free Zoom integration — auto-send join links after registration Google Meet integration for online events Google Calendar, iCal, Yahoo, and Outlook sync Hybrid event location support (online + offline) Timezone-aware event scheduling Page Builder & Display Elementor widgets (10+ event-specific widgets). Dedicated Elementor Addons coming soon. Divi, Gutenberg, and Beaver Builder compatibility Drag-and-drop template builder Shortcodes for embedding events anywhere Social sharing buttons for Facebook, Twitter, LinkedIn Advanced event search by keyword, date, category, or tag FAQ section per event page SEO & Event Schema (JSON-LD structured data) for rich search results 🔥 Eventin PRO — Advanced Features & AI Capability The free version handles complete event management. Eventin Pro adds enterprise-level tools for event planners who need more: * Eventin AI – Generate event titles, descriptions, FAQs, tags, and banners in under 10 seconds. * Landing Page Builder – Design custom event landing pages with pre-built templates. * Ticket Template Builder – Design fully branded, custom PDF event tickets. * Certificate Builder – Award attendees with branded PDF certificates for completed events or training sessions. * QR Code – Make an easy event registration experience** with event QR codes check-in. Scan event tickets of your event attendees in just a few seconds. * Visual Seat Map – Create an interactive seating plan and sell tickets by seat location. * Multi-Tier Event Tickets – Advanced tier management with VIP, Gold, group pricing, and bulk sales. * Multivendor Event Marketplace – Build a Dokan-powered marketplace where multiple organizers can list and sell events. Power-Packed Integrations to Make Even Better Events Zapier & Ottokit – Automate event workflows, trigger actions on registration or ticket purchase, and connect Eventin to 1000+ apps without writing code. FluentCRM – Build automated email marketing campaigns for event attendees — send confirmations, follow-ups, and promotional sequences on autopilot. SureCart – Handle payments, refunds, and bookings securely with a faster, modern checkout experience purpose-built for selling event tickets. Google Meet – Host virtual events and online webinars with Google Meet. Attendees receive their join link automatically after event registration. PayPal – Accept PayPal payments for event tickets with a familiar, trusted checkout flow your attendees already use. Stripe – Sell event tickets via Stripe with fast, secure card payments and support for multiple currencies. BuddyBoss – Turn your event attendees into a thriving community. Connect events to BuddyBoss groups for networking, discussions, and shared resources. Divi Builder – Design stunning, fully customized event pages and layouts using Divi’s visual drag-and-drop builder. Pabbly – Connect Eventin to your favorite tools and automate data flow between your event registrations, CRM, and marketing platforms. Twilio – Send SMS reminders, booking confirmations, and real-time event updates directly to your attendees’ phones. 🏆 Trusted by WordPress Experts & 17,500+ Event Organizers Leading WordPress publications and developers recommend Eventin for professional event management: * Elegant Themes: “Eventin is perfect for any kind of Conference, Event, Seminar, Exhibition, Meeting, Business Conference, Webinars, and Event Management website.” * WPAstra: “With a diverse set of features, it is dedicated to simplifying event organization and ensuring a smooth, efficient process.” * Kinsta: “The plugin’s exceptional quality is reflected in user reviews and evidenced by ThemeWinter’s long-standing commitment to delivering top-notch products.” * InstaWP: “Eventin saves time by automating many tasks, allowing you to focus on other aspects of your event management.” 📚 Documentation & Support 📘 Step-by-step Documentation 💬 Support Forum on WordPress.org 👥 Facebook Community Group 🎬 Video Tutorials on YouTube ⭐ Leave a Review on WordPress.org 🌟 Review on Trustpilot 🌟 Review on G2 🚀 Also From ThemeWinter 🍔 WPCafe – Food Ordering & Reservation plugin for WordPress 📅 WPTimetics – AI-powered Appointment Scheduling plugin for WordPress 🗓️ Booktics – Booking plugin for Service Businesses in WordPress 🗓️ Pointics – AI-Powered Loyalty and Rewards Plugin for WordPress External Services This plugin connects to the following external services: Arraytics FluentCRM Service Connects to Arraytics.com’s FluentCRM service to manage contact information for marketing and communication purposes (product updates, feature announcements, support information). Data sent: Your email address (only when you voluntarily provide it during event registration). Service provider: Arraytics – Terms of Service | Privacy Policy Note: This is optional and not required for core plugin functionality. SureCart Webhook Connects to SureCart via webhooks to synchronize order and payment information for event ticketing and related automations. Data sent: Event and order data required to process the webhook (such as ticket/order details, amounts, currency, and customer details like name and email). Payment card details are handled directly by the payment processor, not by this plugin. Service provider: SureCart Inc. – Terms & Conditions | Privacy Policy Note: Optional integration, only active if you enable the SureCart integration and configure its webhooks.