Jump to content

Sirtin

Member
  • Posts

    3
  • Joined

  • Last visited

  • Days Won

    1

Sirtin last won the day on July 16 2016

Sirtin had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Sirtin's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Okay, I fixed what I wanted, but let me explain to make sure this is what you want too. I'm only using Paypal as a payment gateway and I wanted my customers to go from the basket (choosing a product) straight to Paypal. I have no need for the registration form. If this will solve your problem I'll explain what I did. It is really simple. Log into your cpanel and click on "file manager", then in the left column click "public_html" to "skins" to "foundation" to "templates". Now, in the right hand column, go to "content.register.php". Click on this and click on the "code editor" at the top of the page. The following is what you need to highlight and then right click on the highlighted area and using your browsers "cut" feature remove the highlighted area (lines 12 - 40) <p>{$LANG.account.already_registered} <a href="{$STORE_URL}/login.html">{$LANG.account.login_here}</a></p> <h2>{$LANG.account.register}</h2> <form action="{$VAL_SELF}" id="registration_form" method="post" name="registration"> {foreach from=$LOGIN_HTML item=html} {$html} {/foreach} <div class="row"> <div class="small-4 columns"><label for="title" class="show-for-medium-up">{$LANG.user.title}</label><input type="text" name="title" id="title" value="{$DATA.title}" placeholder="{$LANG.user.title}"></div> </div> <div class="row"> <div class="small-12 large-8 columns"><label for="first_name" class="show-for-medium-up">{$LANG.user.name_first}</label><input type="text" name="first_name" id="first_name" value="{$DATA.first_name}" placeholder="{$LANG.user.name_first} {$LANG.form.required}" required ></div> </div> <div class="row"> <div class="small-12 large-8 columns"><label for="last_name" class="show-for-medium-up">{$LANG.user.name_last}</label><input type="text" name="last_name" id="last_name" value="{$DATA.last_name}" placeholder="{$LANG.user.name_last} {$LANG.form.required}" required></div> </div> <div class="row"> <div class="small-12 large-8 columns"><label for="email" class="show-for-medium-up">{$LANG.common.email}</label><input type="text" name="email" id="email" value="{$DATA.email}" placeholder="{$LANG.common.email} {$LANG.form.required}" required ></div> </div> <div class="row"> <div class="small-12 large-8 columns"><label for="phone" class="show-for-medium-up">{$LANG.address.phone}</label><input type="text" name="phone" id="phone" value="{$DATA.phone}" placeholder="{$LANG.address.phone} {$LANG.form.required}" required></div> </div> <div class="row"> <div class="small-12 large-8 columns"><label for="mobile" class="show-for-medium-up">{$LANG.address.mobile}</label><input type="text" name="mobile" id="mobile" value="{$DATA.mobile}" placeholder="{$LANG.address.mobile}"></div> </div> <div class="row"> <div class="small-12 large-8 columns"><label for="password" class="show-for-medium-up">{$LANG.account.password}</label><input type="password" autocomplete="off" name="password" id="password" placeholder="{$LANG.account.password} {$LANG.form.required}" required ></div> </div> <div class="row"> <div class="small-12 large-8 columns"><label for="passconf" class="show-for-medium-up">{$LANG.account.password_confirm}</label><input type="password" autocomplete="off" name="passconf" id="passconf" placeholder="{$LANG.account.password_confirm} {$LANG.form.required}" required ></div>
  2. Maybe the majority of cubecart users are novices like me, that might account for the lack of support. However, I'm working on the php code, trial and error. We'll figure this thing out one way or another. Thanks for the encouragement.
  3. I'm concerned about the same issue, no need for and intrusive checkout form. Keep us posted and I'll do the same if I resolve the issue.
×
×
  • Create New...