Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

PWA Pay Without Account Inquiry


steward dondi

Recommended Posts

Posted

I've uploaded the files for the PWA contribution and I've run the common.sql and english.sql on myphpadmin.

 

When I log into the admin section under cusomer details I see the pay without account line and it is selected to yes.

 

Here is the thing. When I go to my site: www.bobostinytreasures.com and click on checkout when I add a product to cart it

 

still shows the same page features i.e. log in or create account. I'm trying to get the third feature of payingwithout account

 

to work. Can you add your input to my situation as to what I may be doing incorrectly.

 

Thank you kindly

 

Steward Dondi

Posted
to work. Can you add your input to my situation as to what I may be doing incorrectly.

read the installation manual & re-check the installation steps.

Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here!

8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself.

Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues.

Any issues with oscommerce, I am here to help you.

Posted

Your catalog/login.php file is missing this code:

<?php

 

// PWA BOF

 

if (defined('PURCHASE_WITHOUT_ACCOUNT') && (PURCHASE_WITHOUT_ACCOUNT == 'ja' || PURCHASE_WITHOUT_ACCOUNT == 'yes')) {

 

?>

 

<tr>

 

<td colspan="2" width="100%"><table border="0" width="100%" height="100%" cellspacing="1" cellpadding="2" class="infoBox">

 

<tr class="infoBoxContents">

 

<td><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="2">

 

<tr>

 

<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

 

</tr>

 

<tr>

 

<td class="main"><?php echo TEXT_GUEST_INTRODUCTION; ?></td>

 

</tr>

 

<tr>

 

<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

 

</tr>

 

<tr>

 

<td><table border="0" width="100%" cellspacing="0" cellpadding="2">

 

<tr>

 

<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

 

<td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_CREATE_ACCOUNT, 'guest=guest', 'SSL') . '">' . tep_image_button('button_checkout.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>

 

<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>

 

</tr>

</table></td>

</tr>

</table></td>

</tr>

</table></td>

</tr>

<?php

 

}

 

// PWA EOF

 

?>

Archived

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

×
×
  • Create New...