Restrict editing of remote themes

For quite a while, best practice has been to avoid editing themes installed from a remote Git repository locally on Discourse. Any changes to theme code or uploads get wiped out when updating the theme from the remote repo.

In this commit, we’ve removed the ability to locally edit a remote theme and are now enforcing this best practice in Discourse.

What happens if I have a remote theme with local changes?

Nothing at this point. Your theme stays as is until you remove it or update it from remote.

How do I keep my local edits?

If your changes are CSS only:

You can copy your CSS-only changes to a brand new local theme component. To do so:

  1. Click Install
  2. Click Create new
  3. Click the Edit button in the right pane.
  4. Copy your CSS changes into the proper file (common/mobile/desktop).
  5. Save and enable the theme component.
  6. Update your remote theme to overwrite the local changes and avoid duplicate CSS.

If you’ve changed more than CSS (JS/Templates):

We recommend if you wish to keep your local edits to transition the theme to a local theme. To do this:

  1. Open the theme under Admin > Customize
  2. Click Export to download the theme with your local changes.
  3. Click Install under the theme list, then From your device
  4. Upload the exported theme, install and enable as previously.

The other option for those interested is to fork the remote theme on GitHub, commit your changes to the forked repository, and install that fork on your Discourse instance. This enables the option of rebasing your changes on top of any future updates to the main repository, which converting to a local theme does not offer.

Lastly, be sure to remove the remote theme to avoid duplication of changes and confusion in the future.

34 Likes

I used this feature to quickly preview changes of my remote theme. Is there a way to achieve this now? I don’t want to commit a height change somewhere, push it, pull and update only too see that it was too much or too few of a change :frowning:

1 Like

One way is to use Discourse Theme CLI (console app to help you build themes) to try the component with a different name before you push the commit. Another would be a development or staging site.

2 Likes

The CLI it is! Awesome! I didn’t know such thing existed, this will help a lot.

Thank you for the tip!

2 Likes

It is awesome! And you’ll be glad not to edit on a web browser ever again! :clinking_glasses:

4 Likes