Post by tommy2times » Mon Jan 31, 2011 6:40 am

Thinkin about trying opencart as it looks v good!

Is it possible to set it up very basic? so people don't see an option to register or login, and they can only pay through paypal?

thank in advance

tommy2times

New member

Posts

Joined
Mon Jan 31, 2011 6:37 am

Post by kedgetech » Mon Jan 31, 2011 7:25 am

You mean with out any details during checkout (email, name) everything taken care by Paypal ?

User avatar
Active Member

Posts

Joined
Mon Mar 22, 2010 5:20 pm
Location - USA, Australia, India

Post by tommy2times » Mon Jan 31, 2011 7:28 am

Yeah pretty much.. and without them having to become a site user to buy,

New member

Posts

Joined
Mon Jan 31, 2011 6:37 am

Post by philbydevil » Mon Jan 31, 2011 9:37 am

There is a "Guest Checkout" option, so your customers can choose this if they like.

I'm sure that it can be made the only option with a small amount of code changes.

I heart cmd-f, cmd-c, cmd-v, cmd-z + vQmod.
My favourite page...
v1.5.4.1


User avatar
Active Member

Posts

Joined
Fri Dec 03, 2010 5:20 am

Post by Qphoria » Mon Jan 31, 2011 11:22 am

There is a Paypal Express module
http://www.opencart.com/index.php?route ... ion_id=191
that allows customers to checkout without registering and uses the paypal address to auto create the account.

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by tommy2times » Tue Feb 01, 2011 12:25 am

Thanks for the replies. Is there a link with anybody using that paypal mod?

New member

Posts

Joined
Mon Jan 31, 2011 6:37 am

Post by Qphoria » Tue Feb 01, 2011 1:16 am

my site (see sig) uses it

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by tommy2times » Tue Feb 01, 2011 2:04 am

Thanks, looks good. So that is just opencart + the paypal mod i need?

New member

Posts

Joined
Mon Jan 31, 2011 6:37 am

Post by tommy2times » Thu Feb 03, 2011 12:33 am

Hi I noticed when I click checkout on your site it has the paypal button but also:Account Login

Can the account login be removed so it is just paypal only?

Thanks again

New member

Posts

Joined
Mon Jan 31, 2011 6:37 am

Post by tommy2times » Sat Feb 05, 2011 9:03 pm

any ideas O0

New member

Posts

Joined
Mon Jan 31, 2011 6:37 am

Post by philbydevil » Sun Feb 06, 2011 4:55 am

Try this. Open catalog/view/theme/YOURTEMPlATE/template/account/login.tpl.

Find:

Code: Select all

  <div class="middle">
    <?php if ($success) { ?>
    <div class="success"><?php echo $success; ?></div>
    <?php } ?>
    <?php if ($error) { ?>
    <div class="warning"><?php echo $error; ?></div>
    <?php } ?>
    <div style="margin-bottom: 10px; display: inline-block; width: 100%;">
      <div style="float: left; display: inline-block; width: 49%;"><b style="margin-bottom: 2px; display: block;"><?php echo $text_i_am_new_customer; ?></b>
        <div style="background: #F7F7F7; border: 1px solid #DDDDDD; padding: 10px; min-height: 210px;">
          <form action="<?php echo str_replace('&', '&', $action); ?>" method="post" enctype="multipart/form-data" id="account">
            <p><?php echo $text_checkout; ?></p>
            <label for="register" style="cursor: pointer;">
              <?php if ($account == 'register') { ?>
              <input type="radio" name="account" value="register" id="register" checked="checked" />
              <?php } else { ?>
              <input type="radio" name="account" value="register" id="register" />
              <?php } ?>
              <b><?php echo $text_register; ?></b></label>
            <br />
            <?php if ($guest_checkout) { ?>
            <label for="guest" style="cursor: pointer;">
              <?php if ($account == 'guest') { ?>
              <input type="radio" name="account" value="guest" id="guest" checked="checked" />
              <?php } else { ?>
              <input type="radio" name="account" value="guest" id="guest" />
              <?php } ?>
              <b><?php echo $text_guest; ?></b></label>
            <br />
            <?php } ?>
            <br />
            <p><?php echo $text_create_account; ?></p>
            <div style="text-align: right;"><a onclick="$('#account').submit();" class="button"><span><?php echo $button_continue; ?></span></a></div>
          </form>
        </div>
      </div>
      <div style="float: right; display: inline-block; width: 49%;"><b style="margin-bottom: 2px; display: block;"><?php echo $text_returning_customer; ?></b>
        <div style="background: #F7F7F7; border: 1px solid #DDDDDD; padding: 10px; min-height: 210px;">
          <form action="<?php echo str_replace('&', '&', $action); ?>" method="post" enctype="multipart/form-data" id="login">
            <?php echo $text_i_am_returning_customer; ?><br />
            <br />
            <b><?php echo $entry_email; ?></b><br />
            <input type="text" name="email" />
            <br />
            <br />
            <b><?php echo $entry_password; ?></b><br />
            <input type="password" name="password" />
            <br />
            <a href="<?php echo str_replace('&', '&', $forgotten); ?>"><?php echo $text_forgotten_password; ?></a><br />
            <div style="text-align: right;"><a onclick="$('#login').submit();" class="button"><span><?php echo $button_login; ?></span></a></div>
            <?php if ($redirect) { ?>
            <input type="hidden" name="redirect" value="<?php echo str_replace('&', '&', $redirect); ?>" />
            <?php } ?>
          </form>
        </div>
      </div>
    </div>
  </div>
Change to:

Code: Select all

<div class="middle">
INSERT PAYPAL BUTTON CODE HERE
</div>
Back up first

I heart cmd-f, cmd-c, cmd-v, cmd-z + vQmod.
My favourite page...
v1.5.4.1


User avatar
Active Member

Posts

Joined
Fri Dec 03, 2010 5:20 am

Post by tommy2times » Sun Feb 06, 2011 6:24 am

Thanks for that mate! Will have a look into it, I might have found another way that will suite me even better, I'm going to put a thread up now as it's a bit off topic to this one, please take a look

New member

Posts

Joined
Mon Jan 31, 2011 6:37 am

Post by Qphoria » Sun Feb 06, 2011 9:38 am

phil's way is the best way

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by BrokenTree » Wed Aug 10, 2011 10:41 pm

Does this solution work in Australia using Paypal.com.au?

Newbie

Posts

Joined
Tue Jun 28, 2011 10:11 pm

Post by philbydevil » Tue Aug 16, 2011 5:06 pm

PayPal is PayPal. Should work anywhere.

I heart cmd-f, cmd-c, cmd-v, cmd-z + vQmod.
My favourite page...
v1.5.4.1


User avatar
Active Member

Posts

Joined
Fri Dec 03, 2010 5:20 am
Who is online

Users browsing this forum: Baidu [Spider], Bing [Bot], Semrush [Bot] and 39 guests