How to display product discount percent on product details page in Magento 2.2.1
Am I wondering how to add percentage discount value on the product details page?
I have found a similar topic, but apparently, it does not work with 2.2.1
How to display product discount percent on product details page in Magento 2.1.8?
upd:
magento2.2 magento-2.2.1
add a comment |
Am I wondering how to add percentage discount value on the product details page?
I have found a similar topic, but apparently, it does not work with 2.2.1
How to display product discount percent on product details page in Magento 2.1.8?
upd:
magento2.2 magento-2.2.1
have you added special price for products ?
– Naveed Asim
Mar 24 '18 at 17:52
if you meant price rules - yes i did, it showed correctly (old and new price), but i'd like to show % which user will save.
– bofh
Mar 24 '18 at 18:03
add a comment |
Am I wondering how to add percentage discount value on the product details page?
I have found a similar topic, but apparently, it does not work with 2.2.1
How to display product discount percent on product details page in Magento 2.1.8?
upd:
magento2.2 magento-2.2.1
Am I wondering how to add percentage discount value on the product details page?
I have found a similar topic, but apparently, it does not work with 2.2.1
How to display product discount percent on product details page in Magento 2.1.8?
upd:
magento2.2 magento-2.2.1
magento2.2 magento-2.2.1
edited Jan 18 at 12:51
Evince Development
1,112319
1,112319
asked Mar 24 '18 at 17:45
bofhbofh
4210
4210
have you added special price for products ?
– Naveed Asim
Mar 24 '18 at 17:52
if you meant price rules - yes i did, it showed correctly (old and new price), but i'd like to show % which user will save.
– bofh
Mar 24 '18 at 18:03
add a comment |
have you added special price for products ?
– Naveed Asim
Mar 24 '18 at 17:52
if you meant price rules - yes i did, it showed correctly (old and new price), but i'd like to show % which user will save.
– bofh
Mar 24 '18 at 18:03
have you added special price for products ?
– Naveed Asim
Mar 24 '18 at 17:52
have you added special price for products ?
– Naveed Asim
Mar 24 '18 at 17:52
if you meant price rules - yes i did, it showed correctly (old and new price), but i'd like to show % which user will save.
– bofh
Mar 24 '18 at 18:03
if you meant price rules - yes i did, it showed correctly (old and new price), but i'd like to show % which user will save.
– bofh
Mar 24 '18 at 18:03
add a comment |
2 Answers
2
active
oldest
votes
To show discount % on product detail page add below code where you want. This will show discount % either applied with Catalog Price rule or added Special price.
For example to show % near stock status add code in below template :
Theme/Magento_Catalog/templates/product/view/type/default.phtml.
<?php
if($_product->getTypeId() == "simple") {
$simplePrice = $_product->getPrice();
} else {
$_children = $_product->getTypeInstance()->getUsedProducts($_product);
foreach ($_children as $child){
$simplePrice = $child->getPrice();
break;
}
}
$_finalPrice =$_product->getFinalPrice();
$_price = $simplePrice;
if($_finalPrice < $_price) {
$_savingPercent = 100 - round(($_finalPrice / $_price)*100);
echo 'Your save '.$_savingPercent . '%';
}
?>
NOTE : assuming all simple products of configurable have same price , however condition will pick only first simple product price of configurable product and calculate discount. But this logic / code block can be altered depending on the requirements.
Naveed, thanks for reply, but not helped. as i'm using standard luma theme, i have added it to vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml, also to vendor/magento/module-catalog/view/base/templates/product/price/final_price.phtml no luck(( cache cleaned and reindexed of course. maybe redeploy content?
– bofh
Mar 24 '18 at 18:38
yes re deploy your static content, but it should work, unless you don't have created any custom theme having above files. as before posting solution i had implemented on luma theme myself and it worked
– Naveed Asim
Mar 25 '18 at 6:23
unfortunately not helped... i have no custom theme, clean magento installation. could you pls confirm exact path is vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml? which magento version do you have? mine is 2.2.1
– bofh
Mar 25 '18 at 9:42
could you update the question with screen shot of your theme directory and where you are making changes.
– Naveed Asim
Mar 25 '18 at 10:27
done, pls see above. thanks!
– bofh
Mar 25 '18 at 11:22
|
show 16 more comments
To display product discount Price use the below code.
$blockObj= $block->getLayout()->createBlock('MagentoCatalogBlockProductPrice');
$_product=$blockObj->getProduct();
$specialprice = $_product->getSpecialPrice();
$specialPriceFromDate = $_product->getSpecialFromDate();
$specialPriceToDate = $_product->getSpecialToDate();
$today = time();
$price = $_product->getPrice();
if($price){
echo $sale = round((($price-$specialprice)/$price)*100);
}
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%2f219718%2fhow-to-display-product-discount-percent-on-product-details-page-in-magento-2-2-1%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
To show discount % on product detail page add below code where you want. This will show discount % either applied with Catalog Price rule or added Special price.
For example to show % near stock status add code in below template :
Theme/Magento_Catalog/templates/product/view/type/default.phtml.
<?php
if($_product->getTypeId() == "simple") {
$simplePrice = $_product->getPrice();
} else {
$_children = $_product->getTypeInstance()->getUsedProducts($_product);
foreach ($_children as $child){
$simplePrice = $child->getPrice();
break;
}
}
$_finalPrice =$_product->getFinalPrice();
$_price = $simplePrice;
if($_finalPrice < $_price) {
$_savingPercent = 100 - round(($_finalPrice / $_price)*100);
echo 'Your save '.$_savingPercent . '%';
}
?>
NOTE : assuming all simple products of configurable have same price , however condition will pick only first simple product price of configurable product and calculate discount. But this logic / code block can be altered depending on the requirements.
Naveed, thanks for reply, but not helped. as i'm using standard luma theme, i have added it to vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml, also to vendor/magento/module-catalog/view/base/templates/product/price/final_price.phtml no luck(( cache cleaned and reindexed of course. maybe redeploy content?
– bofh
Mar 24 '18 at 18:38
yes re deploy your static content, but it should work, unless you don't have created any custom theme having above files. as before posting solution i had implemented on luma theme myself and it worked
– Naveed Asim
Mar 25 '18 at 6:23
unfortunately not helped... i have no custom theme, clean magento installation. could you pls confirm exact path is vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml? which magento version do you have? mine is 2.2.1
– bofh
Mar 25 '18 at 9:42
could you update the question with screen shot of your theme directory and where you are making changes.
– Naveed Asim
Mar 25 '18 at 10:27
done, pls see above. thanks!
– bofh
Mar 25 '18 at 11:22
|
show 16 more comments
To show discount % on product detail page add below code where you want. This will show discount % either applied with Catalog Price rule or added Special price.
For example to show % near stock status add code in below template :
Theme/Magento_Catalog/templates/product/view/type/default.phtml.
<?php
if($_product->getTypeId() == "simple") {
$simplePrice = $_product->getPrice();
} else {
$_children = $_product->getTypeInstance()->getUsedProducts($_product);
foreach ($_children as $child){
$simplePrice = $child->getPrice();
break;
}
}
$_finalPrice =$_product->getFinalPrice();
$_price = $simplePrice;
if($_finalPrice < $_price) {
$_savingPercent = 100 - round(($_finalPrice / $_price)*100);
echo 'Your save '.$_savingPercent . '%';
}
?>
NOTE : assuming all simple products of configurable have same price , however condition will pick only first simple product price of configurable product and calculate discount. But this logic / code block can be altered depending on the requirements.
Naveed, thanks for reply, but not helped. as i'm using standard luma theme, i have added it to vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml, also to vendor/magento/module-catalog/view/base/templates/product/price/final_price.phtml no luck(( cache cleaned and reindexed of course. maybe redeploy content?
– bofh
Mar 24 '18 at 18:38
yes re deploy your static content, but it should work, unless you don't have created any custom theme having above files. as before posting solution i had implemented on luma theme myself and it worked
– Naveed Asim
Mar 25 '18 at 6:23
unfortunately not helped... i have no custom theme, clean magento installation. could you pls confirm exact path is vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml? which magento version do you have? mine is 2.2.1
– bofh
Mar 25 '18 at 9:42
could you update the question with screen shot of your theme directory and where you are making changes.
– Naveed Asim
Mar 25 '18 at 10:27
done, pls see above. thanks!
– bofh
Mar 25 '18 at 11:22
|
show 16 more comments
To show discount % on product detail page add below code where you want. This will show discount % either applied with Catalog Price rule or added Special price.
For example to show % near stock status add code in below template :
Theme/Magento_Catalog/templates/product/view/type/default.phtml.
<?php
if($_product->getTypeId() == "simple") {
$simplePrice = $_product->getPrice();
} else {
$_children = $_product->getTypeInstance()->getUsedProducts($_product);
foreach ($_children as $child){
$simplePrice = $child->getPrice();
break;
}
}
$_finalPrice =$_product->getFinalPrice();
$_price = $simplePrice;
if($_finalPrice < $_price) {
$_savingPercent = 100 - round(($_finalPrice / $_price)*100);
echo 'Your save '.$_savingPercent . '%';
}
?>
NOTE : assuming all simple products of configurable have same price , however condition will pick only first simple product price of configurable product and calculate discount. But this logic / code block can be altered depending on the requirements.
To show discount % on product detail page add below code where you want. This will show discount % either applied with Catalog Price rule or added Special price.
For example to show % near stock status add code in below template :
Theme/Magento_Catalog/templates/product/view/type/default.phtml.
<?php
if($_product->getTypeId() == "simple") {
$simplePrice = $_product->getPrice();
} else {
$_children = $_product->getTypeInstance()->getUsedProducts($_product);
foreach ($_children as $child){
$simplePrice = $child->getPrice();
break;
}
}
$_finalPrice =$_product->getFinalPrice();
$_price = $simplePrice;
if($_finalPrice < $_price) {
$_savingPercent = 100 - round(($_finalPrice / $_price)*100);
echo 'Your save '.$_savingPercent . '%';
}
?>
NOTE : assuming all simple products of configurable have same price , however condition will pick only first simple product price of configurable product and calculate discount. But this logic / code block can be altered depending on the requirements.
edited Mar 25 '18 at 18:09
answered Mar 24 '18 at 18:21
Naveed AsimNaveed Asim
2,5362315
2,5362315
Naveed, thanks for reply, but not helped. as i'm using standard luma theme, i have added it to vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml, also to vendor/magento/module-catalog/view/base/templates/product/price/final_price.phtml no luck(( cache cleaned and reindexed of course. maybe redeploy content?
– bofh
Mar 24 '18 at 18:38
yes re deploy your static content, but it should work, unless you don't have created any custom theme having above files. as before posting solution i had implemented on luma theme myself and it worked
– Naveed Asim
Mar 25 '18 at 6:23
unfortunately not helped... i have no custom theme, clean magento installation. could you pls confirm exact path is vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml? which magento version do you have? mine is 2.2.1
– bofh
Mar 25 '18 at 9:42
could you update the question with screen shot of your theme directory and where you are making changes.
– Naveed Asim
Mar 25 '18 at 10:27
done, pls see above. thanks!
– bofh
Mar 25 '18 at 11:22
|
show 16 more comments
Naveed, thanks for reply, but not helped. as i'm using standard luma theme, i have added it to vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml, also to vendor/magento/module-catalog/view/base/templates/product/price/final_price.phtml no luck(( cache cleaned and reindexed of course. maybe redeploy content?
– bofh
Mar 24 '18 at 18:38
yes re deploy your static content, but it should work, unless you don't have created any custom theme having above files. as before posting solution i had implemented on luma theme myself and it worked
– Naveed Asim
Mar 25 '18 at 6:23
unfortunately not helped... i have no custom theme, clean magento installation. could you pls confirm exact path is vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml? which magento version do you have? mine is 2.2.1
– bofh
Mar 25 '18 at 9:42
could you update the question with screen shot of your theme directory and where you are making changes.
– Naveed Asim
Mar 25 '18 at 10:27
done, pls see above. thanks!
– bofh
Mar 25 '18 at 11:22
Naveed, thanks for reply, but not helped. as i'm using standard luma theme, i have added it to vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml, also to vendor/magento/module-catalog/view/base/templates/product/price/final_price.phtml no luck(( cache cleaned and reindexed of course. maybe redeploy content?
– bofh
Mar 24 '18 at 18:38
Naveed, thanks for reply, but not helped. as i'm using standard luma theme, i have added it to vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml, also to vendor/magento/module-catalog/view/base/templates/product/price/final_price.phtml no luck(( cache cleaned and reindexed of course. maybe redeploy content?
– bofh
Mar 24 '18 at 18:38
yes re deploy your static content, but it should work, unless you don't have created any custom theme having above files. as before posting solution i had implemented on luma theme myself and it worked
– Naveed Asim
Mar 25 '18 at 6:23
yes re deploy your static content, but it should work, unless you don't have created any custom theme having above files. as before posting solution i had implemented on luma theme myself and it worked
– Naveed Asim
Mar 25 '18 at 6:23
unfortunately not helped... i have no custom theme, clean magento installation. could you pls confirm exact path is vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml? which magento version do you have? mine is 2.2.1
– bofh
Mar 25 '18 at 9:42
unfortunately not helped... i have no custom theme, clean magento installation. could you pls confirm exact path is vendor/magento/module-catalog/view/frontend/templates/product/view/type/default.phtml? which magento version do you have? mine is 2.2.1
– bofh
Mar 25 '18 at 9:42
could you update the question with screen shot of your theme directory and where you are making changes.
– Naveed Asim
Mar 25 '18 at 10:27
could you update the question with screen shot of your theme directory and where you are making changes.
– Naveed Asim
Mar 25 '18 at 10:27
done, pls see above. thanks!
– bofh
Mar 25 '18 at 11:22
done, pls see above. thanks!
– bofh
Mar 25 '18 at 11:22
|
show 16 more comments
To display product discount Price use the below code.
$blockObj= $block->getLayout()->createBlock('MagentoCatalogBlockProductPrice');
$_product=$blockObj->getProduct();
$specialprice = $_product->getSpecialPrice();
$specialPriceFromDate = $_product->getSpecialFromDate();
$specialPriceToDate = $_product->getSpecialToDate();
$today = time();
$price = $_product->getPrice();
if($price){
echo $sale = round((($price-$specialprice)/$price)*100);
}
add a comment |
To display product discount Price use the below code.
$blockObj= $block->getLayout()->createBlock('MagentoCatalogBlockProductPrice');
$_product=$blockObj->getProduct();
$specialprice = $_product->getSpecialPrice();
$specialPriceFromDate = $_product->getSpecialFromDate();
$specialPriceToDate = $_product->getSpecialToDate();
$today = time();
$price = $_product->getPrice();
if($price){
echo $sale = round((($price-$specialprice)/$price)*100);
}
add a comment |
To display product discount Price use the below code.
$blockObj= $block->getLayout()->createBlock('MagentoCatalogBlockProductPrice');
$_product=$blockObj->getProduct();
$specialprice = $_product->getSpecialPrice();
$specialPriceFromDate = $_product->getSpecialFromDate();
$specialPriceToDate = $_product->getSpecialToDate();
$today = time();
$price = $_product->getPrice();
if($price){
echo $sale = round((($price-$specialprice)/$price)*100);
}
To display product discount Price use the below code.
$blockObj= $block->getLayout()->createBlock('MagentoCatalogBlockProductPrice');
$_product=$blockObj->getProduct();
$specialprice = $_product->getSpecialPrice();
$specialPriceFromDate = $_product->getSpecialFromDate();
$specialPriceToDate = $_product->getSpecialToDate();
$today = time();
$price = $_product->getPrice();
if($price){
echo $sale = round((($price-$specialprice)/$price)*100);
}
answered Jan 18 at 11:15
AneesAnees
839
839
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%2f219718%2fhow-to-display-product-discount-percent-on-product-details-page-in-magento-2-2-1%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
have you added special price for products ?
– Naveed Asim
Mar 24 '18 at 17:52
if you meant price rules - yes i did, it showed correctly (old and new price), but i'd like to show % which user will save.
– bofh
Mar 24 '18 at 18:03