Jump to content

Hide existing security questions?


peakinternet

Recommended Posts

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?

Link to comment
Share on other sites

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. :idea:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated