Tuesday 04 May 2004 10:52:02 am
This is where looking at the php files help ;) If you look at the simpleshippingtype file you will see inside it makes reference to two ini variables:
$ini =& eZINI::instance( 'workflow.ini' );
$cost = $ini->variable( "SimpleShippingWorkflow", "ShippingCost" );
$description = $ini->variable( "SimpleShippingWorkflow", "ShippingDescription" );
These are from the workflow ini file. So, if you set the values in that ini file, preferably as an override it should add the correct amount. paul
-- http://www.visionwt.com
|