How to remove hundreds seperator from all pricesMagento remove prices from Downloadable productsHow to set multiple pricesHow to update all simple products prices from configurable products?Override locale configuration file to customize price formatProgrammatically update prices from CSVHow to remove sale prices from items that have no catalog price rules or special prices.Magento 2 How To Add Custom Text After All PricesMagento2: how to display 4 digit prices and tier prices in the admin > catalog?Remove thousand separator from all price display- Magento 2
Graph problems as integer programs
How can a valley surrounded by mountains be fertile and rainy?
Can the Raspberry Pi 4 better distribute Python scripts to all four cores?
Why do I need two parameters in an HTTP parameter pollution attack?
What does grep -v "grep" mean and do?
Why do changes to /etc/hosts take effect immediately?
Why do we use a cylinder as a Gaussian surface for infinitely long charged wire?
Ordered list of OR journals
Do launching rockets produce a sonic boom?
What's the safest way to inform a new user of their password on an invite-only website?
Is it bad to describe a character long after their introduction?
Can I travel from Germany to England alone as an unaccompanied minor?
Will a higher security deposit build credit faster with a secured card?
Can White Castle? #3
Single level file directory
Why were the first airplanes "backwards"?
How exactly is a normal force exerted, at the molecular level?
Golf the smallest circle!
Can a function nowhere continuous have a connected graph?
Most important new papers in computational complexity
If two black hole event horizons overlap (touch) can they ever separate again?
How to answer "write something on the board"?
Put my student loan in parents’ second mortgage - help?
Why was Mal so quick to drop Bester in favour of Kaylee?
How to remove hundreds seperator from all prices
Magento remove prices from Downloadable productsHow to set multiple pricesHow to update all simple products prices from configurable products?Override locale configuration file to customize price formatProgrammatically update prices from CSVHow to remove sale prices from items that have no catalog price rules or special prices.Magento 2 How To Add Custom Text After All PricesMagento2: how to display 4 digit prices and tier prices in the admin > catalog?Remove thousand separator from all price display- Magento 2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
All prices on the lv_LV store view is displayed with hundreds separator(space) . Tried to change the <group> </group>
to <group></group>
in vendormagentozendframework1libraryZendLocaleDatalv.xml but it does not help.
Would the changes in following lines help? I have tried some but cannot get rid of the hundreds seperator
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat type="standard">
<pattern>¤#,##0.00</pattern>
</currencyFormat>
<currencyFormat type="accounting">
<pattern>¤#,##0.00</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
UPDATE: Some changes to previously mentioned file led to some prices appear correctly, however some still are in format 10 99.99 which is really weird.
magento2 price format magento2.2.8
add a comment |
All prices on the lv_LV store view is displayed with hundreds separator(space) . Tried to change the <group> </group>
to <group></group>
in vendormagentozendframework1libraryZendLocaleDatalv.xml but it does not help.
Would the changes in following lines help? I have tried some but cannot get rid of the hundreds seperator
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat type="standard">
<pattern>¤#,##0.00</pattern>
</currencyFormat>
<currencyFormat type="accounting">
<pattern>¤#,##0.00</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
UPDATE: Some changes to previously mentioned file led to some prices appear correctly, however some still are in format 10 99.99 which is really weird.
magento2 price format magento2.2.8
1
Could you please review this extension github.com/mage2pro/currency-format
– Shorabh
Jun 19 at 13:43
Not planning to buy 200 dollar extension for this.
– Lauris Kārkliņš
Jun 20 at 6:16
add a comment |
All prices on the lv_LV store view is displayed with hundreds separator(space) . Tried to change the <group> </group>
to <group></group>
in vendormagentozendframework1libraryZendLocaleDatalv.xml but it does not help.
Would the changes in following lines help? I have tried some but cannot get rid of the hundreds seperator
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat type="standard">
<pattern>¤#,##0.00</pattern>
</currencyFormat>
<currencyFormat type="accounting">
<pattern>¤#,##0.00</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
UPDATE: Some changes to previously mentioned file led to some prices appear correctly, however some still are in format 10 99.99 which is really weird.
magento2 price format magento2.2.8
All prices on the lv_LV store view is displayed with hundreds separator(space) . Tried to change the <group> </group>
to <group></group>
in vendormagentozendframework1libraryZendLocaleDatalv.xml but it does not help.
Would the changes in following lines help? I have tried some but cannot get rid of the hundreds seperator
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat type="standard">
<pattern>¤#,##0.00</pattern>
</currencyFormat>
<currencyFormat type="accounting">
<pattern>¤#,##0.00</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
UPDATE: Some changes to previously mentioned file led to some prices appear correctly, however some still are in format 10 99.99 which is really weird.
magento2 price format magento2.2.8
magento2 price format magento2.2.8
edited Jun 20 at 6:58
Lauris Kārkliņš
asked Jun 19 at 13:07
Lauris KārkliņšLauris Kārkliņš
13 bronze badges
13 bronze badges
1
Could you please review this extension github.com/mage2pro/currency-format
– Shorabh
Jun 19 at 13:43
Not planning to buy 200 dollar extension for this.
– Lauris Kārkliņš
Jun 20 at 6:16
add a comment |
1
Could you please review this extension github.com/mage2pro/currency-format
– Shorabh
Jun 19 at 13:43
Not planning to buy 200 dollar extension for this.
– Lauris Kārkliņš
Jun 20 at 6:16
1
1
Could you please review this extension github.com/mage2pro/currency-format
– Shorabh
Jun 19 at 13:43
Could you please review this extension github.com/mage2pro/currency-format
– Shorabh
Jun 19 at 13:43
Not planning to buy 200 dollar extension for this.
– Lauris Kārkliņš
Jun 20 at 6:16
Not planning to buy 200 dollar extension for this.
– Lauris Kārkliņš
Jun 20 at 6:16
add a comment |
1 Answer
1
active
oldest
votes
This is a workaround for anyone that needs to change price format globally. Might not be the most cleanest way but it gets the job done.
Part of the change must be done within
vendormagentozendframework1libraryZendLocaleData*.xml
Where *.xml is the locale file for your particular language. For example lv.xml for Latvian. Find variables that change digital and currency format and remove the unnecessary commas and dots. It might be possible to copy the file to your design folder and do the changes there, however I did not test it.
Additionally you need to write your own module Mageplaza guide and extend a function following this Webkul guide
Within the function you change the $group variable to fixed constant and that will solve the seperation problem.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f278891%2fhow-to-remove-hundreds-seperator-from-all-prices%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is a workaround for anyone that needs to change price format globally. Might not be the most cleanest way but it gets the job done.
Part of the change must be done within
vendormagentozendframework1libraryZendLocaleData*.xml
Where *.xml is the locale file for your particular language. For example lv.xml for Latvian. Find variables that change digital and currency format and remove the unnecessary commas and dots. It might be possible to copy the file to your design folder and do the changes there, however I did not test it.
Additionally you need to write your own module Mageplaza guide and extend a function following this Webkul guide
Within the function you change the $group variable to fixed constant and that will solve the seperation problem.
add a comment |
This is a workaround for anyone that needs to change price format globally. Might not be the most cleanest way but it gets the job done.
Part of the change must be done within
vendormagentozendframework1libraryZendLocaleData*.xml
Where *.xml is the locale file for your particular language. For example lv.xml for Latvian. Find variables that change digital and currency format and remove the unnecessary commas and dots. It might be possible to copy the file to your design folder and do the changes there, however I did not test it.
Additionally you need to write your own module Mageplaza guide and extend a function following this Webkul guide
Within the function you change the $group variable to fixed constant and that will solve the seperation problem.
add a comment |
This is a workaround for anyone that needs to change price format globally. Might not be the most cleanest way but it gets the job done.
Part of the change must be done within
vendormagentozendframework1libraryZendLocaleData*.xml
Where *.xml is the locale file for your particular language. For example lv.xml for Latvian. Find variables that change digital and currency format and remove the unnecessary commas and dots. It might be possible to copy the file to your design folder and do the changes there, however I did not test it.
Additionally you need to write your own module Mageplaza guide and extend a function following this Webkul guide
Within the function you change the $group variable to fixed constant and that will solve the seperation problem.
This is a workaround for anyone that needs to change price format globally. Might not be the most cleanest way but it gets the job done.
Part of the change must be done within
vendormagentozendframework1libraryZendLocaleData*.xml
Where *.xml is the locale file for your particular language. For example lv.xml for Latvian. Find variables that change digital and currency format and remove the unnecessary commas and dots. It might be possible to copy the file to your design folder and do the changes there, however I did not test it.
Additionally you need to write your own module Mageplaza guide and extend a function following this Webkul guide
Within the function you change the $group variable to fixed constant and that will solve the seperation problem.
answered Jun 20 at 7:37
Lauris KārkliņšLauris Kārkliņš
13 bronze badges
13 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f278891%2fhow-to-remove-hundreds-seperator-from-all-prices%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Could you please review this extension github.com/mage2pro/currency-format
– Shorabh
Jun 19 at 13:43
Not planning to buy 200 dollar extension for this.
– Lauris Kārkliņš
Jun 20 at 6:16