Editing the Config File

Some settings live in a file called content/site-config.js and need to be edited by hand. Open it in any text editor — Notepad on Windows, TextEdit on Mac, or any code editor.

Golden rule: Always make a backup copy of a file before you edit it. Just copy and paste the file in the same folder. If something breaks, you can swap back.

Changing text

Find the line you want to change and edit the text between the quote marks:

phone: "01935 881200",

To change the phone number, just replace the number:

phone: "01935 999999",
Don't delete the quote marks or the comma at the end. Every line needs both. If the website stops working after a change, check you haven't accidentally removed one.

Changing opening hours

Opening hours are managed entirely through the admin panel (Hours tab). There is no need to edit any config file for hours.

Back to top