Quote:
Originally Posted by Simon Lloyd
Andrew, thanks for the support and time you spent on this but if i could just make one more request, is it possible not to show the radio buttons or the go button when decline has been selected, as i said the decline message has a link in it back to forums, i could of course add another link back to the ldm page and perhaps call the links "Back to forums" and "Try again".
|
Missed that part, sorry.
It's just a matter of moving the close of the <if> test a bit further down in the links_agreement template, for example
Code:
<if condition="$ldm_accept<0">
<span class="highlight">$vbphrase[ll_agreement_declined]</span>
<else />
$vbphrase[ll_agreement]
<br /><br />
<input type="radio" name="ldm_accept_form" value="1" /> $vbphrase[ll_accept]
<input type="radio" name="ldm_accept_form" value="-1" checked="checked"/> $vbphrase[ll_decline]
<br /><br />
<input type="submit" class="button" name="submit" value="$vbphrase[ll_go]" />
</if>