Hmmmm… The fund array is exceptionally simple right now and is stored in a single option something like this:
array(
'Name of fund one' => 'SHOW',
'Name of fund two, which is not displayed' => 'HIDE'
)
I think I would refactor that in a new version to something like
array(
array( name => 'Name of fund one', visibility => 'SHOW', goal => 1000 ),
array( name => 'Name of fund two, which is not displayed', visibility => 'HIDE', goal => false
)
where false could indicate no goal.
In an init hook or somewhere, you’d have to recognize that the old style array is present and transfer any data into the new style.
Of course, you’d also have to change the code that displays the fund options to recognize the new array structure.
Probably not take long to make these changes – if you write a patch for it, I could take a look – I hope to have the plugin on GitHub soon for pull requests too.
Cheers…
…Allen