Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

SMART CHECKOUT (official support thread)


strub

Recommended Posts

Ok at the end of the install you have

 

After downloading create new folder and add the two file into the new created folder:

catalog/ext/livevalidation

catalog/ext/livevalidation/livevalidation.js

catalog/ext/livevalidation/livevalidation.css

 

I went to the site and I can't find the files. They only show 2 .js files and no css file

1: livevalidation_prototype.compressed.js and

2:livevalidation_standalone.js

Link to comment
Share on other sites

I see what you are saying, but I think it has something to do with everything being dumped on the right. I didn't change the column sizes at all.

 

blackmountaindesigns.com/catalog

 

Any help would be appreciated.

I just looked at mine and I have the same problim. It comes up just like the blackmountaindesigns.com/catalog

This is not good.

www.a1worldofgifts.com/os/

Please let us know how to fix this

Link to comment
Share on other sites

@@bmdllc

 

 

Ok I found the problem: just delete the last div of the code below in checkout.php.

 

 

</table><table width="100%" border="0" cellpadding="2" cellspacing="2">
  <tbody><tr>
    <td class="fieldKey">Company Name:</td>
    <td class="fieldValue"><input name="company" class="text" type="text"> </td>
  </tr>
   </tbody></table>
</div> 

Edited by strub
Link to comment
Share on other sites

@acbatchelor

 

Which USPS contribution do you use? There are a lots.

 

 

@crwhite57

 

just download the

Fully documented... standalone version

 

the css you will find on the example page on the bottom.

Edited by strub
Link to comment
Share on other sites

@@bmdllc

 

 

Ok I found the problem: just delete the last div of the code below in checkout.php.

 

 

</table><table width="100%" border="0" cellpadding="2" cellspacing="2">
  <tbody><tr>
	<td class="fieldKey">Company Name:</td>
	<td class="fieldValue"><input name="company" class="text" type="text"> </td>
  </tr>
</tbody></table>
</div>

 

Cool, that fixed my problem. I'm not sure if your code snip is in a processed state, my code looked a bit different in the checkout.php file, but I picked up what you were laying down. If anyone else is having this problem, here's what my code looked like. Remove the </div> found at about line 1827 in my editor. Thank you for the help, greatly appreciated!

 

<div id="extra">
 <table border="0" cellspacing="2" cellpadding="2" width="100%">
  <tr>
	<td class="fieldKey"><?php echo ENTRY_COMPANY; ?></td>
	<td class="fieldValue"><?php echo tep_draw_input_field('company', $sc_guest_company, 'class="text"') . ' ' . (tep_not_null(ENTRY_COMPANY_TEXT) ? '<span class="inputRequirement">' . ENTRY_COMPANY_TEXT . '</span>': ''); ?></td>
  </tr>
</table>
</div>

Edited by bmdllc
Link to comment
Share on other sites

TypeError: 'undefined' is not an object (evaluating 'document.checkout_payment.payment')

 

Quick fix to get no error:

 

find in checkout.php (about line 1692):

// one button is not an array
 if (document.checkout_payment.payment[0]) {
   document.checkout_payment.payment[buttonSelect].checked=true;
 } else {
   document.checkout_payment.payment.checked=true;
 }

 

and just replace with:

// one button is not an array
 /*if (document.checkout_payment.payment[0]) {
   document.checkout_payment.payment[buttonSelect].checked=true;
 } else {
   document.checkout_payment.payment.checked=true;
 }*/

Link to comment
Share on other sites

@acbatchelor

 

Which USPS contribution do you use? There are a lots.

 

 

@crwhite57

 

just download the

Fully documented... standalone version

 

the css you will find on the example page on the bottom.

Ok but I need to know how to edit this line to go into

 

################################################

in catalog/includes/template_top.php

################################################

find:

----------------------------------

</head>

 

add above:

----------------------------------

<?php

//SMART CHECKOUT BOF - livevalidation

if (SC_LIVE_VALIDATION == 'true') {

if (($_SERVER['SCRIPT_NAME'] == DIR_WS_HTTP_CATALOG . 'checkout.php') || ($_SERVER['SCRIPT_NAME'] == DIR_WS_HTTPS_CATALOG . 'checkout.php')) {

?>

<script type="text/javascript" src="ext/livevalidation/livevalidation.js"></script>

<link href="ext/livevalidation/livevalidation.css" rel="stylesheet" type="text/css" />

<?php

}

}

//SMART CHECKOUT EOF - End livevalidation

?>

Link to comment
Share on other sites

Found another problem. The order total div does not expand when there are extra modules like discounts and taxes, so the div border interferes with the text. Example image below:

 

 

otdiv.jpg

 

I have solved this problem by using "overflow: hidden" on the order_total_modules div.

 

Add the following to your stylesheet:

 

