Tsuri Japan Posted September 25, 2006 Share Posted September 25, 2006 Hey guys I want to add my own image for my shipping since I'm using Zone 1 & 2 for Japanese post. Where do I add my image for this postage? Thanks, Nigelman :thumbsup: Quote Link to comment Share on other sites More sharing options...
Maggilove Posted September 25, 2006 Share Posted September 25, 2006 (catalog)/images/icons :) Quote Link to comment Share on other sites More sharing options...
Tsuri Japan Posted September 25, 2006 Author Share Posted September 25, 2006 Sorry Maggi I don't quite get it? How will these images work on my shipping if I load them in my icons section? Thanks, Nigelman Quote Link to comment Share on other sites More sharing options...
Maggilove Posted September 26, 2006 Share Posted September 26, 2006 Let's say you want to use an image called table_shipping.gif for table shipping..... you upload the image to your icons folder, then call the image in the table module. Find this section of code.... // class constructor function table() { global $order; $this->code = 'table'; $this->title = MODULE_SHIPPING_TABLE_TEXT_TITLE; $this->description = MODULE_SHIPPING_TABLE_TEXT_DESCRIPTION; $this->sort_order = MODULE_SHIPPING_TABLE_SORT_ORDER; $this->icon = ''; $this->tax_class = MODULE_SHIPPING_TABLE_TAX_CLASS; $this->enabled = ((MODULE_SHIPPING_TABLE_STATUS == 'True') ? true : false); ..and change to... // class constructor function table() { global $order; $this->code = 'table'; $this->title = MODULE_SHIPPING_TABLE_TEXT_TITLE; $this->description = MODULE_SHIPPING_TABLE_TEXT_DESCRIPTION; $this->sort_order = MODULE_SHIPPING_TABLE_SORT_ORDER; $this->icon = DIR_WS_ICONS . 'table_shipping.gif'; $this->tax_class = MODULE_SHIPPING_TABLE_TAX_CLASS; $this->enabled = ((MODULE_SHIPPING_TABLE_STATUS == 'True') ? true : false); Quote Link to comment Share on other sites More sharing options...
Tsuri Japan Posted September 27, 2006 Author Share Posted September 27, 2006 (edited) Thanks Maggi worked like a charm, once again you've made my that much better. CHEERS! Nigelman :thumbsup: Edited September 27, 2006 by Tsuri Japan Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.