how to display different description for each virtual product which was create with configurable products?Different Template for Configurable ProductsMagento group prices for simple products associated with configurable productsCreate a product with different colors (associated products) where each color shares stock with all other colorsHow to link two different products to each otherDo I have to create a new attribute set for each configurable product?Create product for each color on catalog, but all link to one configurablehow to set different prices to a magento configurable product in assoiciated product?How to handle same item with multiple prices based on condition without configurable products?Invalid entity_type specified Magento2Configurable products variants -> Show price different with color swatches (M2)

Should my PhD thesis be submitted under my legal name?

Is it okay / does it make sense for another player to join a running game of Munchkin?

Visiting the UK as unmarried couple

"lassen" in meaning "sich fassen"

Installing PowerShell on 32-bit Kali OS fails

Can I rely on these GitHub repository files?

Bob has never been a M before

Lifted its hind leg on or lifted its hind leg towards?

I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?

Can the electrostatic force be infinite in magnitude?

What is the term when two people sing in harmony, but they aren't singing the same notes?

Lightning Web Component - do I need to track changes for every single input field in a form

Have I saved too much for retirement so far?

Can I create an upright 7-foot × 5-foot wall with the Minor Illusion spell?

For airliners, what prevents wing strikes on landing in bad weather?

Who must act to prevent Brexit on March 29th?

Is there an Impartial Brexit Deal comparison site?

Is a naturally all "male" species possible?

I2C signal and power over long range (10meter cable)

Can somebody explain Brexit in a few child-proof sentences?

How to color a zone in Tikz

Organic chemistry Iodoform Reaction

Did US corporations pay demonstrators in the German demonstrations against article 13?

Identify a stage play about a VR experience in which participants are encouraged to simulate performing horrific activities



how to display different description for each virtual product which was create with configurable products?


Different Template for Configurable ProductsMagento group prices for simple products associated with configurable productsCreate a product with different colors (associated products) where each color shares stock with all other colorsHow to link two different products to each otherDo I have to create a new attribute set for each configurable product?Create product for each color on catalog, but all link to one configurablehow to set different prices to a magento configurable product in assoiciated product?How to handle same item with multiple prices based on condition without configurable products?Invalid entity_type specified Magento2Configurable products variants -> Show price different with color swatches (M2)













4















In Magento 2 , when we create configurable product its child product also created, we can provide different description for child products too.




> 1. How to access description of each child product on product page?
> 2. can we make it throw on change of fields , like if we changes color on product
page, so it will show description of that color child product?



Any help will thank full.










share|improve this question
















bumped to the homepage by Community 8 mins ago


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















  • Try this bsscommerce.com/…

    – MageX
    Nov 24 '17 at 10:19















4















In Magento 2 , when we create configurable product its child product also created, we can provide different description for child products too.




> 1. How to access description of each child product on product page?
> 2. can we make it throw on change of fields , like if we changes color on product
page, so it will show description of that color child product?



Any help will thank full.










share|improve this question
















bumped to the homepage by Community 8 mins ago


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















  • Try this bsscommerce.com/…

    – MageX
    Nov 24 '17 at 10:19













4












4








4








In Magento 2 , when we create configurable product its child product also created, we can provide different description for child products too.




> 1. How to access description of each child product on product page?
> 2. can we make it throw on change of fields , like if we changes color on product
page, so it will show description of that color child product?



Any help will thank full.










share|improve this question
















In Magento 2 , when we create configurable product its child product also created, we can provide different description for child products too.




> 1. How to access description of each child product on product page?
> 2. can we make it throw on change of fields , like if we changes color on product
page, so it will show description of that color child product?



Any help will thank full.







magento2 product admin configurable-product






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '17 at 10:29









ABHISHEK TRIPATHI

1,9721726




1,9721726










asked Nov 23 '17 at 10:24









Ganesh Ganesh

518




518





bumped to the homepage by Community 8 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 8 mins ago


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














  • Try this bsscommerce.com/…

    – MageX
    Nov 24 '17 at 10:19

















  • Try this bsscommerce.com/…

    – MageX
    Nov 24 '17 at 10:19
















