Hi all
Can somebody tell me why, when in extension/shipping I enter for the
folder icon, then I change the extension name and the description ?.
the modification is successfully recorded in the Administration panel, but
in the web site it always continues showing me the data that come originally,
As I solve this?
Thanks
Can somebody tell me why, when in extension/shipping I enter for the
folder icon, then I change the extension name and the description ?.
the modification is successfully recorded in the Administration panel, but
in the web site it always continues showing me the data that come originally,
As I solve this?
Thanks
No it's not, look in the language file for that particular extension and change the values there.jty wrote: You're in the wrong place
It's done in geo-zones. Change the name of the geo-zone or it might be the description of the geo-zone
Yes it isbruce wrote:No it's not, look in the language file for that particular extension and change the values there.jty wrote: You're in the wrong place
It's done in geo-zones. Change the name of the geo-zone or it might be the description of the geo-zone

If he wants to change the title then it is done in the language file
But if he wants to change the type of shipping (the data) then it is in geo zone name
eg to change "shipping zone 1" to "Australia Post", is done in geo-zones
To change "Zone Shipping" to "Freight" is done in the language file
What's the question is probably the answer
We could go on all day... 
Read the question carefully...
Junior changed the title and description in extension/shipping and wondered why the change was not shown on the web site.
the notepad was mistakenly described as a folder.
The web site does not display the geo zones ever.
The title and description displayed on the web site come from
(eg: flat rate shipping, english language)
catalog\language\english\extension\shipping\flat.php
I butchered the values to make them clearly different to the admin values and from each other.
Image attached

Read the question carefully...
Junior changed the title and description in extension/shipping and wondered why the change was not shown on the web site.
the notepad was mistakenly described as a folder.
The web site does not display the geo zones ever.
The title and description displayed on the web site come from
(eg: flat rate shipping, english language)
catalog\language\english\extension\shipping\flat.php
Code: Select all
$_['text_flat_title'] = 'Flat Rate title';
$_['text_flat_description'] = 'Flat Shipping Rate desc';
Image attached
Bruce,
I re-read it. I re-read it 3 times and there is no mention of which shipping extension
The answer is: which shipping method are you using ?
Flat is different to Zone
I re-read it. I re-read it 3 times and there is no mention of which shipping extension
So, we're both wrongJunior wrote: Can somebody tell me why, when in extension/shipping I enter for the
folder icon, then I change the extension name and the description ?.
the modification is successfully recorded in the Administration panel, but
in the web site it always continues showing me the data that come originally,
As I solve this?
The answer is: which shipping method are you using ?
Flat is different to Zone
Hi all
I believe that it is not important the method that I use,
I want to change all the captions in all the files (flat.php, item.php and zone.php)
I believe that in the version 0.7.8 are not possible to change the name of the extension and the description from the adminsitration panel (for the web page), because both texts are as constant.
I need changing:
1) .../catalog/language/english/extension/shippment/flat.php
2) .../catalog/language/english/extension/shippment/item.php
3) .../catalog/language/english/extension/shippment/zone.php
flat.php
As I modify this from the administration panel without need to edit the files in manual form?
Thanks
I believe that it is not important the method that I use,
I want to change all the captions in all the files (flat.php, item.php and zone.php)
I believe that in the version 0.7.8 are not possible to change the name of the extension and the description from the adminsitration panel (for the web page), because both texts are as constant.
I need changing:
1) .../catalog/language/english/extension/shippment/flat.php
2) .../catalog/language/english/extension/shippment/item.php
3) .../catalog/language/english/extension/shippment/zone.php
flat.php
As I modify this from the administration panel without need to edit the files in manual form?
Thanks
Nor do currencies, nor do languages (tho technically their current implementation is flag images, but if you wanted to use words, you'd be stuck with one language. There might be a few others. (So far these have been added to the todo list for 0.8bruce wrote: buggerbut we had fun
As a further side note, what you have shown is that the zone based shipping module does not have multilingual support
Cheers
Bruce

All of the discussion between jty and myself concludes that...
all (except see above) extensions use the language files as the source of the title and description shown on the catalog pages (manual edit)
except for zone based shipping which uses the zone names entered in admin...

all (except see above) extensions use the language files as the source of the title and description shown on the catalog pages (manual edit)
except for zone based shipping which uses the zone names entered in admin...

Hi there guys
I am having a different problem... Installed the weight module and worked perfectly -yesterday- now even though it shows the shipping weight correct, $$ subtotal correct, at the end charges the amount in the field "cost per unit" which is a lot less than the actual shipping showed before.... I am using the last version of Opencart. Also for some reason Firefox doesn't show the page as IE does.. it leaves a blank space in the middle... anybody having this problem? Appreciate any help.
Thank You
I am having a different problem... Installed the weight module and worked perfectly -yesterday- now even though it shows the shipping weight correct, $$ subtotal correct, at the end charges the amount in the field "cost per unit" which is a lot less than the actual shipping showed before.... I am using the last version of Opencart. Also for some reason Firefox doesn't show the page as IE does.. it leaves a blank space in the middle... anybody having this problem? Appreciate any help.
Thank You
I have set up the cost for weight unit at $1.09 p/pound...... the weights of the products varies and are shown properly added up and multiply in the invoice until checkout, where the cost per unit $1.09 is added (cost) and it adds up depending on the amount of products in the cart only $1.09 for one product. I guess the multiplication (Item weight x cost per unit) is not working.
Ok, there is a bug in the weight-based shipping contrib:
EDIT: catalog/extension/shipping/weight.php
CHANGE (~line 37):
'cost' => $this->config->get('weight_cost') * $this->cart->countProducts(),
TO:
'cost' => $this->config->get('weight_cost') * $this->cart->getWeight(),
It's an odd mistake, especially since the original author used the correct method for the 'text' value.
I've uploaded a corrected and 0.7.9 compliant version to the contrib section, but this was the only major fix
EDIT: catalog/extension/shipping/weight.php
CHANGE (~line 37):
'cost' => $this->config->get('weight_cost') * $this->cart->countProducts(),
TO:
'cost' => $this->config->get('weight_cost') * $this->cart->getWeight(),
It's an odd mistake, especially since the original author used the correct method for the 'text' value.
I've uploaded a corrected and 0.7.9 compliant version to the contrib section, but this was the only major fix
Who is online
Users browsing this forum: No registered users and 5 guests