#order_total_modules {
overflow: hidden;
}

Edited by acbatchelor
Link to comment
Share on other sites

  • 3 weeks later...

Couple of problems, I'm using payment modules that are dependant on shipping modules. the #payment_options updates some of the time, but long from every time. I have a fee on the COD, the fee is not updated in the order_totals when changing payment options.

 

What could be the problem?

Link to comment
Share on other sites

  • 2 weeks later...

I have 2 problem with the module:

 

1. When press "Go to confirmation" button, not redirect to checkout_success.php and return me to shopping_cart.php with message "Your Shopping Cart is empty!"

I tried with enable option "Confirmation Page" and with disable option "Confirmation Page", but the result is the same. When enable "Confirmation Page" after redirect to sc_checkout_confirmation.php and hit the button "Confirmation" me again returns to shopping_cart.php with message "Your Shopping Cart is empty!"

I use the template for the site, if that matters ...

 

2. Still trying to get to work with FLAT RATE, after set zone in FLAT RATE, when pressing the "Confirmation" return message "No shipping available to the selected country"

Link to comment
Share on other sites

Wrong password in welcome mail!

I have installed this contribution on a clean osC version 2.3. and did some tests by creating some orders.

It worked nice. I created a account and get a welcome mail with my account name and password.

But the password in the mail is not the one I filled in?

Can someone tell me what to do?

Here under a part of the mail.

------------------------------------------------------------------------------------------------------------

Your username is: nicohend@.....

 

Your password is: $P$D4JvgCH67nad6TtOVVbSfDVvCg9c9b1

 

You can now take part in the various services we have to offer you. Some of these services include:

 

Permanent Cart - Any products added to your online cart remain there until you remove them, or check them out.

Address Book - We can now deliver your products to another address other than yours

-------------------------------------------------------------------------------------------------------------

Link to comment
Share on other sites

  • 1 month later...
This plugin have FANTASTiC support... Autor not loged here from 21 July 2012

 

Sorry for this. But I am very bussy at the moment. Hope I will find some time to improve it soon. I am totally aware that the current version is still a mess of code.

Edited by strub
Link to comment
Share on other sites

  • 3 weeks later...
  • 1 month later...

Hiya,, sorry complete newbie here... having a little problem i cant see the smart checkout in my admin bit... im guessing this is coz i havent run the sql database file properly.. can any help me with this? how to run the admin database fil? step by step would be great help thanks

Link to comment
Share on other sites

  • 2 weeks later...

Hi all

1st, excuse me for my english...

 

I've just installed smart checkout and follow install.txt

When I enable smart "checkout true" I have this problem when I click on "checkout button"

Error is :

 

Fatal error: Cannot redeclare do_magic_quotes_gpc() (previously declared in /homez.55/studiowey/www/--rlcadvent--/catalog/includes/functions/compatibility.php:18) in /homez.55/studiowey/www/--rlcadvent--/catalog/includes/functions/compatibility.php on line 18

 

Thank you for your help

Link to comment
Share on other sites

  • 1 month later...

I am still interested if anybody does this contribution use in a live shop? And do you wish this contribution to be improved? Many thanks in advance.

 

I would like to use it on my live shop.

But still having the problem that "sc_checkout_confirmation.php" redirects to "shopping_cart.php"

Also, no confirmation email is send to the client.

 

Edit : confirmation email was send to client. :thumbsup:

Edited by labrero
Link to comment
Share on other sites

  • 3 months later...
  • 2 weeks later...

Does anyone know why my bill address and shipping address's are missing from my order emails?

 

 

 

Would really appreciate any help !!

 

they look like this>>>>

 

 

 

Shirts. ------------------------------------------------------

 

Order Number: 190

Date Ordered: Thursday 16 May, 2013

 

Products

------------------------------------------------------

 

3 x Green Shirts (018) = $50.85

Type MENS Shirt Size X LARGE

Shirt & Graphic Color BLACK Shirt With White Graphic

 

------------------------------------------------------

Sub-Total: $50.85

Quantity Discount: -$10.00

Total: $40.85

 

Delivery Address

------------------------------------------------------

 

 

 

 

 

Billing Address ------------------------------------------------------

 

 

 

 

 

 

Payment Method ------------------------------------------------------

 

 

PayPal Website Payments Standard

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 year later...

Hi

 

I am using this add-on, but having issue with the PayPal standard payment method,

 

osCommerce version: osCommerce Online Merchant v2.3.4
Paypal Version: Version: 3.1
Which browser: Firefox Mozilla
Which device: Laptop & Desktop

 

When customer pay with the Paypal, the order has been placed but not successful. though the payment has been debited from the paypal account and the shopping cart did not empty.

 

I got the error: "Could not verify the PayPal transaction. Please try again."

 

Can anyone know what could be the issue?

 

Thanks

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
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...