Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How can I remove the "log in"option in oscommerce v2.2 RC2


cutelaugh

Recommended Posts

Hey Guys, I have oscommerce v2.2 RC2 and am trying to remove the option "account log in" > Apparently not many customers would like to creat an account its a hassel for lots of customers and henceforth loosing the business. I remember in the older version it was very simple to have this option completely removed or have it as optional rather than obligatory. Can pse anyone help me.

 

Thank u so very much.

Tina

Link to comment
Share on other sites

HI Tina,

 

 

I don't think you can remove it completely as it is required to process your order through a number of payment processing companies. However, you can install PWA (Purchase without account) which only asks for pertinent shipping information.

 

 

http://addons.oscommerce.com/info/355

 

 

Chris

Thanks Chris, i went through the list, however i could not find anything for version 2.2rc2. I saw v2.2 rc2a. The option of PWA is very gud idea and thats what i need.

In my create_account php. This is what i have:

=========================================================================================================================

<?php

/*

$Id: create_account.php 1739 2007-12-20 00:52:16Z hpdl $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

define('NAVBAR_TITLE', 'Create an Account');

 

define('HEADING_TITLE', 'My Account Information');

 

define('TEXT_ORIGIN_LOGIN', '<font color="#FF0000"><small><b>NOTE:</b></font></small> If you already have an account with us, please login at the <a href="%s"><u>login page</u></a>.');

 

define('EMAIL_SUBJECT', 'Welcome to ' . STORE_NAME);

define('EMAIL_GREET_MR', 'Dear Mr. %s,' . "\n\n");

define('EMAIL_GREET_MS', 'Dear Ms. %s,' . "\n\n");

define('EMAIL_GREET_NONE', 'Dear %s' . "\n\n");

define('EMAIL_WELCOME', 'We welcome you to <b>' . STORE_NAME . '</b>.' . "\n\n");

define('EMAIL_TEXT', 'You can now take part in the <b>various services</b> we have to offer you. Some of these services include:' . "\n\n" . '<li><b>Permanent Cart</b> - Any products added to your online cart remain there until you remove them, or check them out.' . "\n" . '<li><b>Address Book</b> - We can now deliver your products to another address other than yours! This is perfect to send birthday gifts direct to the birthday-person themselves.' . "\n" . '<li><b>Order History</b> - View your history of purchases that you have made with us.' . "\n" . '<li><b>Products Reviews</b> - Share your opinions on products with our other customers.' . "\n\n");

define('EMAIL_CONTACT', 'For help with any of our online services, please email the store-owner: ' . STORE_OWNER_EMAIL_ADDRESS . '.' . "\n\n");

define('EMAIL_WARNING', '<b>Note:</b> This email address was given to us by one of our customers. If you did not signup to be a member, please send an email to ' . STORE_OWNER_EMAIL_ADDRESS . '.' . "\n");

?>

===============================================================================================================================

 

ALso i came across login.php in which i have the following, pse let me know where and what changes do i make it in order to give my clients an option of PWA.

============<?php

/*

$Id: login.php 1739 2007-12-20 00:52:16Z hpdl $

 

osCommerce, Open Source E-Commerce Solutions

http://www.oscommerce.com

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

 

define('NAVBAR_TITLE', 'Login');

define('HEADING_TITLE', 'Welcome, Please Sign In');

 

define('HEADING_NEW_CUSTOMER', 'New Customer');

define('TEXT_NEW_CUSTOMER', 'I am a new customer.');

define('TEXT_NEW_CUSTOMER_INTRODUCTION', 'By creating an account at ' . STORE_NAME . ' you will be able to shop faster, be up to date on an orders status, and keep track of the orders you have previously made.');

 

define('HEADING_RETURNING_CUSTOMER', 'Returning Customer');

define('TEXT_RETURNING_CUSTOMER', 'I am a returning customer.');

 

define('TEXT_PASSWORD_FORGOTTEN', 'Password forgotten? Click here.');

 

define('TEXT_LOGIN_ERROR', 'Error: No match for E-Mail Address and/or Password.');

define('TEXT_VISITORS_CART', '<font color="#ff0000"><b>Note:</b></font> Your "Visitors Cart" contents will be merged with your "Members Cart" contents once you have logged on. <a href="javascript:session_win();">[More Info]</a>');

?>

========================================================================================================================

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...