osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

Gift Voucher - send ability gone?

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 ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v2.0 Forums > osCMax v2 Features Discussion

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 11-18-2005, 10:00 AM
Lurker
 
Join Date: Oct 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
PSCGi
Default Gift Voucher - send ability gone?

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!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
  #2  
Old 03-25-2006, 10:50 AM
chrismole's Avatar
Active Member
 
Join Date: Dec 2003
Location: Chicago
Posts: 102
Thanks: 2
Thanked 2 Times in 2 Posts
Rep Power: 5
chrismole
Default

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 04-09-2006, 01:58 PM
Lurker
 
Join Date: Oct 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
PSCGi
Default

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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 04-10-2006, 06:54 PM
jpf's Avatar
jpf jpf is offline
Moderator

 
Join Date: Sep 2003
Location: Manitoba, Canada
Posts: 1,665
Thanks: 2
Thanked 93 Times in 79 Posts
Rep Power: 12
jpf is a glorious beacon of lightjpf is a glorious beacon of lightjpf is a glorious beacon of lightjpf is a glorious beacon of lightjpf is a glorious beacon of lightjpf is a glorious beacon of light
Default

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>
Afer
</style>
add:
<?php require('includes/javascript/form_check.js.php'); ?>

And change:
Code:
<div class="navBarContent"><div class="breadCrumb"><?php echo $breadcrumb->trail(' » '); ?></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>  |  <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a>  |  <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>  |  <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></div></div>
</div>
to
Code:
<div class="navBarContent"><div class="breadCrumb"><?php echo $breadcrumb->trail(' » '); ?></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>  | 
  <?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>  |  
    <?php } ?>
  <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>  |  
  <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></div></div>
</div>
CODE IS UNTESTED - USE AT YOUR OWN RISK!

Other than that - I can't see what else it could be.....

Good Luck
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

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


All times are GMT -8. The time now is 12:32 AM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax