Magento 2 catalog_product_get_final_price event not working for configurable productaroundGetFinalPrice()...

Are small insurances worth it?

How should I solve this integral with changing parameters?

Giving a career talk in my old university, how prominently should I tell students my salary?

How do we create new idioms and use them in a novel?

Is divide-by-zero a security vulnerability?

How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?

ESPP--any reason not to go all in?

Do black holes violate the conservation of mass?

-1 to the power of a irrational number

Locked Away- What am I?

How to copy the rest of lines of a file to another file

Are E natural minor and B harmonic minor related?

How can I portion out frozen cookie dough?

Do Paladin Auras of Differing Oaths Stack?

Either of .... (Plural/Singular)

When to use a QR code on a business card?

Did Amazon pay $0 in taxes last year?

Is there a logarithm base for which the logarithm becomes an identity function?

What is this tube in a jet engine's air intake?

Can one live in the U.S. and not use a credit card?

Are all players supposed to be able to see each others' character sheets?

Can I negotiate a patent idea for a raise, under French law?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

What is better: yes / no radio, or simple checkbox?



Magento 2 catalog_product_get_final_price event not working for configurable product


aroundGetFinalPrice() plugin needs additional code for Configurable products?Set custom price of product when adding to cart code not workingGet Price For Configurable Product Magento 2Magento2 Event Observer Redirect Simple Product to Configurable ProductHow to add custom options programmatically for configurable product in Magento 2How configurable product price works in magento 2?Magento 2 override associated product price (configurable and it's child)Get Regular Price of Configurable Simple ProductMagento 2 catalog_product_get_final_price event not workingHow to get simple product qty via configurable using Observer?













1















I have to set the product price to a custom value depends up on the customer. So I have written an event catalog_product_get_final_price and in the observer I have set the custom price for the product. But this is working only for "Simple Product" (visibility both). When I view the configurable product nothing is happened. Even I have write a die() in the observer and it is working when I view the Simple product but not for the configurable product. That means when I view the configurable product, the event is not triggering.



How can I set the simple product's price to a custom value using event? I need this for the "listing" and "view page"










share|improve this question














bumped to the homepage by Community 11 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Show your observer code what you have tried?

    – Priyank
    May 25 '17 at 5:27
















1















I have to set the product price to a custom value depends up on the customer. So I have written an event catalog_product_get_final_price and in the observer I have set the custom price for the product. But this is working only for "Simple Product" (visibility both). When I view the configurable product nothing is happened. Even I have write a die() in the observer and it is working when I view the Simple product but not for the configurable product. That means when I view the configurable product, the event is not triggering.



How can I set the simple product's price to a custom value using event? I need this for the "listing" and "view page"










share|improve this question














bumped to the homepage by Community 11 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Show your observer code what you have tried?

    – Priyank
    May 25 '17 at 5:27














1












1








1


1






I have to set the product price to a custom value depends up on the customer. So I have written an event catalog_product_get_final_price and in the observer I have set the custom price for the product. But this is working only for "Simple Product" (visibility both). When I view the configurable product nothing is happened. Even I have write a die() in the observer and it is working when I view the Simple product but not for the configurable product. That means when I view the configurable product, the event is not triggering.



How can I set the simple product's price to a custom value using event? I need this for the "listing" and "view page"










share|improve this question














I have to set the product price to a custom value depends up on the customer. So I have written an event catalog_product_get_final_price and in the observer I have set the custom price for the product. But this is working only for "Simple Product" (visibility both). When I view the configurable product nothing is happened. Even I have write a die() in the observer and it is working when I view the Simple product but not for the configurable product. That means when I view the configurable product, the event is not triggering.



How can I set the simple product's price to a custom value using event? I need this for the "listing" and "view page"







magento2






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 6 '17 at 10:14









Varun JyothiVarun Jyothi

10018




10018





bumped to the homepage by Community 11 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 11 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    Show your observer code what you have tried?

    – Priyank
    May 25 '17 at 5:27














  • 1





    Show your observer code what you have tried?

    – Priyank
    May 25 '17 at 5:27








1




1





Show your observer code what you have tried?

– Priyank
May 25 '17 at 5:27





Show your observer code what you have tried?

– Priyank
May 25 '17 at 5:27










1 Answer
1






active

oldest

votes


















0














First, you should tried your event on a default magento Instance.



If it will work then there might be some other module that have overridden final price using plugin, or event.



if it won't work on default magento then there probanly are some issues in your observer code.



Observer.code should like this:



<?php

namespace [Vendorname][Modulename]Observer;

use MagentoFrameworkEventObserverInterface;
use MagentoFrameworkEventObserver as EventObserver;

class ProcesschangeFinalPriceObserver implements ObserverInterface
{


public function execute(MagentoFrameworkEventObserver $observer)
{
$product = $observer->getEvent()->getProduct();
$pId = $product->getId();
$storeId = $product->getStoreId();
$finalPrice = 100;
$product->setPrice($finalPrice);
$product->setFinalPrice($finalPrice); // set final price here
return $this;
}
}





share|improve this answer


























  • I have done as mention but it is not working

    – zed Blackbeard
    Nov 16 '17 at 11:50











  • It is working fine for simple product not for configurable products

    – zed Blackbeard
    Nov 16 '17 at 12:52











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f153498%2fmagento-2-catalog-product-get-final-price-event-not-working-for-configurable-pro%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









0














First, you should tried your event on a default magento Instance.



If it will work then there might be some other module that have overridden final price using plugin, or event.



if it won't work on default magento then there probanly are some issues in your observer code.



Observer.code should like this:



<?php

namespace [Vendorname][Modulename]Observer;

use MagentoFrameworkEventObserverInterface;
use MagentoFrameworkEventObserver as EventObserver;

class ProcesschangeFinalPriceObserver implements ObserverInterface
{


public function execute(MagentoFrameworkEventObserver $observer)
{
$product = $observer->getEvent()->getProduct();
$pId = $product->getId();
$storeId = $product->getStoreId();
$finalPrice = 100;
$product->setPrice($finalPrice);
$product->setFinalPrice($finalPrice); // set final price here
return $this;
}
}





share|improve this answer


























  • I have done as mention but it is not working

    – zed Blackbeard
    Nov 16 '17 at 11:50











  • It is working fine for simple product not for configurable products

    – zed Blackbeard
    Nov 16 '17 at 12:52
















0














First, you should tried your event on a default magento Instance.



If it will work then there might be some other module that have overridden final price using plugin, or event.



if it won't work on default magento then there probanly are some issues in your observer code.



Observer.code should like this:



<?php

namespace [Vendorname][Modulename]Observer;

use MagentoFrameworkEventObserverInterface;
use MagentoFrameworkEventObserver as EventObserver;

class ProcesschangeFinalPriceObserver implements ObserverInterface
{


public function execute(MagentoFrameworkEventObserver $observer)
{
$product = $observer->getEvent()->getProduct();
$pId = $product->getId();
$storeId = $product->getStoreId();
$finalPrice = 100;
$product->setPrice($finalPrice);
$product->setFinalPrice($finalPrice); // set final price here
return $this;
}
}





share|improve this answer


























  • I have done as mention but it is not working

    – zed Blackbeard
    Nov 16 '17 at 11:50











  • It is working fine for simple product not for configurable products

    – zed Blackbeard
    Nov 16 '17 at 12:52














0












0








0







First, you should tried your event on a default magento Instance.



If it will work then there might be some other module that have overridden final price using plugin, or event.



if it won't work on default magento then there probanly are some issues in your observer code.



Observer.code should like this:



<?php

namespace [Vendorname][Modulename]Observer;

use MagentoFrameworkEventObserverInterface;
use MagentoFrameworkEventObserver as EventObserver;

class ProcesschangeFinalPriceObserver implements ObserverInterface
{


public function execute(MagentoFrameworkEventObserver $observer)
{
$product = $observer->getEvent()->getProduct();
$pId = $product->getId();
$storeId = $product->getStoreId();
$finalPrice = 100;
$product->setPrice($finalPrice);
$product->setFinalPrice($finalPrice); // set final price here
return $this;
}
}





share|improve this answer















First, you should tried your event on a default magento Instance.



If it will work then there might be some other module that have overridden final price using plugin, or event.



if it won't work on default magento then there probanly are some issues in your observer code.



Observer.code should like this:



<?php

namespace [Vendorname][Modulename]Observer;

use MagentoFrameworkEventObserverInterface;
use MagentoFrameworkEventObserver as EventObserver;

class ProcesschangeFinalPriceObserver implements ObserverInterface
{


public function execute(MagentoFrameworkEventObserver $observer)
{
$product = $observer->getEvent()->getProduct();
$pId = $product->getId();
$storeId = $product->getStoreId();
$finalPrice = 100;
$product->setPrice($finalPrice);
$product->setFinalPrice($finalPrice); // set final price here
return $this;
}
}






share|improve this answer














share|improve this answer



share|improve this answer








edited Aug 20 '17 at 8:08









Zefiryn

4,59321727




4,59321727










answered May 25 '17 at 16:13









Amit BeraAmit Bera

58.9k1575175




58.9k1575175













  • I have done as mention but it is not working

    – zed Blackbeard
    Nov 16 '17 at 11:50











  • It is working fine for simple product not for configurable products

    – zed Blackbeard
    Nov 16 '17 at 12:52



















  • I have done as mention but it is not working

    – zed Blackbeard
    Nov 16 '17 at 11:50











  • It is working fine for simple product not for configurable products

    – zed Blackbeard
    Nov 16 '17 at 12:52

















I have done as mention but it is not working

– zed Blackbeard
Nov 16 '17 at 11:50





I have done as mention but it is not working

– zed Blackbeard
Nov 16 '17 at 11:50













It is working fine for simple product not for configurable products

– zed Blackbeard
Nov 16 '17 at 12:52





It is working fine for simple product not for configurable products

– zed Blackbeard
Nov 16 '17 at 12:52


















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f153498%2fmagento-2-catalog-product-get-final-price-event-not-working-for-configurable-pro%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

“%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

夢乃愛華...