Results 1 to 4 of 4

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

      
  1. #1
    Lurker
    Join Date
    Oct 2005
    Posts
    2
    Rep Power
    0


    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!

  2. #2
    Active Member chrismole's Avatar
    Join Date
    Dec 2003
    Location
    Chicago
    Posts
    102
    Rep Power
    9


    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

  3. #3
    Lurker
    Join Date
    Oct 2005
    Posts
    2
    Rep Power
    0


    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

  4. #4
    jpf
    jpf is offline
    osCMax Testing Team
    jpf's Avatar
    Join Date
    Sep 2003
    Location
    Manitoba, Canada
    Posts
    2,688
    Rep Power
    22


    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

Similar Threads

  1. Gift Voucher Questions
    By alexbranding in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 04-11-2005, 12:18 PM
  2. Gift Vouchers - Send voucher option doesn't show in cart
    By pram0310 in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 09-10-2004, 11:13 PM
  3. Gift Voucher checkout
    By harpon in forum osCMax v1.7 General Mods Discussion
    Replies: 2
    Last Post: 07-30-2004, 12:00 PM
  4. changes with gift voucher
    By altenter in forum osCmax v1.7 Discussion
    Replies: 9
    Last Post: 07-19-2004, 06:22 AM
  5. Creating a Gift Voucher
    By Anonymous in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 06-14-2004, 06:55 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •