Search found 42 matches

by whatdaro
12 Oct 2021, 02:19
Forum: Laravel package
Topic: Tax and Total in Basket Details
Replies: 10
Views: 9299

Re: Tax and Total in Basket Details

These settings in the ./config/shop.php change all occurences of "VAT" and "tax" to "GST": 'i18n' => [ 'en' => [ 'client' => [ 'Incl. %1$s%% VAT' => ['Incl. %1$s%% GST'], '+ %1$s%% VAT' => ['+ %1$s%% GST'], ], 'client/code' => [ 'tax' => ['GST'], ] ] ], I already had t...
by whatdaro
05 Oct 2021, 06:14
Forum: Laravel package
Topic: Tax and Total in Basket Details
Replies: 10
Views: 9299

Re: Tax and Total in Basket Details

These are all occurrences of "VAT" in the HTML client: https://github.com/aimeos/ai-client-html/search?l=PHP&p=1&q=VAT I've made changes to all VAT instances in the files you have provided however still does not change the VAT that is displayed in the Basket details, the checkout ...
by whatdaro
03 Oct 2021, 12:13
Forum: Laravel package
Topic: Tax and Total in Basket Details
Replies: 10
Views: 9299

Re: Tax and Total in Basket Details

You've most likely missed that one: https://github.com/aimeos/ai-client-html/blob/master/client/i18n/code/en.po#L20-L22 That setting is for something called Tax, I'm trying to change VAT to GST also that en.po file looks nothing like the default fresh install I have. none of the below are included ...
by whatdaro
30 Sep 2021, 12:18
Forum: Laravel package
Topic: Tax and Total in Basket Details
Replies: 10
Views: 9299

Re: Tax and Total in Basket Details

No, use your preferred IDE or text editor to search for all occurences of "VAT". I've used both, the point is not which editor I need to use. The point is I can not find the "VAT" instance that is used for the basket summary, could you please point me to the documentation where ...
by whatdaro
29 Sep 2021, 06:09
Forum: Laravel package
Topic: Tax and Total in Basket Details
Replies: 10
Views: 9299

Re: Tax and Total in Basket Details

There are several strings that contains "VAT" and you have to change them all. OK, however is there documentation of all those locations? I've searched all text files in the project and I believe I've changed all the ones I could grep out but they don't change that one in the basket summa...
by whatdaro
22 Sep 2021, 04:37
Forum: Laravel package
Topic: Tax and Total in Basket Details
Replies: 10
Views: 9299

Tax and Total in Basket Details

Hi, I've got a few questions regarding the tax and totals. 1: I'm trying to change any thing that says VAT to say TAX. I was able to change it for the product details by adding the string from the .pop file into the config/shop.php translater that works fine, but it does not affect the Basket Detail...
by whatdaro
07 Sep 2021, 22:10
Forum: Laravel package
Topic: How to make new navigation links in aimeos in admin pannel
Replies: 9
Views: 3626

Re: How to make new navigation links in aimeos in admin pannel

The aimeos_nav section contains the top-level categories and if you want to add a another link there, you have to add another category. The alternative is that you add your own links beside the categories in a new section like: <ul><li>new link>/li></ul> The problem is adding another category point...
by whatdaro
05 Sep 2021, 13:41
Forum: Laravel package
Topic: How to make new navigation links in aimeos in admin pannel
Replies: 9
Views: 3626

Re: How to make new navigation links in aimeos in admin pannel

Copy the vendor/aimeos/aimeos-laravel/src/views/base.blade.php to resources/views/shop/base.blade.php and add the links to the Blade template: https://github.com/aimeos/aimeos-laravel/blob/master/src/views/base.blade.php I've copied the base.blade.php as advised, but the changes I make to it don't ...
by whatdaro
05 Sep 2021, 09:31
Forum: Laravel package
Topic: How to make new navigation links in aimeos in admin pannel
Replies: 9
Views: 3626

Re: How to make new navigation links in aimeos in admin pannel

Also, is there documentation on how to add links to the userside navbar please. You can overwrite the common/page-standard.php template and add your links there: https://github.com/aimeos/ai-admin-jqadm/blob/master/admin/jqadm/templates/common/page-standard.php [/quote] Thanks for the reply but the...
by whatdaro
04 Sep 2021, 08:38
Forum: Laravel package
Topic: how to manage and configure product "price type"
Replies: 1
Views: 692

how to manage and configure product "price type"

I would like use the Type value in the Product entry form to control the price shown to customers who match the "type". I really can't workout where and how to match that to the customer. Could you please point me to where the documentation is to manage this "type" value please, ...