Jump to content

Resolved - Eliminate Guest Purchase via Mobile Skin?


Recommended Posts

On our default skin I have commented out the section that allows Guest purchases in content.checkout.confirm.php. But lately we have had 2 bonafide sales marked as Ghosts. I'm guessing they must have used a mobile phone for their purchase, but I prefer not to bother a customer to find out for sure.

Does anyone know how to modify the default mobile skin to eliminate Guest purchases?

Link to comment
Share on other sites

Guest Viola

It would be the same thing you did for the default skin - commenting out the registration checkbox in content.checkout.confirm.php right? The only real difference with the mobile skin is that it's tagged as mobile in the config.xml file (<mobile>true</mobile>). The rest is just lots of layout changes.

Link to comment
Share on other sites

Guest Viola

The bit you want to edit is checkout.confirm.php line 82:


<div class="select_register"><input type="checkbox" name="register" id="show-reg" value="1" class="" {$REGISTER_CHECKED} /> <label for="show-reg">{$LANG.account.create_account}</label></div>





Changing it to a hidden input should do the trick:




<input type="hidden" name="register" id="show-reg" value="1" />

Link to comment
Share on other sites

  • 1 year later...

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.

×
×
  • Create New...