Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Missing "Continue Shopping Button"


squall24

Recommended Posts

I have been searching for a couple days now and cannot get it. Here is my catalog/shopping_cart.php file.

 

Any ideas?

 

<?php
/*
 $Id: shopping_cart.php 1739 2007-12-20 00:52:16Z hpdl $

 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2007 osCommerce

 Greenmania Template by www.badeziner.com 
 Released under the GNU General Public License
*/

 require("includes/application_top.php");

 if ($cart->count_contents() > 0) {
include(DIR_WS_CLASSES . 'payment.php');
$payment_modules = new payment;
 }

 require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_SHOPPING_CART);

 $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_SHOPPING_CART));
?>
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
<title><?php echo TITLE; ?></title>
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<meta name="Author" content="badeziner" />
<meta name="Theme" content="Greenmania" />
<meta name="webdesign" content="www.badeziner.com" /></head>
<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<div id="wrapper">
<!-- header //-->
<?php require(DIR_WS_INCLUDES . 'header.php'); ?>
<!-- header_eof //-->
<table width="814" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
  <td style="background: url(images/template/left_border.gif) repeat-y;width:7px;height:100%;"></td>
	<td colspan="11" bgcolor="#0A0909"><!-- body //-->
<table border="0" width="100%" cellspacing="3" cellpadding="3">
 <tr>
<td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
<!-- left_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
<!-- left_navigation_eof //-->
</table></td>
<!-- body_text //-->
<td width="100%" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_SHOPPING_CART, 'action=update_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td class="pageHeading"><table border="0" width="100%" cellspacing="0" cellpadding="0">
			<tr>
<td class="t1"><img src="images/template/box/t1.gif" width="17" height="28" /></td>
<td class="t2"><?php echo HEADING_TITLE; ?></td>
<td class="t3"><img src="images/template/box/t3.gif" width="17" height="28" /></td>
</tr>
	</table></td>
	  </tr>
	</table></td>
  </tr>

