Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Modifying the manufacturers drop down box


Guest

Recommended Posts

Posted

Hi all,

Thanks in advanced for your help.

 

How do i modify the manufacturers drop down box to say 'Manufacturers' or 'Brand' instead of the default 'Please Select'.

Posted

includes/languages/yourlanguage.php

look for

define('PULL_DOWN_DEFAULT', 'Please Select');

and make a new one like

define('PULL_DOWN_MANUFACTURER', 'Manufacturers');

then open includes/boxes/manufacturers.php and change

$manufacturers_array[] = array('id' => '', 'text' => PULL_DOWN_DEFAULT);

to

$manufacturers_array[] = array('id' => '', 'text' => PULL_DOWN_MANUFACTURER);

 

and that should do it.

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Posted

Thanks wendyjames!

 

How would i add another drop down box under manufacturer in the manufacturers infobox?

Archived

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

×
×
  • Create New...