This is a discussion on Gift Voucher - send ability gone? within the osCMax v2 Features Discussion forums, part of the osCMax v2.0 Forums category; Greetings, Ok, using the CSS-Fluid-1 template system, but flipped back to stock and this is still going on... Set up ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Greetings, Ok, using the CSS-Fluid-1 template system, but flipped back to stock and this is still going on... Set up a Gift Voucher for $25 to get that part moving, can buy them with no problem. Even have the checkbox option at checkout and it applies the balance properly to the subsequent order. Two problems come up: #1 - On an order where I bought another GV and used the first one to pay for it, it calculated it all out fine but then when you review past orders instead of the $25 or $0 balance, now it's $50? Weird glitch. #2 - The biggie - where's the part supposed to be to have a Customer send a GV to someone else? It landed in the Queue, I released/redeemed it just fine and it's not there anymore. But there's no e-mail sent to me as the customer beyond the 'security' notification. When I log in as the Customer, or log out and re-login, supposedly I should be seeing a link in the Shopping Cart? Or if clicking on Cart Contents it should be there? Can't seem to find it at any point. If it's been modified by a mod to the shopping cart somewhere, I'm not sure what to look for. Far as I can tell, no mods changed the cart pages at all - just the text format, layout, etc. Anyone with a clue on this one? The docs are a mite skimpy and there hasn't been a post here about this type of problem. Thanks! |
| Sponsored Links | ||
| ||
|
#2
| ||||
| ||||
| Did you ever figure this out? If so, how? I too cannot email the gift voucher to anyone. If a customer buys a gift voucher, there's no prompt during checkout to email the gift to anyone. Thx, C |
|
#3
| |||
| |||
| Nope! Sadly not a single reply here nor offlist either. Having the same issue and when I've poked around in the code, still no major clues as to where it went. Only thing i can figure is that the template has an omission, but then again I'm seeing it when I flip to any other. That could be a software-wide problem where once you kick in an alternate template it fouls the whole thing up, but again with seriously skimpy docs it's near impossible to tell. Anyone else out there ever hit this and might be able to enlighten either of us as to how we can fix this or replace the missing code from another template we pick up from an unmodified version of this? It just appears like it should be flipping on a snippet to a zone that allows the customer to do this, but it just ain't there? Any clues appreciated! Dave |
|
#4
| ||||
| ||||
| Compaired CSS to the default template.... In CSS After: <head> Add: Code: <script language="javascript" type="text/javascript">
/********************************
* Addition for Authorize.net Consolidated
* by Austin519 - CVV PopUp Window
* If using a custom checkout_payment.php
* paste the following lines into your file
********************************/
function CVVPopUpWindow(url) {
window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=600,height=233,screenX=150,screenY=150,top=150,left=150')
}
</script>
</style> add: <?php require('includes/javascript/form_check.js.php'); ?> And change: Code: <div class="navBarContent"><div class="breadCrumb"><?php echo $breadcrumb->trail(' &raquo; '); ?></div><div class="navAcc"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> &nbsp;|&nbsp; <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> &nbsp;|&nbsp; <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> &nbsp;|&nbsp; <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></div></div>
</div>
Code: <div class="navBarContent"><div class="breadCrumb"><?php echo $breadcrumb->trail(' &raquo; '); ?></div><div class="navAcc">
<?php if ((tep_session_is_registered('customer_id')) && (!tep_session_is_registered('noaccount'))) // DDB - PWA - 040622 - no display of logoff for PWA customers
{ ?>
<a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> &nbsp;|&nbsp;
<?php } ?>
<?php if (!tep_session_is_registered('noaccount')) // DDB - PWA - 040622 - no display of account for PWA customers
{ ?>
<a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> &nbsp;|&nbsp;
<?php } ?>
<a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> &nbsp;|&nbsp;
<a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></div></div>
</div>
Other than that - I can't see what else it could be..... Good Luck |
| Sponsored Links | ||
| ||
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Gift Voucher Questions | alexbranding | osCMax v1.7 Discussion | 1 | 04-11-2005 11:18 AM |
| Gift Vouchers - Send voucher option doesn't show in cart | pram0310 | osCMax v1.7 Discussion | 1 | 09-10-2004 10:13 PM |
| Gift Voucher checkout | harpon | osCMax v1.7 General Mods Discussion | 2 | 07-30-2004 11:00 AM |
| changes with gift voucher | altenter | osCMax v1.7 Discussion | 9 | 07-19-2004 05:22 AM |
| Creating a Gift Voucher | Anonymous | osCMax v1.7 Discussion | 1 | 06-14-2004 05:55 AM |