=== JS Integration for ChurchSuite === * Contributors: dramb * Tags: Events, ChurchSuite, Featured * Requires at least: 6.4 * Tested up to: 7.1 * Stable tag: 1.1 * License: GPLv2 or later JS Integration for ChurchSuite is provides ChurchSuite event and smallgroup details for display in a Wordpress website. == Description == JS Integration for ChurchSuite is a plugin to provide ChurchSuite event and smallgroup details for display in a Wordpress website without using iFrames. The data is drawn from ChurchSuite JSON feeds using the v3 API and is displayed natively within your website using Javascript. This plugin uses the ChurchSuite Javascript v3 public API library to implement much of its functionality, but needs a **lot less** technical understanding to use in a WP website than trying to integrate the libraries and write it all from scratch for yourself. Nonetheless, it is simple to modify the output of the shortcodes to suit your own needs. == Current features include: == * Shortcode to return events as 'cards' with the event image and details * Shortcode to return events in a 'list' grouped by date * Shortcode to return a Calendar which can move on to subsequent months where needed * Shortcode to return groups as 'cards' with the group image and details * All API requests are cached locally to speed performance == A little Technical information == For the technical among you: This shortcode works on the 'client side', building the in the user's browser. This can be faster, in some circumstances, and more responsive to user input. == Difference between this plugin and cs-integration == We also provide the `cs-integration` plugin. That plugin uses an older ChurchSuite API which permits more flexibility because a range of parameters can be provided at call rather than having to create an 'embed configuration' on ChurchSuite to pass in the shortcode call. The other plugin also does all the work on the 'server side' so that the server holds the cached data and the server creates all the html for output. This plugin use Javascript to create the response and cache in the client browser. The server-side implementation can be faster for many repeated requests, and is less speed dependent on the client provision. However the client-side implementation can be faster for an individual user and more immediately responsive to interaction. This plugin also uses Alpine.js to output the HTML, which means an end user could change the output by changing the HTML files without having to get into the php of the plugin. However, the Alpine.js code isn't straightforward and so this is likely to be of little advantage. Really, it's simply 'horses for courses' - you have the choice of which to use! == Difference between this plugin and blocks-for-churchsuite == We also provide the `Blocks for ChurchSuite` plugin. That plugin uses the older ChurchSuite API too, but also provides Blocks that work in the Block editor so that the information presented from ChurchSuite is configurable fully through the block editor. **We strongly recommend using `Blocks for ChurchSuite` rather than the other plugins - it is this plugin which we are maintaining more proactively.** == Support == If you have a problem or a feature request, please send a message to the author. == Demo == Currently there is no demo site, but we will create examples shortly == Contributions == * This plugin relies on the Churchsuite v3 Javascript API library - (see https://github.com/ChurchSuite/embed-json-script) * This plugin uses Alpine.js to process the ChurchSuite events and smallgroup information for display - (see https://alpinejs.dev/) * This plugin uses dayjs to process dates, because this is what the ChurchSuite API uses - (see https://dayjs.org/) == Installation == * From within Wordpress - In the Wordpress Dashboard use the menu to go to Plugins and from there choose 'Add new plugin'. Search for 'churchsuite' and then look for this plugin. Select the 'install' button on the plugin to install it, and once installed use the 'activate' link to activate the plugin. * If you want to install from github: - Download from 'releases' - Rename the zip file downloaded 'cs-js-integration.zip' (i.e. remove any version info in the filename) - In Wordpress use the Install New Plugin page to upload the zip file, or alternatively, unpack and upload the cs-integration directory to your '/wp-content/plugins/' directory. - Once you have done either of the above, Activate the plugin through the 'Plugins' page in the WordPress dashboard. * Once you have used either method to install the plugin, you need to then add a shortcode (see examples below) to your wordpress posts or pages where you need them == Usage == * For each of the examples below: - Replace `mychurch` with the name of your church which you use to get to your ChurchSuite site; e.g. `trinity` or `christchurch` ... see the first name after `https://` in your Churchsuite link. - Replace `62436903-841e-4239-bc95-e6952e17430e` with the unique Id for the configuration of event or SmallGroup output you want to use. To easily find this Unique ID, go to the Settings for Events or SmallGroups, and use the Embed tab in the Calendar or SmalGroup Settings page on ChurchSuite to see the Configurations (or create new Configurations), and use 'Preview' to show the configuration you want to base the output on. The Unique ID is the string of dash separated hexadecimal characters you will find in the Link for the preview page. * For the *Event Cards shortcode*, place the shortcode into a page or post or into a shortcode block. The shortcode will be: [cs-js-event-cards church_name="mychurch" configuration="62436903-841e-4239-bc95-e6952e17430e"] (replacing the church name and the configuration with your church name and the Embed configuration unique ID you want to use) * For the *Event List shortcode*, place the shortcode into a page or post or into a shortcode block. The shortcode will be: [cs-js-event-list church_name="mychurch" configuration="62436903-841e-4239-bc95-e6952e17430e"] (replacing the church name and the configuration with your church name and the Embed configuration unique ID you want to use) * For the *Calendar shortcode* place the shortcode into a page or post or into a shortcode block. The shortcode will look like: [cs-calendar church_name="mychurch" configuration="62436903-841e-4239-bc95-e6952e17430e"] (replacing the church name and the configuration with your church name and the Embed configuration unique ID you want to use. The configuration should be one which returns events for a number of month - the 'grid' option is best to enable you to select the right data for this shortcode.) * For the *Smallgroups shortcode*, place the shortcode into a page or post or into a shortcode block. The shortcode will be: [cs-js-smallgroups church_name="mychurch" configuration="62436903-841e-4239-bc95-e6952e17430e"] (replacing the church name and the configuration with your church name and the Embed configuration unique ID you want to use) Sadly, ChurchSuite developers won't allow us to use any parameters inline to modify what data is received. You must use the (very limited) configuration available in the Embed Configuration. The 'look and feel' of the data as presented on your website can be altered considerably by adding your own CSS to your theme file - all items output are within their own css classes and so everything can be styled to fit with your website. And, if you want to, you can use an HTML block to do your own output using Alpine.js. Just follow the examples towards the bottom of https://kingshope.church/events. The libraries you need have been impported for you by this plugin, and so, for example, a simple unstyled list of event titles can be generated by adding an HTML block with:
(replacing `demo` with your church name, and the hex string with your configuration unique id). == License == The plugin itself is released under the GNU General Public License. A copy of this license can be found at the license homepage or in the `csjs-integration.php` file in the top comment. == Frequently Asked Questions == = The shortcode produces no output = Check that you have supplied the correct churchname and the correct configuration id. You can check this by entering the following URL in a browser with your church name and the configuration id you are trying to use: https://demo.churchsuite.com/-/calendar/62436903-841e-4239-bc95-e6952e17430e/json = How do I add my church so that I get the JSON feed for my church? = You must use the shortcode `church_name` parameter and a valid configuration for the type of data being displayed by the shortcode you are using - e.g.: [cs-js-event-cards church_name="mychurch" configuration="62436903-841e-4239-bc95-e6952e17430e"] = I want to limit the number of events in the shortcode = You have to modify any limits on number of events through the Configuration you create on ChurchSuite = I want to change how the output looks: = The output is formatted via css - just override the defaults in your theme. If you want something arranged in a different order, the output is produced by Alpine.js HTML files in the shortcode directory shortcodes/public/inc - you can modify the HTML that is output there. = I want to write a different shortcode = That is actually really easy to do using our shortcodes as a base. But its too long to explain how to here - contact the plugin author. == Screenshots == None as yet == Changelog == = 1.1 = **2026-09-11** * Version bump to 1.1 and bump to Wordpress 7.1 compatibility * Correct a number of missing php file direct access file protections = 1.0.1 = **2026-05-27** * Version bump to 1.0.1 and bump to Wordpress 7.0.0 compatibility **2025-04-08** * Minor changes to correct issues identified by the Wordpress Directory plugin team: - the username of the developer (in readme.txt) - remove comments in code which were being read by the reviewer (erroneously) as actual code (in class-cs-js-integration-public.php) - a global DEFINE which was not prefixed - now a CONST within a namespace = v1.0.0 = **2025-03-24** * Added SVGs to the calendar drop-down. Ensured Event List only shows dates when the date has changed to a new date. **2025-03-21** * Added Calendar shortcode and tidied up all the css styling across the shortcodes **2025-03-11** * Initial release of a usable small set of shortcodes, given the limitations of the v3 Churchsuite JSON API. All commented and made ready for future submission to the Wordpress Plugin Directory.