Include associated products when checking if product is discounted to show sales tag in list
I'm currently showing a sale tag on products that are discounted in list.phtml:
$now = date("Y-m-d H:m:s");
$specialprice = Mage::getModel('catalog/product')->load($_product->getId())->getSpecialPrice();
$special_from_date = $_product->getSpecialFromDate();
$special_to_date = $_product->getSpecialToDate();
<?php if (($specialprice && ($special_from_date <= $now) && ($special_to_date >= $now || $special_to_date =="" ))) { ?>
<div class='sale-item'>
<span class="text">
<?php echo $this->__('Sale') ?>
</span>
</div>
<?php } endif; ?>
This works well, however if a product is a grouped product type and one of it's associated products is discounted, the sale tag does not show so I somehow need to include associated products when checking if the product is discounted.
The list template is just using the default loaded collection currently:
$_productCollection=$this->getLoadedProductCollection();
foreach ($_productCollection as $_product)
I believe I can get any associated products with the following?
$associatedProducts = $_product->getTypeInstance(true)->getAssociatedProducts($_product);
Not quite sure how the best way of working this into the checking of whether the product is discounted or not though...
magento-1.9 associated-products
add a comment |
I'm currently showing a sale tag on products that are discounted in list.phtml:
$now = date("Y-m-d H:m:s");
$specialprice = Mage::getModel('catalog/product')->load($_product->getId())->getSpecialPrice();
$special_from_date = $_product->getSpecialFromDate();
$special_to_date = $_product->getSpecialToDate();
<?php if (($specialprice && ($special_from_date <= $now) && ($special_to_date >= $now || $special_to_date =="" ))) { ?>
<div class='sale-item'>
<span class="text">
<?php echo $this->__('Sale') ?>
</span>
</div>
<?php } endif; ?>
This works well, however if a product is a grouped product type and one of it's associated products is discounted, the sale tag does not show so I somehow need to include associated products when checking if the product is discounted.
The list template is just using the default loaded collection currently:
$_productCollection=$this->getLoadedProductCollection();
foreach ($_productCollection as $_product)
I believe I can get any associated products with the following?
$associatedProducts = $_product->getTypeInstance(true)->getAssociatedProducts($_product);
Not quite sure how the best way of working this into the checking of whether the product is discounted or not though...
magento-1.9 associated-products
add a comment |
I'm currently showing a sale tag on products that are discounted in list.phtml:
$now = date("Y-m-d H:m:s");
$specialprice = Mage::getModel('catalog/product')->load($_product->getId())->getSpecialPrice();
$special_from_date = $_product->getSpecialFromDate();
$special_to_date = $_product->getSpecialToDate();
<?php if (($specialprice && ($special_from_date <= $now) && ($special_to_date >= $now || $special_to_date =="" ))) { ?>
<div class='sale-item'>
<span class="text">
<?php echo $this->__('Sale') ?>
</span>
</div>
<?php } endif; ?>
This works well, however if a product is a grouped product type and one of it's associated products is discounted, the sale tag does not show so I somehow need to include associated products when checking if the product is discounted.
The list template is just using the default loaded collection currently:
$_productCollection=$this->getLoadedProductCollection();
foreach ($_productCollection as $_product)
I believe I can get any associated products with the following?
$associatedProducts = $_product->getTypeInstance(true)->getAssociatedProducts($_product);
Not quite sure how the best way of working this into the checking of whether the product is discounted or not though...
magento-1.9 associated-products
I'm currently showing a sale tag on products that are discounted in list.phtml:
$now = date("Y-m-d H:m:s");
$specialprice = Mage::getModel('catalog/product')->load($_product->getId())->getSpecialPrice();
$special_from_date = $_product->getSpecialFromDate();
$special_to_date = $_product->getSpecialToDate();
<?php if (($specialprice && ($special_from_date <= $now) && ($special_to_date >= $now || $special_to_date =="" ))) { ?>
<div class='sale-item'>
<span class="text">
<?php echo $this->__('Sale') ?>
</span>
</div>
<?php } endif; ?>
This works well, however if a product is a grouped product type and one of it's associated products is discounted, the sale tag does not show so I somehow need to include associated products when checking if the product is discounted.
The list template is just using the default loaded collection currently:
$_productCollection=$this->getLoadedProductCollection();
foreach ($_productCollection as $_product)
I believe I can get any associated products with the following?
$associatedProducts = $_product->getTypeInstance(true)->getAssociatedProducts($_product);
Not quite sure how the best way of working this into the checking of whether the product is discounted or not though...
magento-1.9 associated-products
magento-1.9 associated-products
asked 2 days ago
zigojackozigojacko
1,32422755
1,32422755
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You could have something like this in a helper
public function isSale($product)
{
if ($product->isGrouped()){
foreach ($product->getTypeInstance(true)->getAssociatedProducts($product) as $childProduct){
if ($childProduct->getFinalPrice() < $childProduct->getPrice()){
// if at least one child is "on sale", then parent is flagged
return true;
}
}
} else {
if ($product->getFinalPrice() < $product->getPrice()){
return true;
}
}
return false;
}
This will check catalogrule discounts too, not only special_price. If you want to check just special_price, then you'd include that date from & to validations
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%2f257140%2finclude-associated-products-when-checking-if-product-is-discounted-to-show-sales%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
You could have something like this in a helper
public function isSale($product)
{
if ($product->isGrouped()){
foreach ($product->getTypeInstance(true)->getAssociatedProducts($product) as $childProduct){
if ($childProduct->getFinalPrice() < $childProduct->getPrice()){
// if at least one child is "on sale", then parent is flagged
return true;
}
}
} else {
if ($product->getFinalPrice() < $product->getPrice()){
return true;
}
}
return false;
}
This will check catalogrule discounts too, not only special_price. If you want to check just special_price, then you'd include that date from & to validations
add a comment |
You could have something like this in a helper
public function isSale($product)
{
if ($product->isGrouped()){
foreach ($product->getTypeInstance(true)->getAssociatedProducts($product) as $childProduct){
if ($childProduct->getFinalPrice() < $childProduct->getPrice()){
// if at least one child is "on sale", then parent is flagged
return true;
}
}
} else {
if ($product->getFinalPrice() < $product->getPrice()){
return true;
}
}
return false;
}
This will check catalogrule discounts too, not only special_price. If you want to check just special_price, then you'd include that date from & to validations
add a comment |
You could have something like this in a helper
public function isSale($product)
{
if ($product->isGrouped()){
foreach ($product->getTypeInstance(true)->getAssociatedProducts($product) as $childProduct){
if ($childProduct->getFinalPrice() < $childProduct->getPrice()){
// if at least one child is "on sale", then parent is flagged
return true;
}
}
} else {
if ($product->getFinalPrice() < $product->getPrice()){
return true;
}
}
return false;
}
This will check catalogrule discounts too, not only special_price. If you want to check just special_price, then you'd include that date from & to validations
You could have something like this in a helper
public function isSale($product)
{
if ($product->isGrouped()){
foreach ($product->getTypeInstance(true)->getAssociatedProducts($product) as $childProduct){
if ($childProduct->getFinalPrice() < $childProduct->getPrice()){
// if at least one child is "on sale", then parent is flagged
return true;
}
}
} else {
if ($product->getFinalPrice() < $product->getPrice()){
return true;
}
}
return false;
}
This will check catalogrule discounts too, not only special_price. If you want to check just special_price, then you'd include that date from & to validations
edited yesterday
answered yesterday
Raul SanchezRaul Sanchez
1,85931135
1,85931135
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%2f257140%2finclude-associated-products-when-checking-if-product-is-discounted-to-show-sales%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