@Datfatboi never change the module code ( your second choice)
unless u are fixing a bug or adding some new function.
always put info into config.js
now, your lines for config.js are not correct.
{
module: "MMM-RottenTomatoes",
position: "top_left",
config: {
showHeader: "true"
showBoxOffice: "true"
showOpeningThisWeek: "true"
}
},
watch out for the quote style… the curved ones are used by MS office apps…
we need the text ones, straight up and down
also u are missing some required trailing commas
look at each line, and follow the rules
general rules for module definition
{} and [] must be matched
the word to the left of : does not need quotes
the thing to the right of : if a number or, true/false does NOT need quotes
otherwise is needs quotes, single or double doesn’t matter as long as start and end quote are the same
if the thing on the next line is a word , then THIS line needs a trailing comma
if the thing on the next line is {, then THIS line needs a trailing comma
also, indentation makes it MUCH easier to see the {} and []