peakinternet Posted January 18, 2017 Share Posted January 18, 2017 We created a security question that we can no longer use, but it's in use by hundreds of our customers. So in order for us to stop using it, we need to ask customer to change their security question, but we can't stop new customers from using that question since we cannot delete it since it's in use. So my question is, how can I go about "HIDING" this question from new signups? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted January 19, 2017 Share Posted January 19, 2017 as a temporary solution, you could add a tweak to the checkout.tpl template and change... {foreach $securityquestions as $question} <option value="{$question.id}"{if $question.id eq $securityqid} selected{/if}> {$question.question} </option> {/foreach} to... {foreach $securityquestions as $question} {if $question.id neq '1'} <option value="{$question.id}"{if $question.id eq $securityqid} selected{/if}> {$question.question} </option> {/if} {/foreach} and change the value '1' to whatever is the current position of the question you want to hide. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.