Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

Can anyone add a button to my shopping cart code that will link to "Cart Contents" as I have been trying without success. I have the credit class installed but I just cannot seem to get an image in there.

 

Thanks in advance.

 

AO

 

My includes/boxes shoppingcart.php follows:

 

<?php

/*

 $Id: shopping_cart.php,v 1.2.2.9 2003/05/13 22:49:08 wilt Exp $

 orig : shopping_cart.php,v 1.18 2003/02/10 22:31:06 hpdl Exp $



 osCommerce, Open Source E-Commerce Solutions

 http://www.oscommerce.com



 Copyright (c) 2003 osCommerce



 Released under the GNU General Public License

*/

?>

<!-- shopping_cart //-->

<script language="javascript"><!--

function couponpopupWindow(url) {

 window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resiza
ble=yes,copyhistory=no,width=450,height=280,screenX=150,screenY=150,top=150,left=
150')

}

//--></script>



         <tr>

           <td>



<?php

 $info_box_contents = array();

 $info_box_contents[] = array('text' => BOX_HEADING_SHOPPING_CART);



 new infoBoxHeading($info_box_contents, true, true, tep_href_link(FILENAME_SHOPPING_CART));



 $cart_contents_string = '';

 if ($cart->count_contents() > 0) {

   $cart_contents_string = '<table border="0" width="100%" cellspacing="0" cellpadding="0">';

   $products = $cart->get_products();

   for ($i=0, $n=sizeof($products); $i<$n; $i++) {

     $cart_contents_string .= '<tr><td align="right" valign="top" class="infoBoxContents">';



     if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) {

       $cart_contents_string .= '<span class="newItemInCart">';

     } else {

       $cart_contents_string .= '<span class="infoBoxContents">';

     }



     $cart_contents_string .= $products[$i]['quantity'] . ' x </span></td><td valign="top" class="infoBoxContents"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '">';



     if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) {

       $cart_contents_string .= '<span class="newItemInCart">';

     } else {

       $cart_contents_string .= '<span class="infoBoxContents">';

     }



     $cart_contents_string .= $products[$i]['name'] . '</span></a></td></tr>';



     if ((tep_session_is_registered('new_products_id_in_cart')) && ($new_products_id_in_cart == $products[$i]['id'])) {

       tep_session_unregister('new_products_id_in_cart');

     }

   }

   $cart_contents_string .= '</table>';

 } else {

   $cart_contents_string .= BOX_SHOPPING_CART_EMPTY;

 }



 $info_box_contents = array();

 $info_box_contents[] = array('text' => $cart_contents_string);



 if ($cart->count_contents() > 0) {

   $info_box_contents[] = array('text' => tep_draw_separator());

   $info_box_contents[] = array('align' => 'right',

                                'text' => $currencies->format($cart->show_total()));

 }

// ICW ADDED FOR CREDIT CLASS GV

 if (tep_session_is_registered('customer_id')) {

   $gv_query = tep_db_query("select amount from " . TABLE_COUPON_GV_CUSTOMER . " where customer_id = '" . $customer_id . "'");

   $gv_result = tep_db_fetch_array($gv_query);

   if ($gv_result['amount'] > 0 ) {

     $info_box_contents[] = array('align' => 'left','text' => tep_draw_separator());

     $info_box_contents[] = array('align' => 'left','text' => '<table cellpadding="0" width="100%" cellspacing="0" border="0"><tr><td class="smalltext">' . VOUCHER_BALANCE . '</td><td class="smalltext" align="right" valign="bottom">' . $currencies->format($gv_result['amount']) . '</td></tr></table>');

     $info_box_contents[] = array('align' => 'left','text' => '<table cellpadding="0" width="100%" cellspacing="0" border="0"><tr><td class="smalltext"><a href="'. tep_href_link(FILENAME_GV_SEND) . '">' . BOX_SEND_TO_FRIEND . '</a></td></tr></table>');

   }

 }

 if (tep_session_is_registered('gv_id')) {

   $gv_query = tep_db_query("select coupon_amount from " . TABLE_COUPONS . " where coupon_id = '" . $gv_id . "'");

   $coupon = tep_db_fetch_array($gv_query);

   $info_box_contents[] = array('align' => 'left','text' => tep_draw_separator());

   $info_box_contents[] = array('align' => 'left','text' => '<table cellpadding="0" width="100%" cellspacing="0" border="0"><tr><td class="smalltext">' . VOUCHER_REDEEMED . '</td><td class="smalltext" align="right" valign="bottom">' . $currencies->format($coupon['coupon_amount']) . '</td></tr></table>');



 }

 if (tep_session_is_registered('cc_id') && $cc_id) {

   $info_box_contents[] = array('align' => 'left','text' => tep_draw_separator());

   $info_box_contents[] = array('align' => 'left','text' => '<table cellpadding="0" width="100%" cellspacing="0" border="0"><tr><td class="smalltext">' . CART_COUPON . '</td><td class="smalltext" align="right" valign="bottom">' . '<a href="javascript:couponpopupWindow('' . tep_href_link(FILENAME_POPUP_COUPON_HELP, 'cID=' . $cc_id) . '')">' . CART_COUPON_INFO . '</a>' . '</td></tr></table>');



 }



// ADDED FOR CREDIT CLASS GV END ADDITTION     

 new infoBox($info_box_contents);

?>

           </td>

         </tr>

<!-- shopping_cart_eof //-->

Posted

Why do you need that - the shopping cart already show the cart contents

Posted

I want one so that my thick customers (I HAVE QUITE A FEW) have no reason what so ever not to find the checkout and cart.

 

This is why!

 

Thanks

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...