Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Checkout_Shipping.php Page!


Guest

Recommended Posts

Sorry I forgot to add this question in the post I did a minute ago.

 

As you can see from the picture below this is the Checkout_shipping.php page where the customer selects which type of delivery they would like. All the text is aligned to the left but is squashed filling only 50% of the available space.

 

I would like that text running right accross the page. Can anyone tell me how to edit it? and where, what files...........Im guessing it has something to do with the page width. I did try changing the width in verious files but was unsuccessful.

 

www.electra-sales.co.uk/checkout_shipping.php

 

checkout.JPG

 

 

Thanks for all your help in advance, dont know what I would do without this forum!

 

Ross :thumbsup:

Link to comment
Share on other sites

Sorry I forgot to add this question in the post I did a minute ago.

 

 

I would like that text running right accross the page.  Can anyone tell me how to edit it? and where, what files...........Im guessing it has something to do with the page width.  I did try changing the width in verious files but was unsuccessful.

 

www.electra-sales.co.uk/checkout_shipping.php

 

Thanks for all your help in advance, dont know what I would do without this forum!

 

Ross  :thumbsup:

In catalog/checkout_shipping.php you will find the html for the table which displays the stuff on that page.

I guess the 'please select' and its possible options are occupying a colum.

You might find fiddling about with this may help.

 

I would back that file up first though, and equally I may be wrong.

 

Rick

Link to comment
Share on other sites

In catalog/checkout_shipping.php you will find the html for the table which displays the stuff on that page.

I guess the 'please select' and its possible options are occupying a colum.

You might find fiddling about with this may help.

 

I would back that file up first though, and equally I may be wrong.

 

Rick

 

Hi

 

Thanks for your help.

 

I had a look in Catolog/Checkout_shipping.php but couldnt find anything that might fix this for me.

 

I found this code below does it have anything to do with it??

 

// if no shipping method has been selected, automatically select the cheapest method.
// if the modules status was changed when none were available, to save on implementing
// a javascript force-selection method, also automatically select the cheapest shipping
// method if more than one module is now enabled
if(!tep_session_is_registered('shipping') || (tep_session_is_registered('shipping') && ($shipping == false) && (tep_count_shipping_modules() > 1)))
$shipping = $shipping_modules->cheapest();

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

$SUBS['TITLE'] = TITLE;
$SUBS['CHARSET'] = CHARSET;
$SUBS['HTML_PARAMS'] = HTML_PARAMS;
$SUBS['BASE'] = (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG;
$SUBS['SEPARATOR_BODY'] = tep_draw_separator('pixel_trans.gif', '100%', '10');
$SUBS['PIXEL_SILVER'] = tep_draw_separator('pixel_silver.gif', '100%', '1');
$SUBS['TEP_DRAW_SEPARATOR10'] = tep_draw_separator('pixel_trans.gif', '10', '1');
$SUBS['TEXT_INFORMATION'] = TEXT_INFORMATION;
$SUBS['TEP_HREF_LINK_FILENAME_DEFAULT'] = tep_href_link(FILENAME_DEFAULT);
$SUBS['TEP_IMAGE_BUTTON'] = tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE);

if(WARN_INSTALL_EXISTENCE == 'true')
if(file_exists(dirname($_SERVER['SCRIPT_FILENAME']) . '/install'))
 $messageStack->add('header', WARNING_INSTALL_DIRECTORY_EXISTS, 'warning');

// check if the configure.php file is writeable
if(WARN_CONFIG_WRITEABLE == 'true')
if((file_exists(dirname($_SERVER['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($_SERVER['SCRIPT_FILENAME']) . '/includes/configure.php')))
 $messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning');

 

 

Thanks

 

ROss

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...