Arena Scheduler
by Lars Ledin on WordPress.org

An easy and professional way to organize and schedule arena activities.
Usage
To display the arena scheduler on a page or post, use the following shortcode:
[arena_scheduler_view_calendar]
Simply add this shortcode to any page or post where you want the scheduler to appear.
External Resources
This plugin utilizes the following external resources:
- Google Fonts: The “Inter” font is loaded from Google Fonts to enhance the visual presentation of the plugin’s user interface. The font is licensed under the SIL Open Font License, which is GPL-compatible.
If you have concerns about loading resources from external servers, consider modifying the plugin to use locally hosted versions of these files or contact us for assistance.
Developer Information
Does this plugin include a React app?
Yes, this plugin includes a React app on the frontend. The non-compiled (source) version of the React app, including all JavaScript and JSX files, is stored within the plugin.
Where can I find the React app source code?
The source code for the React app is included in the following directory within the plugin:
/public/app/
This directory contains the original JavaScript, JSX, and CSS files used to build the React app.
To modify and rebuild the React app:
- Install the necessary dependencies:
npm install
- Make your changes in the
/src/
directory. - Run the build command:
npm run build
- The compiled JavaScript and CSS will be generated in the
/app/build/
directory and automatically included in the plugin.