I have been trying to change the default email logo by adding a value to DEFAULT_EMAIL_LOGO_URL
using a tutor plugin. Every time I enable the plugin and save the config, it gets added to the production settings but the default email logo variable comes after the one i’ve added. For eg.:
258. DEFAULT_EMAIL_LOGO_URL = "http://local.edly.io:8000/logo_url" # Logo url which I added
...
364. DEFAULT_EMAIL_LOGO_URL = LMS_ROOT_URL + "/theming/asset/images/logo.png"
How do I make sure that every changes I add using a tutor plugin comes to the end of the production settings or whereever I am adding it to?
One thing I found out was that, this occurs only when I add to the common settings patch. When I add it to the lms production patch, it works fine.