Re: One-Page Checkout [Support Thread]
The OPC's Registered Accounts (which that configuration setting enables) enables your store's customers to create a slimmed-down account (no ship-to/bill-to addresses are recorded in the customer's account).
Unlike a guest-checkout, this customer has a unique customer-account with minimal data-gathering (good for GDPR). A customer with a registered account can do anything that one with a "normal" account can, except that they need to enter their address information each time they place an order.
Re: One-Page Checkout [Support Thread]
OPC 1.1.0 (yes, I know it's old but I didn't see any reference in version changes that would have addressed this particular issue)
ZC 1.5.4
When checking out using store credit funds and store credit funds exceed order total, a payment type is required even though the balance due is $0. Resulting in endless loop (from customer comment)
Use Store Credit funds minus one cent and selecting payment type completes order as expected.
Re: One-Page Checkout [Support Thread]
Could you provide a link to the Store Credits module that you're using, Rick?
Re: One-Page Checkout [Support Thread]
AFAIK, it is the store credit that is built in ???
I may have 'changed' the words 'gift certificate' to 'store credit'. Need to get through first coffee of the day and I'll check.
TNX Cindy
Re: One-Page Checkout [Support Thread]
Quote:
Originally Posted by
lat9
Could you provide a link to the Store Credits module that you're using, Rick?
Built in GV code with text labels renamed to Store Credit
Since we have a 100% manual admin intervention rate for built in Gift Certificates, we changed the labels. Zero customers have been able to follow the instructions for GV redemption via automated system.
Re: One-Page Checkout [Support Thread]
Was that GIT issue #85?
that I missed?
Re: One-Page Checkout [Support Thread]
Quote:
Originally Posted by
RixStix
Was that GIT issue #85?
that I missed?
Most likely. That change was incorporated into OPC v1.2.0 and later.
Re: One-Page Checkout [Support Thread]
Updating a site that also uses snap affiliates. Wanted to make sure I merged correctly since admin/orders changes coincide.
Merged version for notifiers:
Code:
<?php//-bof-one_page_checkout-lat9-Additional notifiers to enable additional order status-icons. *** 1 of 2 ***
$extra_legends = '';
$zco_notifier->notify('NOTIFY_ADMIN_ORDERS_MENU_LEGEND', array(), $extra_legends);
?>
<tr>
<td class="smallText"><?php echo TEXT_LEGEND . ' ' . zen_image(DIR_WS_IMAGES . 'icon_status_red.gif', TEXT_BILLING_SHIPPING_MISMATCH, 10, 10) . ' ' . TEXT_BILLING_SHIPPING_MISMATCH . $extra_legends . snap_affiliates_image(); //-snap_affiliates-lat9 *** 5 of 6 *** ?>
</tr>
<?php
//-eof-one_page_checkout-lat9-Additional notifiers to enable additional order status-icons. *** 1 of 2 ***
?>
I note that the ?> of the snap_affiliates merge was commented out by the original merge, so I left it that way.
Re: One-Page Checkout [Support Thread]
That looks right, @dbltoe. Note that the ?> is not exactly commented-out, since it takes precedence over the in-line comment added by SNAP.
Re: One-Page Checkout [Support Thread]
THANX:hug:
Wanted to make sure the trifocals were seeing it correctly.:cool: