XenForo
Administrative
- Thread starter
- Admin
- #1
Hello...
I know how to get a selection list option for installed addons with a named template and the code below.
But is there a way this can be accomplished with a selection list of installed styles?
Code:
Read more
Read more about this Feed . . .
I know how to get a selection list option for installed addons with a named template and the code below.
But is there a way this can be accomplished with a selection list of installed styles?
Code:
Code:
<xf:set var="$addOnRepo" value="{{ $xf.app.em.getRepository('XF:AddOn') }}" />
<xf:formrow label="{$option.title}" hint="{$hintHtml}" explain="{$explainHtml}" html="{$listedHtml}" rowclass="{$rowClass}">
<xf:select name="{$inputName}" value="{$option.option_value}">
<xf:option...
Read more
Read more about this Feed . . .