Quote:but can't get how to do it ?
What did you try? I think the plugin doesn't add any user-side interaction tool or mechanism, leaving that up to the designer.
I think you will need to add your own JavaScript code to toggle or update settings from the client side, should be clear from reading the below point (specifically the
setOptionCase()
method):
https://github.com/dvz/mybb-dvzThemeOpti...lient-side
Then you can read the values (initial values, or these updated from the client side) either assigning them to a JavaScript variable or by directly using the plugin variable (
{$themeOptionCases}
).
https://github.com/dvz/mybb-dvzThemeOpti...the-client
Since MyBB doesn't uses template conditionals as of now I suppose passing the values to a JavaScript variable and reading from there is the primary aim of the plugin.
I myself don't use this plugin (as of now) but I think I might be on the right route so I hope my reply is of some use to you.