Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help linking pages


Libellula

Recommended Posts

Posted

I want to link from this page:

 

http://www.buffonbarrels.com/shipping.php

 

(Located root > includes > languages > english)

 

There is a continue button on the bottom right hand corner; I want that button to link to this page:

 

http://www.buffonbarrels.com/shippingtwo.php

 

(Located root > includes > languages > english)

 

I believe the to change the continue button I need to edit this file:

 

(Located root > shipping.php)

 

<?php
/*
 $Id$
 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com
 Copyright (c) 2010 osCommerce
 Released under the GNU General Public License
*/
 require('includes/application_top.php');
 require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_SHIPPING);
 $current_page = FILENAME_SHIPPING;
 $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_SHIPPING));
 require(DIR_WS_INCLUDES . 'template_top.php');
?>
<?php echo tep_draw_content_top();?>
<?php echo tep_draw_title_top();?>
<h1><?php echo HEADING_TITLE; ?></h1>
<?php echo tep_draw_title_bottom();?>
<div class="contentContainer">
 <div class="contentPadd txtPage">
 <div class="">
   <?php echo TEXT_INFORMATION; ?>
 </div>
 <div class="buttonSet fl_right" align="right">
   <span class="buttonAction"><?php echo tep_draw_button_top();?><?php echo tep_draw_button(IMAGE_BUTTON_CONTINUE, 'triangle-1-e', tep_href_link(FILENAME_SHIPPINGTWO)); ?><?php echo tep_draw_button_bottom();?></span>
 </div>
</div>
</div>
<?php echo tep_draw_content_bottom();?>
<?php
 require(DIR_WS_INCLUDES . 'template_bottom.php');
 require(DIR_WS_INCLUDES . 'application_bottom.php');
?>

 

 

How do I link this continue button to shippingtwo.php?

Please let me know if you need any additional information. Thank you!

Posted

Oops. Also another issue. I need to connect...

 

root > shippingtwo.php

 

Code same as above shipping.php

 

with

 

root > includes > languages > english > shippingtwo.php

Archived

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

×
×
  • Create New...