This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ONLY CHANGE THESE VARIABLES -- {START} | |
| const locales = ['be', 'de', 'fi']; //belgium Locale | |
| const assetPath = '_next'; //app Assets | |
| const origin = 'example.vercel.app'; //add app url from vercel or netlify | |
| // ONLY CHANGE THESE VARIABLES -- {END} | |
| addEventListener('fetch', event => { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| /* | |
| * FormsPlus::Wrapper Row/Column Tagger | |
| * @author Sanford Whiteman, TEKNKL (blog.teknkl.com / sandy@teknkl.com) | |
| * @version v0.2.3 | |
| * @copyright Copyright 2016, 2017, 2018, 2019, 2020 FigureOne, Inc. | |
| * @license Hippocratic 2.1: This license must appear with all reproductions of this software. | |
| */ | |
| window.FormsPlus = window.FormsPlus || { | |
| allDescriptors: {}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function register_ch4rlie_ee4_shortcodes( $shortcodes, EE_Shortcodes $lib ) { | |
| //Add a shortcode to be used with the EE Event List within messages | |
| if ( $lib instanceof EE_Event_Shortcodes ) { | |
| //Add your shortcode to the add as the key, the value should be a description of the shortcode. | |
| $shortcodes['[PREADING_LINK]'] = _('Outputs a html link to the course reading materials, or returns blank if none is found.'); | |
| } |