// Get the current URL var currentUrl = window.location.href; // Define an object with mappings of variables to corresponding text fields var fieldMappings = { utm_campaign: 'mx_utm_campaign', utm_medium: 'mx_utm_medium', utm_source: 'mx_utm_source', }; // Loop through the mappings and insert the values into the corresponding text fields for (var param in fieldMappings) { var fieldName = fieldMappings[param]; var match = currentUrl.match(new RegExp('[?&]' + param + '=([^&]+)')); if (match) { var paramValue = match[1]; var textField = document.querySelector('input[name="' + fieldName + '"]'); if (textField) { textField.value = paramValue; } } }
top of page

Wednesday 31 January, 2035

2023 Graduation Speech

This item is connected to a text field in your content collection. Double click to add your own content. Click the Content Manager icon on the add panel to your left.

This item is connected to a text field in your content collection. Double click what you want to edit and then select "Change Content" to open the collection. Want to view and manage all your collections? Click the Content Manager icon on the add panel to your left. In the Content Manager, you can update items, add new fields, create dynamic pages and more.

Your content collection is already set up with fields and content. Add your own by editing each field, or import CSV files to your content collection. You can create fields for rich content, images, videos and more.

bottom of page