I have figured out a workaround for anyone else interested — I didn’t want to toy with things too much, so I just went into the Plugin Editor and changed the default numbers to my fundraising goal and current progress… and where it said “default” for the theme (in two places) — I update this to default-green and it’s now working great as a workaround. Not the easy, GUI interface I would have preferred but at least I can make it live today and figure out the issue later.
If you need help sorting that out let me know — here’s the code you are looking for:
function show_ourprogress_graphic() {
if(get_option("ourprogressmax")) {$max = get_option("ourprogressmax");} else {$max = "100";}
if(get_option("ourprogressprogress")) {$current = get_option("ourprogressprogress");} else {$current = 0;}
if(get_option("ourprogressformat")) {$format = get_option("ourprogressformat");} else {$format = "$%(#10n";}
if(get_option("ourprogresstheme")) {$theme = get_option("ourprogresstheme");} else {$theme = "default";}
"
and one more location for default:
function addHeaderCode() {
if(get_option("ourprogresstheme")) {$theme = get_option("ourprogresstheme");} else {$theme = "default";}
Hope this helps, it’s definitely a workaround until someone can look at the code in more detail