HTML in MODX Manager GUI is not reflecting that on static file

166 Views Asked by At

I'm messing around with static files for the first time. I want to make all my templates and chunks static .html and .php files.

However, there is one issue: the changes I make to my files do not seem to appear within the MODX GUI, and vice versa.

For example, on my file components/templates/hometpl.html I have:

<!doctype html>
<html lang="en">
    [[$scripts]]
<body>
    [[$main-header]]
    <h1>Static File</h1>
    [[*content]]
</body>
</html>

But when I click this Template in the MODX Manager I see:

enter image description here

This does not seem to be a problem with the Chunks, just the Template static files.

I've tried clearing cache to no avail. Would anyone know if theres a way I could sync both what appears in the MODX GUI and what I've actually got on my file?

0

There are 0 best solutions below