Try this bsscommerce.com/…

– MageX
Nov 24 '17 at 10:19





Try this bsscommerce.com/…

– MageX
Nov 24 '17 at 10:19










1 Answer
1






active

oldest

votes


















0














I got the answer : im using magento 2.0.4



i used 'appdesignfrontendVenusthemefasonyMagento_ConfigurableProducttemplatesproductviewtypeoptionsconfigurable.phtml' file to get work done.




some small code you will need to get job work done




$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
$description=[];
$_children = $product->getTypeInstance()->getUsedProducts($product);
foreach ($_children as $child)
if($child->getDescription())

// $description array hold each child id and description
$description[$child->getID()]=$child->getDescription();



//In case if you did't added child product description for some product so they will display main product description
$description["product"]=$product->getDescription();

//code for product option change: what was this code

$get=json_decode($block->getJsonConfig($option_txt),true);

$checkOption=[];
foreach ($get['attributes'] as $key => $value)
if($value['code']=='color')

foreach ($value['options'] as $k => $v)
$checkOption[$v['id']]=$v['products'][0];






//code for product option change end :



//some script to use with select option
<script type="text/javascript">

require(['jquery'],function($)
var checkOption=<?php echo json_encode($checkOption);?>;
var description=<?php echo json_encode($description);?>;
jQuery(document).ready(function()
$("#attribute90").on('change',function()
var id= $(this).val();
if(description[checkOption[id]])

//get child product description
$('div[id="product.info.description"]').html(description[checkOption[id]]);

else
//if child product dont have description show , main product description
$('div[id="product.info.description"]').html(description["product"]);


);

);
);
</script>


full source code of my configurable.phtml file



<?php

$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');

$description=[];

//get all childrens
$_children = $product->getTypeInstance()->getUsedProducts($product);

foreach ($_children as $child)
if($child->getDescription())

$description[$child->getID()]=$child->getDescription();


$description["product"]=$product->getDescription();

?>
<?php if ($_product->isSaleable() && count($_attributes)):?>
<?php foreach ($_attributes as $_attribute):?>
<div class="field configurable required">
<label class="label" for="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>">
<span><?php $label=$block->escapeHtml($_attribute->getProductAttribute()->getStoreLabel());
echo $label;
?></span>
</label>
<div class="control">
<select name="super_attribute[<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>]"
data-validate="required:true"
id="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>"
class="super-attribute-select" data-placholder="<?php /* @escapeNotVerified */
echo "$label:";
?>">
<option value="">
</option>
</select>
</div>
</div>
<?php endforeach;


//code for product option change
$get=json_decode($block->getJsonConfig($option_txt),true);

$checkOption=[];
foreach ($get['attributes'] as $key => $value)
if($value['code']=='color')

foreach ($value['options'] as $k => $v)
$checkOption[$v['id']]=$v['products'][0];




//code for product option change end:


?>
<script type="text/x-magento-init">

"#product_addtocart_form":
"configurable":
"spConfig": <?php echo json_encode($block->getJsonConfig($option_txt)); ?>



</script>
<?php endif;?>


<script type="text/javascript">

require(['jquery'],function($)
var checkOption=<?php echo json_encode($checkOption);?>;
var description=<?php echo json_encode($description);?>;
jQuery(document).ready(function()
$("#attribute90").on('change',function()
var id= $(this).val();
if(description[checkOption[id]])

//get child product description
$('div[id="product.info.description"]').html(description[checkOption[id]]);

else
//if child product dont have description show , main product description
$('div[id="product.info.description"]').html(description["product"]);


);

);
);
</script>





