
Originally Posted by
lindasdd
Yes, which is awesome.
But without "Check this box to make your already entered customer details a full customer profile." it isn't solving my problem.
One solution might be to state at the login page "Guest Checkout customers can not use coupons." - except good luck doing that in a way that customers notice without it being overly intrusive. So either you have a login page that yells the info to everyone, or you have a guest customer who is now frustrated because they already put their info in, but now can't use a code.
There's also a constant definition (present in /includes/languages/english/checkout_one.php):
Code:
// -----
// This constant defines the instructions you want displayed at the very top of the "checkout_one" page, before the form entry.
//
define ('TEXT_CHECKOUT_ONE_TOP_INSTRUCTIONS', ''); //-Displayed within a set of <p>...</p> tags if not empty.
If that language constant isn't an empty string (as distributed), then that information displays at the top of the checkout_one page's rendering. You could modify that to indicate the "guests can't use coupons" text.
Bookmarks