<?php
 if ($cart->count_contents() > 0) {
?>
  <tr>
	<td>
<?php
$info_box_contents = array();
$info_box_contents[0][] = array('align' => 'center',
								'params' => 'class="productListing-heading"',
								'text' => TABLE_HEADING_REMOVE);

$info_box_contents[0][] = array('params' => 'class="productListing-heading"',
								'text' => TABLE_HEADING_PRODUCTS);

$info_box_contents[0][] = array('align' => 'center',
								'params' => 'class="productListing-heading"',
								'text' => TABLE_HEADING_QUANTITY);

$info_box_contents[0][] = array('align' => 'right',
								'params' => 'class="productListing-heading"',
								'text' => TABLE_HEADING_TOTAL);

$any_out_of_stock = 0;
$products = $cart->get_products();
for ($i=0, $n=sizeof($products); $i<$n; $i++) {
// Push all attributes information in an array
  if (isset($products[$i]['attributes']) && is_array($products[$i]['attributes'])) {
	while (list($option, $value) = each($products[$i]['attributes'])) {
	  echo tep_draw_hidden_field('id[' . $products[$i]['id'] . '][' . $option . ']', $value);
	  $attributes = tep_db_query("select popt.products_options_name, poval.products_options_values_name, pa.options_values_price, pa.price_prefix
								  from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_OPTIONS_VALUES . " poval, " . TABLE_PRODUCTS_ATTRIBUTES . " pa
								  where pa.products_id = '" . (int)$products[$i]['id'] . "'
								   and pa.options_id = '" . (int)$option . "'
								   and pa.options_id = popt.products_options_id
								   and pa.options_values_id = '" . (int)$value . "'
								   and pa.options_values_id = poval.products_options_values_id
								   and popt.language_id = '" . (int)$languages_id . "'
								   and poval.language_id = '" . (int)$languages_id . "'");
	  $attributes_values = tep_db_fetch_array($attributes);

	  $products[$i][$option]['products_options_name'] = $attributes_values['products_options_name'];
	  $products[$i][$option]['options_values_id'] = $value;
	  $products[$i][$option]['products_options_values_name'] = $attributes_values['products_options_values_name'];
	  $products[$i][$option]['options_values_price'] = $attributes_values['options_values_price'];
	  $products[$i][$option]['price_prefix'] = $attributes_values['price_prefix'];
	}
  }
}

for ($i=0, $n=sizeof($products); $i<$n; $i++) {
  if (($i/2) == floor($i/2)) {
	$info_box_contents[] = array('params' => 'class="productListing-even"');
  } else {
	$info_box_contents[] = array('params' => 'class="productListing-odd"');
  }

  $cur_row = sizeof($info_box_contents) - 1;

  $info_box_contents[$cur_row][] = array('align' => 'center',
										 'params' => 'class="productListing-data" valign="top"',
										 'text' => tep_draw_checkbox_field('cart_delete[]', $products[$i]['id']));

  $products_name = '<table border="0" cellspacing="2" cellpadding="2">' .
				   '  <tr>' .
				   '	<td class="productListing-data" align="center"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '">' . tep_image(DIR_WS_IMAGES . $products[$i]['image'], $products[$i]['name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a></td>' .
				   '	<td class="productListing-data" valign="top"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '"><b>' . $products[$i]['name'] . '</b></a>';

  if (STOCK_CHECK == 'true') {
	$stock_check = tep_check_stock($products[$i]['id'], $products[$i]['quantity']);
	if (tep_not_null($stock_check)) {
	  $any_out_of_stock = 1;

	  $products_name .= $stock_check;
	}
  }

  if (isset($products[$i]['attributes']) && is_array($products[$i]['attributes'])) {
	reset($products[$i]['attributes']);
	while (list($option, $value) = each($products[$i]['attributes'])) {
	  $products_name .= '<br><small><i> - ' . $products[$i][$option]['products_options_name'] . ' ' . $products[$i][$option]['products_options_values_name'] . '</i></small>';
	}
  }

  $products_name .= '	</td>' .
					'  </tr>' .
					'</table>';

  $info_box_contents[$cur_row][] = array('params' => 'class="productListing-data"',
										 'text' => $products_name);

  $info_box_contents[$cur_row][] = array('align' => 'center',
										 'params' => 'class="productListing-data" valign="top"',
										 'text' => tep_draw_input_field('cart_quantity[]', $products[$i]['quantity'], 'size="4"') . tep_draw_hidden_field('products_id[]', $products[$i]['id']));

  $info_box_contents[$cur_row][] = array('align' => 'right',
										 'params' => 'class="productListing-data" valign="top"',
										 'text' => '<b>' . $currencies->display_price($products[$i]['final_price'], tep_get_tax_rate($products[$i]['tax_class_id']), $products[$i]['quantity']) . '</b>');
}

new productListingBox($info_box_contents);
?>
	</td>
  </tr>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>
  <tr>
	<td align="right" class="main"><b><?php echo SUB_TITLE_SUB_TOTAL; ?> <?php echo $currencies->format($cart->show_total()); ?></b></td>
  </tr>
<?php
if ($any_out_of_stock == 1) {
  if (STOCK_ALLOW_CHECKOUT == 'true') {
?>
  <tr>
	<td class="stockWarning" align="center"><br><?php echo OUT_OF_STOCK_CAN_CHECKOUT; ?></td>
  </tr>
<?php
  } else {
?>
  <tr>
	<td class="stockWarning" align="center"><br><?php echo OUT_OF_STOCK_CANT_CHECKOUT; ?></td>
  </tr>
<?php
  }
}
?>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
		<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
		  <tr>
			<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
			<td class="main"><?php echo tep_image_submit('button_update_cart.gif', IMAGE_BUTTON_UPDATE_CART); ?></td>
<?php
$back = sizeof($navigation->path)-2;
if (isset($navigation->path[$back])) {
?>
			<td class="main"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>
<?php
}
?>
			<td align="right" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image_button('button_checkout.gif', IMAGE_BUTTON_CHECKOUT) . '</a>'; ?></td>
			<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
		  </tr>
		</table></td>
	  </tr>
	</table></td>
  </tr>
<?php
$initialize_checkout_methods = $payment_modules->checkout_initialization_method();

if (!empty($initialize_checkout_methods)) {
?>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>
  <tr>
	<td align="right" class="main" style="padding-right: 50px;"><?php echo TEXT_ALTERNATIVE_CHECKOUT_METHODS; ?></td>
  </tr>
<?php
  reset($initialize_checkout_methods);
  while (list(, $value) = each($initialize_checkout_methods)) {
?>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>
  <tr>
	<td align="right" class="main"><?php echo $value; ?></td>
  </tr>
<?php
  }
}
 } else {
?>
  <tr>
	<td align="center" class="main"><?php new infoBox(array(array('text' => TEXT_CART_EMPTY))); ?></td>
  </tr>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
		<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
		  <tr>
			<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
			<td align="right" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
			<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
		  </tr>
		</table></td>
	  </tr>
	</table></td>
  </tr>
<?php
 }
?>
</table></form></td>
<!-- body_text_eof //-->
 </tr>
</table>
<!-- body_eof //-->

<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //-->
  </td>
  <td style="background: url(images/template/right_border.gif) repeat-y;width:7px;height:100%;"></td>
</tr>
</table>
</div>
</body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

Link to comment
Share on other sites

its there, about half way down

 

 

<td class="main"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>

Sometimes you're the dog and sometimes the lamp post

[/url]

My Contributions

Link to comment
Share on other sites

its there, about half way down

 

 

<td class="main"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>

 

I guess I should have been more clear about whats happening. The continue shopping button is missing from my shopping cart page on my site. I saw that code there and i'm not sure why its not showing up, I was hoping someone would have an idea.

Link to comment
Share on other sites

This is actually an issue with the greenmania template. I did a clean install and it is not there. I also copied the shoping_cart.php from oscommerce into the greenmania template and it was still missing. What file could be the problem? Any help would be appreciated thanks.

Link to comment
Share on other sites

If this criteria isn't met it won't show:

 

<?php
$back = sizeof($navigation->path)-2;
if (isset($navigation->path[$back])) {
?>

You could try changing it to:

 

<?php
$back = sizeof($navigation->path)-1;
if (isset($navigation->path[$back])) {
?>

Just to see if it makes any diff.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Link to comment
Share on other sites

If this criteria isn't met it won't show:

 

<?php
$back = sizeof($navigation->path)-2;
if (isset($navigation->path[$back])) {
?>

You could try changing it to:

 

<?php
$back = sizeof($navigation->path)-1;
if (isset($navigation->path[$back])) {
?>

Just to see if it makes any diff.

 

You know I have the same problem and I did change it to -1 and it works but the silly thing that happens is that it takes you back to the shopping cart (i think) or the sign in page.. don't remember. I tried installing a contribution called:

 

* Login and Return to same page

===============================

Login and Return to same page - 19 Apr 2005

http://addons.oscommerce.com/info/3129

 

But that contribution is just usless. Apparently it has something to do with OsCommerce 2.2 and apparently it worked with 2.1.

 

Back to the subject.... works but it doesnt :<

 

Germ.. remember this is the same issue I mentioned in my post: http://www.oscommerce.com/forums/index.php?sho...p;#entry1349655

 

:blink: For better or worse I am not the only one with the same problem hahahahaha.

 

Greetings!

Ed. :lol:

Link to comment
Share on other sites

As a quick fix try replacing the application_top.php file in the includes/ directory with the file from a fresh oscommerce copy.

 

That will fix the bug, in the next days a bugfix will be released for those who don't want to replace the file.

 

I hope it helps.

Link to comment
Share on other sites

As a quick fix try replacing the application_top.php file in the includes/ directory with the file from a fresh oscommerce copy.

 

That will fix the bug, in the next days a bugfix will be released for those who don't want to replace the file.

 

I hope it helps.

 

I might try that too... it will most probably break but all i can do is trying it.

Thanks,

Ed

Link to comment
Share on other sites

  • 5 months later...
This is actually an issue with the greenmania template. I did a clean install and it is not there. I also copied the shoping_cart.php from oscommerce into the greenmania template and it was still missing. What file could be the problem? Any help would be appreciated thanks.

I'm having the same problem, the continue button not showing, but I don't have this template.

Also changing

<?php
$back = sizeof($navigation->path)-2;
if (isset($navigation->path[$back])) {
?>

to

<?php
$back = sizeof($navigation->path)-1;
if (isset($navigation->path[$back])) {
?>

does make the button to show but it isn't working properly.

It gets stuck on the cart page.

Please help?

Link to comment
Share on other sites

  • 2 weeks later...
I have the same problem, the button is missing and i've tried to replace til aplication_top.php with a fresh new one, no luck

 

Has anyone ever gotten a workable answer to this question (not an "it's there" answer) or is this just another oscommerce "cul-des-sack" ?

Link to comment
Share on other sites

Find:

 

 <td class="main"><?php echo tep_image_submit('button_update_cart.gif', IMAGE_BUTTON_UPDATE_CART); ?></td>
<?php
$back = sizeof($navigation->path)-2;
if (isset($navigation->path[$back])) {
?>
			<td class="main"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>
<?php
}
?>

 

Replace with:

 

<td class="main"><?php echo tep_image_submit('button_update_cart.gif', IMAGE_BUTTON_UPDATE_CART); ?></td>
<?php
$back = sizeof($navigation->path)-2;
// BOF FWR Mod category based continue button
$count = count($products);
if( isset($products[$count-1]['id']) ) {
  $continueButtonId = tep_get_product_path(str_replace(strstr($products[$count-1]['id'], '{'), '', $products[$count-1]['id']));
}
if( isset($continueButtonId) ) {
?>
			<td align="center" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT, 'cPath=' . $continueButtonId) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>
<?php
// if (isset($navigation->path[$back])) {  
} elseif (isset($navigation->path[$back])) {
// EOF FWR Mod category based continue button
?>
			<td align="center" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>
<?php
}
?>

Link to comment
Share on other sites

  • 3 weeks later...

Find:

 

 <td class="main"><?php echo tep_image_submit('button_update_cart.gif', IMAGE_BUTTON_UPDATE_CART); ?></td>
<?php
$back = sizeof($navigation->path)-2;
if (isset($navigation->path[$back])) {
?>
			<td class="main"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>

 

Replace with:

 

<?php
$back = sizeof($navigation->path)-1;
if (isset($navigation->path[$back])) {
?>
			<td align="center" class="main" style="padding-bottom:5px;"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>
?>

 

This should fix the initial problem, simple as it is, it will send the user to the home page. if something else is wanted just need to change the link reference: <?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">'

 

Hope this one help!

Link to comment
Share on other sites

  • 6 months later...

I confirm that the solution provided by HECgomrec (below) works perfectly. Tried and tested by a newbie like me. Just a note: in replacing the code be sure not to take out

 <td class="main"><?php echo tep_image_submit('button_update_cart.gif', IMAGE_BUTTON_UPDATE_CART); ?></td> 

from the file !

 

 

 

Find:

 

 <td class="main"><?php echo tep_image_submit('button_update_cart.gif', IMAGE_BUTTON_UPDATE_CART); ?></td>
<?php
$back = sizeof($navigation->path)-2;
if (isset($navigation->path[$back])) {
?>
			<td class="main"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>

 

Replace with:

 

<?php
$back = sizeof($navigation->path)-1;
if (isset($navigation->path[$back])) {
?>
			<td align="center" class="main" style="padding-bottom:5px;"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>
?>

 

This should fix the initial problem, simple as it is, it will send the user to the home page. if something else is wanted just need to change the link reference: <?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">'

 

Hope this one help!

Link to comment
Share on other sites

I confirm that the solution provided by HECgomrec (below) works perfectly. Tried and tested by a newbie like me. Just a note: in replacing the code be sure not to take out

 <td class="main"><?php echo tep_image_submit('button_update_cart.gif', IMAGE_BUTTON_UPDATE_CART); ?></td> 

from the file !

 

It does work but on only some pages then you get stuck and go around in circles and have to use the "go back one page" button on your toolbar. I ended up putting in a back button and all works well now but it was so long ago that I can't remember how I did it but I did get the info from this forum I seem to remember it was in cat/product_info that the code was put also had to make a "back button" and download it.

 

Not a lot of help I know.

 

Regards Mel

Link to comment
Share on other sites

  • 9 months later...

Just replying to an old topic again :blink:

 

I had the same problem where the continue shopping button wasnt showing but I figured out a workaround:

 

Find:

 

<?php
   $back = sizeof($navigation->path)-2;
   if (isset($navigation->path[$back])) {
?>
               <td class="main"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>

 

Replace with:

 

<?php
   $back = sizeof($navigation->path)-2;
    {
?>
               <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue_shopping.gif', IMAGE_BUTTON_CONTINUE_SHOPPING) . '</a>'; ?></td>

 

This will make 'Continue Shopping' button appear and will link back to the home page. 'Display Cart After Adding Product' is set to true as well, not sure if that matters, I just noticed it mentioned in previous posts.

 

Works for me, hope this helps :)

 

Regards

 

Trickz100

Link to comment
Share on other sites

  • 1 month later...

Hi Guys,

 

I found a proper solution for this, below is my code snippet u guys may need to change in shopping_cart.php of oscommerce v2.3.1

 

<div class="buttonSet">
//=====================The change I made start here===================//
<?php $urlfrom = $_SERVER['HTTP_REFERER']; echo '<a style="float:left; margin-left:238px;" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-primary ui-priority-primary" href="' . $urlfrom . '"><span class="ui-button-icon-primary ui-icon ui-icon-triangle-1-w"></span>' . '<span class="ui-button-text">Continue Shopping</span>' . '</a>'; ?>
//=====================The change I made end here===================//
   <span class="buttonAction"><?php echo tep_draw_button(IMAGE_BUTTON_CHECKOUT, 'triangle-1-e', tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'), 'primary'); ?></span>
 </div>

Link to comment
Share on other sites

Hi Guys,

 

I found a proper solution for this, below is my code snippet u guys may need to change in shopping_cart.php of oscommerce v2.3.1

 

<div class="buttonSet">
//=====================The change I made start here===================//
<?php $urlfrom = $_SERVER['HTTP_REFERER']; echo '<a style="float:left; margin-left:238px;" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-icon-primary ui-priority-primary" href="' . $urlfrom . '"><span class="ui-button-icon-primary ui-icon ui-icon-triangle-1-w"></span>' . '<span class="ui-button-text">Continue Shopping</span>' . '</a>'; ?>
//=====================The change I made end here===================//
   <span class="buttonAction"><?php echo tep_draw_button(IMAGE_BUTTON_CHECKOUT, 'triangle-1-e', tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'), 'primary'); ?></span>
 </div>

How about

<?php $urlfrom = $_SERVER['HTTP_REFERER']; ?>

<?php echo tep_draw_button('Continue Shopping', 'triangle-1-w', $urlfrom, 'primary'); ?>

to keep in line with tep draw button

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...