share|improve this answer






















    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%2f202888%2fhow-to-display-different-description-for-each-virtual-product-which-was-create-w%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














    I got the answer : im using magento 2.0.4



    i used 'appdesignfrontendVenusthemefasonyMagento_ConfigurableProducttemplatesproductviewtypeoptionsconfigurable.phtml' file to get work done.




    some small code you will need to get job work done




    $objectManager = MagentoFrameworkAppObjectManager::getInstance();
    $product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
    $description=[];
    $_children = $product->getTypeInstance()->getUsedProducts($product);
    foreach ($_children as $child)
    if($child->getDescription())

    // $description array hold each child id and description
    $description[$child->getID()]=$child->getDescription();



    //In case if you did't added child product description for some product so they will display main product description
    $description["product"]=$product->getDescription();

    //code for product option change: what was this code

    $get=json_decode($block->getJsonConfig($option_txt),true);

    $checkOption=[];
    foreach ($get['attributes'] as $key => $value)
    if($value['code']=='color')

    foreach ($value['options'] as $k => $v)
    $checkOption[$v['id']]=$v['products'][0];






    //code for product option change end :



    //some script to use with select option
    <script type="text/javascript">

    require(['jquery'],function($)
    var checkOption=<?php echo json_encode($checkOption);?>;
    var description=<?php echo json_encode($description);?>;
    jQuery(document).ready(function()
    $("#attribute90").on('change',function()
    var id= $(this).val();
    if(description[checkOption[id]])

    //get child product description
    $('div[id="product.info.description"]').html(description[checkOption[id]]);

    else
    //if child product dont have description show , main product description
    $('div[id="product.info.description"]').html(description["product"]);


    );

    );
    );
    </script>


    full source code of my configurable.phtml file



    <?php

    $objectManager = MagentoFrameworkAppObjectManager::getInstance();
    $product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');

    $description=[];

    //get all childrens
    $_children = $product->getTypeInstance()->getUsedProducts($product);

    foreach ($_children as $child)
    if($child->getDescription())

    $description[$child->getID()]=$child->getDescription();


    $description["product"]=$product->getDescription();

    ?>
    <?php if ($_product->isSaleable() && count($_attributes)):?>
    <?php foreach ($_attributes as $_attribute):?>
    <div class="field configurable required">
    <label class="label" for="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>">
    <span><?php $label=$block->escapeHtml($_attribute->getProductAttribute()->getStoreLabel());
    echo $label;
    ?></span>
    </label>
    <div class="control">
    <select name="super_attribute[<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>]"
    data-validate="required:true"
    id="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>"
    class="super-attribute-select" data-placholder="<?php /* @escapeNotVerified */
    echo "$label:";
    ?>">
    <option value="">
    </option>
    </select>
    </div>
    </div>
    <?php endforeach;


    //code for product option change
    $get=json_decode($block->getJsonConfig($option_txt),true);

    $checkOption=[];
    foreach ($get['attributes'] as $key => $value)
    if($value['code']=='color')

    foreach ($value['options'] as $k => $v)
    $checkOption[$v['id']]=$v['products'][0];




    //code for product option change end:


    ?>
    <script type="text/x-magento-init">

    "#product_addtocart_form":
    "configurable":
    "spConfig": <?php echo json_encode($block->getJsonConfig($option_txt)); ?>



    </script>
    <?php endif;?>


    <script type="text/javascript">

    require(['jquery'],function($)
    var checkOption=<?php echo json_encode($checkOption);?>;
    var description=<?php echo json_encode($description);?>;
    jQuery(document).ready(function()
    $("#attribute90").on('change',function()
    var id= $(this).val();
    if(description[checkOption[id]])

    //get child product description
    $('div[id="product.info.description"]').html(description[checkOption[id]]);

    else
    //if child product dont have description show , main product description
    $('div[id="product.info.description"]').html(description["product"]);


    );

    );
    );
    </script>





    share|improve this answer



























      0














      I got the answer : im using magento 2.0.4



      i used 'appdesignfrontendVenusthemefasonyMagento_ConfigurableProducttemplatesproductviewtypeoptionsconfigurable.phtml' file to get work done.




      some small code you will need to get job work done




      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
      $description=[];
      $_children = $product->getTypeInstance()->getUsedProducts($product);
      foreach ($_children as $child)
      if($child->getDescription())

      // $description array hold each child id and description
      $description[$child->getID()]=$child->getDescription();



      //In case if you did't added child product description for some product so they will display main product description
      $description["product"]=$product->getDescription();

      //code for product option change: what was this code

      $get=json_decode($block->getJsonConfig($option_txt),true);

      $checkOption=[];
      foreach ($get['attributes'] as $key => $value)
      if($value['code']=='color')

      foreach ($value['options'] as $k => $v)
      $checkOption[$v['id']]=$v['products'][0];






      //code for product option change end :



      //some script to use with select option
      <script type="text/javascript">

      require(['jquery'],function($)
      var checkOption=<?php echo json_encode($checkOption);?>;
      var description=<?php echo json_encode($description);?>;
      jQuery(document).ready(function()
      $("#attribute90").on('change',function()
      var id= $(this).val();
      if(description[checkOption[id]])

      //get child product description
      $('div[id="product.info.description"]').html(description[checkOption[id]]);

      else
      //if child product dont have description show , main product description
      $('div[id="product.info.description"]').html(description["product"]);


      );

      );
      );
      </script>


      full source code of my configurable.phtml file



      <?php

      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');

      $description=[];

      //get all childrens
      $_children = $product->getTypeInstance()->getUsedProducts($product);

      foreach ($_children as $child)
      if($child->getDescription())

      $description[$child->getID()]=$child->getDescription();


      $description["product"]=$product->getDescription();

      ?>
      <?php if ($_product->isSaleable() && count($_attributes)):?>
      <?php foreach ($_attributes as $_attribute):?>
      <div class="field configurable required">
      <label class="label" for="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>">
      <span><?php $label=$block->escapeHtml($_attribute->getProductAttribute()->getStoreLabel());
      echo $label;
      ?></span>
      </label>
      <div class="control">
      <select name="super_attribute[<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>]"
      data-validate="required:true"
      id="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>"
      class="super-attribute-select" data-placholder="<?php /* @escapeNotVerified */
      echo "$label:";
      ?>">
      <option value="">
      </option>
      </select>
      </div>
      </div>
      <?php endforeach;


      //code for product option change
      $get=json_decode($block->getJsonConfig($option_txt),true);

      $checkOption=[];
      foreach ($get['attributes'] as $key => $value)
      if($value['code']=='color')

      foreach ($value['options'] as $k => $v)
      $checkOption[$v['id']]=$v['products'][0];




      //code for product option change end:


      ?>
      <script type="text/x-magento-init">

      "#product_addtocart_form":
      "configurable":
      "spConfig": <?php echo json_encode($block->getJsonConfig($option_txt)); ?>



      </script>
      <?php endif;?>


      <script type="text/javascript">

      require(['jquery'],function($)
      var checkOption=<?php echo json_encode($checkOption);?>;
      var description=<?php echo json_encode($description);?>;
      jQuery(document).ready(function()
      $("#attribute90").on('change',function()
      var id= $(this).val();
      if(description[checkOption[id]])

      //get child product description
      $('div[id="product.info.description"]').html(description[checkOption[id]]);

      else
      //if child product dont have description show , main product description
      $('div[id="product.info.description"]').html(description["product"]);


      );

      );
      );
      </script>





      share|improve this answer

























        0












        0








        0







        I got the answer : im using magento 2.0.4



        i used 'appdesignfrontendVenusthemefasonyMagento_ConfigurableProducttemplatesproductviewtypeoptionsconfigurable.phtml' file to get work done.




        some small code you will need to get job work done




        $objectManager = MagentoFrameworkAppObjectManager::getInstance();
        $product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
        $description=[];
        $_children = $product->getTypeInstance()->getUsedProducts($product);
        foreach ($_children as $child)
        if($child->getDescription())

        // $description array hold each child id and description
        $description[$child->getID()]=$child->getDescription();



        //In case if you did't added child product description for some product so they will display main product description
        $description["product"]=$product->getDescription();

        //code for product option change: what was this code

        $get=json_decode($block->getJsonConfig($option_txt),true);

        $checkOption=[];
        foreach ($get['attributes'] as $key => $value)
        if($value['code']=='color')

        foreach ($value['options'] as $k => $v)
        $checkOption[$v['id']]=$v['products'][0];






        //code for product option change end :



        //some script to use with select option
        <script type="text/javascript">

        require(['jquery'],function($)
        var checkOption=<?php echo json_encode($checkOption);?>;
        var description=<?php echo json_encode($description);?>;
        jQuery(document).ready(function()
        $("#attribute90").on('change',function()
        var id= $(this).val();
        if(description[checkOption[id]])

        //get child product description
        $('div[id="product.info.description"]').html(description[checkOption[id]]);

        else
        //if child product dont have description show , main product description
        $('div[id="product.info.description"]').html(description["product"]);


        );

        );
        );
        </script>


        full source code of my configurable.phtml file



        <?php

        $objectManager = MagentoFrameworkAppObjectManager::getInstance();
        $product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');

        $description=[];

        //get all childrens
        $_children = $product->getTypeInstance()->getUsedProducts($product);

        foreach ($_children as $child)
        if($child->getDescription())

        $description[$child->getID()]=$child->getDescription();


        $description["product"]=$product->getDescription();

        ?>
        <?php if ($_product->isSaleable() && count($_attributes)):?>
        <?php foreach ($_attributes as $_attribute):?>
        <div class="field configurable required">
        <label class="label" for="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>">
        <span><?php $label=$block->escapeHtml($_attribute->getProductAttribute()->getStoreLabel());
        echo $label;
        ?></span>
        </label>
        <div class="control">
        <select name="super_attribute[<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>]"
        data-validate="required:true"
        id="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>"
        class="super-attribute-select" data-placholder="<?php /* @escapeNotVerified */
        echo "$label:";
        ?>">
        <option value="">
        </option>
        </select>
        </div>
        </div>
        <?php endforeach;


        //code for product option change
        $get=json_decode($block->getJsonConfig($option_txt),true);

        $checkOption=[];
        foreach ($get['attributes'] as $key => $value)
        if($value['code']=='color')

        foreach ($value['options'] as $k => $v)
        $checkOption[$v['id']]=$v['products'][0];




        //code for product option change end:


        ?>
        <script type="text/x-magento-init">

        "#product_addtocart_form":
        "configurable":
        "spConfig": <?php echo json_encode($block->getJsonConfig($option_txt)); ?>



        </script>
        <?php endif;?>


        <script type="text/javascript">

        require(['jquery'],function($)
        var checkOption=<?php echo json_encode($checkOption);?>;
        var description=<?php echo json_encode($description);?>;
        jQuery(document).ready(function()
        $("#attribute90").on('change',function()
        var id= $(this).val();
        if(description[checkOption[id]])

        //get child product description
        $('div[id="product.info.description"]').html(description[checkOption[id]]);

        else
        //if child product dont have description show , main product description
        $('div[id="product.info.description"]').html(description["product"]);


        );

        );
        );
        </script>





        share|improve this answer













        I got the answer : im using magento 2.0.4



        i used 'appdesignfrontendVenusthemefasonyMagento_ConfigurableProducttemplatesproductviewtypeoptionsconfigurable.phtml' file to get work done.




        some small code you will need to get job work done




        $objectManager = MagentoFrameworkAppObjectManager::getInstance();
        $product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');
        $description=[];
        $_children = $product->getTypeInstance()->getUsedProducts($product);
        foreach ($_children as $child)
        if($child->getDescription())

        // $description array hold each child id and description
        $description[$child->getID()]=$child->getDescription();



        //In case if you did't added child product description for some product so they will display main product description
        $description["product"]=$product->getDescription();

        //code for product option change: what was this code

        $get=json_decode($block->getJsonConfig($option_txt),true);

        $checkOption=[];
        foreach ($get['attributes'] as $key => $value)
        if($value['code']=='color')

        foreach ($value['options'] as $k => $v)
        $checkOption[$v['id']]=$v['products'][0];






        //code for product option change end :



        //some script to use with select option
        <script type="text/javascript">

        require(['jquery'],function($)
        var checkOption=<?php echo json_encode($checkOption);?>;
        var description=<?php echo json_encode($description);?>;
        jQuery(document).ready(function()
        $("#attribute90").on('change',function()
        var id= $(this).val();
        if(description[checkOption[id]])

        //get child product description
        $('div[id="product.info.description"]').html(description[checkOption[id]]);

        else
        //if child product dont have description show , main product description
        $('div[id="product.info.description"]').html(description["product"]);


        );

        );
        );
        </script>


        full source code of my configurable.phtml file



        <?php

        $objectManager = MagentoFrameworkAppObjectManager::getInstance();
        $product = $objectManager->get('MagentoFrameworkRegistry')->registry('current_product');

        $description=[];

        //get all childrens
        $_children = $product->getTypeInstance()->getUsedProducts($product);

        foreach ($_children as $child)
        if($child->getDescription())

        $description[$child->getID()]=$child->getDescription();


        $description["product"]=$product->getDescription();

        ?>
        <?php if ($_product->isSaleable() && count($_attributes)):?>
        <?php foreach ($_attributes as $_attribute):?>
        <div class="field configurable required">
        <label class="label" for="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>">
        <span><?php $label=$block->escapeHtml($_attribute->getProductAttribute()->getStoreLabel());
        echo $label;
        ?></span>
        </label>
        <div class="control">
        <select name="super_attribute[<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>]"
        data-validate="required:true"
        id="attribute<?php /* @escapeNotVerified */ echo $_attribute->getAttributeId() ?>"
        class="super-attribute-select" data-placholder="<?php /* @escapeNotVerified */
        echo "$label:";
        ?>">
        <option value="">
        </option>
        </select>
        </div>
        </div>
        <?php endforeach;


        //code for product option change
        $get=json_decode($block->getJsonConfig($option_txt),true);

        $checkOption=[];
        foreach ($get['attributes'] as $key => $value)
        if($value['code']=='color')

        foreach ($value['options'] as $k => $v)
        $checkOption[$v['id']]=$v['products'][0];




        //code for product option change end:


        ?>
        <script type="text/x-magento-init">

        "#product_addtocart_form":
        "configurable":
        "spConfig": <?php echo json_encode($block->getJsonConfig($option_txt)); ?>



        </script>
        <?php endif;?>


        <script type="text/javascript">

        require(['jquery'],function($)
        var checkOption=<?php echo json_encode($checkOption);?>;
        var description=<?php echo json_encode($description);?>;
        jQuery(document).ready(function()
        $("#attribute90").on('change',function()
        var id= $(this).val();
        if(description[checkOption[id]])

        //get child product description
        $('div[id="product.info.description"]').html(description[checkOption[id]]);

        else
        //if child product dont have description show , main product description
        $('div[id="product.info.description"]').html(description["product"]);


        );

        );
        );
        </script>






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 24 '17 at 12:43









        Ganesh Ganesh

        518




        518



























            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%2f202888%2fhow-to-display-different-description-for-each-virtual-product-which-was-create-w%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

            Magento 2 duplicate PHPSESSID cookie when using session_start() in custom php scriptMagento 2: User cant logged in into to account page, no error showing!Magento duplicate on subdomainGrabbing storeview from cookie (after using language selector)How do I run php custom script on magento2Magento 2: Include PHP script in headerSession lock after using Cm_RedisSessionscript php to update stockMagento set cookie popupMagento 2 session id cookie - where to find it?How to import Configurable product from csv with custom attributes using php scriptMagento 2 run custom PHP script

            Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

            How to solve knockout JS error in Magento 2 Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?(Magento2) knockout.js:3012 Uncaught ReferenceError: Unable to process bindingUnable to process binding Knockout.js magento 2Cannot read property `scopeLabel` of undefined on Product Detail PageCan't get Customer Data on frontend in Magento 2Magento2 Order Summary - unable to process bindingKO templates are not loading in Magento 2.1 applicationgetting knockout js error magento 2Product grid not load -— Unable to process binding Knockout.js magento 2Product form not loaded in magento2Uncaught ReferenceError: Unable to process binding “if: function()return (isShowLegend()) ” magento 2