magento 2.2.7 configurable products don't show up shipment address in checkoutAdd to cart not working for configurable productsAdd Custom Attribute to show on Checkout pageMagento 2: Checkout page can't continueAssociated simple products not showing in configurable productBilling Address Custom FieldMagento 2.2: Order, Invoice, and Shipment do not display in admin gridHow to Solve Magento 2 checkout not working for custom address field?Magento 2.2.5: Custom Checkout Place Order ErrorMy Payment Methods not Showing for downloadable/virtual product when checkout?Interactive with shipping step from custom step

Why have both: BJT and FET transistors on IC output?

Reasons for using monsters as bioweapons

Went to a big 4 but got fired for underperformance in a year recently - Now every one thinks I'm pro - How to balance expectations?

How to call made-up data?

Why do my fried eggs start browning very fast?

What exactly is Rhumb-line control in the context of a launch trajectory?

How does Rust's 128-bit integer `i128` work on a 64-bit system?

On the expression "sun-down"

Has J.J.Jameson ever found out that Peter Parker is Spider-Man?

Is it moral to remove/hide certain parts of a photo, as a photographer?

Is there a word that describes people who are extraverted and/or energetic, but uneducated, unintelligent and/or uncreative?

How to design an effective polearm-bow hybrid?

Have you been refused entry into the Federal Republic of Germany?

Are personal names spelled in hiragana or katakana if the kanji isn't known?

Do moonless nights cause dim light to become darkness, and bright light (e.g. from torches) to become dim light?

Why did the United States not resort to nuclear weapons in Vietnam?

In a KP-K endgame, if the enemy king is in front of the pawn, is it always a draw?

Write The Shortest Program to Calculate Height of a Binary Tree

How do people drown while wearing a life jacket?

What is Modern Vipassana?

Does WSL2 runs Linux in a virtual machine or alongside windows Kernel?

Why are sugars in whole fruits not digested the same way sugars in juice are?

Pronouns when writing from the point of view of a robot

Difference between "jail" and "prison" in German



magento 2.2.7 configurable products don't show up shipment address in checkout


Add to cart not working for configurable productsAdd Custom Attribute to show on Checkout pageMagento 2: Checkout page can't continueAssociated simple products not showing in configurable productBilling Address Custom FieldMagento 2.2: Order, Invoice, and Shipment do not display in admin gridHow to Solve Magento 2 checkout not working for custom address field?Magento 2.2.5: Custom Checkout Place Order ErrorMy Payment Methods not Showing for downloadable/virtual product when checkout?Interactive with shipping step from custom step






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















when configure product's child product purchase at time shipping address missing in checkout



enter image description here




my database side catalog_product_entity table




enter image description here




1.when i run reindex command then 2-3 days working fine after same
issue is coming

2.if child product add weight then working good











share|improve this question


























  • what shipping method are you using?

    – Rusit0
    Jul 26 at 16:06

















1















when configure product's child product purchase at time shipping address missing in checkout



enter image description here




my database side catalog_product_entity table




enter image description here




1.when i run reindex command then 2-3 days working fine after same
issue is coming

2.if child product add weight then working good











share|improve this question


























  • what shipping method are you using?

    – Rusit0
    Jul 26 at 16:06













1












1








1








when configure product's child product purchase at time shipping address missing in checkout



enter image description here




my database side catalog_product_entity table




enter image description here




1.when i run reindex command then 2-3 days working fine after same
issue is coming

2.if child product add weight then working good











share|improve this question
















when configure product's child product purchase at time shipping address missing in checkout



enter image description here




my database side catalog_product_entity table




enter image description here




1.when i run reindex command then 2-3 days working fine after same
issue is coming

2.if child product add weight then working good








checkout magento2.2 configurable-product






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 25 at 8:24







Rakesh Donga

















asked Jul 22 at 16:42









Rakesh DongaRakesh Donga

2,9286 silver badges25 bronze badges




2,9286 silver badges25 bronze badges















  • what shipping method are you using?

    – Rusit0
    Jul 26 at 16:06

















  • what shipping method are you using?

    – Rusit0
    Jul 26 at 16:06
















what shipping method are you using?

– Rusit0
Jul 26 at 16:06





what shipping method are you using?

– Rusit0
Jul 26 at 16:06










3 Answers
3






active

oldest

votes


















0














If in your condition virtual product is associated to configurable product that time shipping address is skip into the checkout.
Please check your associated product list with your configurable product.






share|improve this answer

























  • thanks for replay but weight add is not solution

    – Rakesh Donga
    Jul 25 at 12:36


















0














Magento 2 needs weight value for a product to be considered shippable, if you are importing that csv file, check the imported products and make sure the ones supposed to be "simple" are not created as "virtual"






share|improve this answer

























  • thanks for replay but weight add is not solution and i have checked my all products is simple and configure

    – Rakesh Donga
    Jul 25 at 12:37











  • if adding weight is not a possibility for your products you will probably have to find and override the method checking those details in checkout

    – SantiBM
    Jul 25 at 12:48











  • this type condition available in my block file if ($this->checkoutSession->getQuote()->isVirtual()) $layout = 'virtual'; else $layout = $this->scopeConfig->getValue('amasty_checkout/design/layout', ScopeInterface::SCOPE_STORE);

    – Rakesh Donga
    Jul 25 at 12:59












  • if you are not selling virtual products you can try removing the isVirtual condition check

    – SantiBM
    Jul 25 at 13:24











  • My store is live if any problem i will remove it because many order creates

    – Rakesh Donga
    Jul 25 at 13:26


















0














Please try it by giving a static weight for all products like 0.1 weight for all products by using script.
1) If you want to do it by database then here is the code:



select * from eav_attribute where attribute_code='weight'; it will give you id of that attribute

select * from catalog_product_entity_decimal where attribute_id=82 // find that attribute value

update catalog_product_entity_decimal set value='' where attribute_id=82 and value='0.3'


2) If you want to do it when product save:
Create this event catalog_product_save_after and load product and update its weight.
This event run everytime after product save.



3) Create a script to do this.



This is the temporary solution. Hope it works!!






share|improve this answer




















  • 1





    i know this solution but it is temporary solution not permanent

    – Rakesh Donga
    Jul 29 at 5:17











  • @RakeshDonga if you follow step 2 , then this solution will work always.

    – Himani Tayal
    Jul 29 at 5:41






  • 1





    no this is one type temporary solution

    – Rakesh Donga
    Jul 29 at 5:44













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%2f282896%2fmagento-2-2-7-configurable-products-dont-show-up-shipment-address-in-checkout%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























3 Answers
3






active

oldest

votes








3 Answers
3






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














If in your condition virtual product is associated to configurable product that time shipping address is skip into the checkout.
Please check your associated product list with your configurable product.






share|improve this answer

























  • thanks for replay but weight add is not solution

    – Rakesh Donga
    Jul 25 at 12:36















0














If in your condition virtual product is associated to configurable product that time shipping address is skip into the checkout.
Please check your associated product list with your configurable product.






share|improve this answer

























  • thanks for replay but weight add is not solution

    – Rakesh Donga
    Jul 25 at 12:36













0












0








0







If in your condition virtual product is associated to configurable product that time shipping address is skip into the checkout.
Please check your associated product list with your configurable product.






share|improve this answer













If in your condition virtual product is associated to configurable product that time shipping address is skip into the checkout.
Please check your associated product list with your configurable product.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jul 25 at 11:31









Sagar GaikwadSagar Gaikwad

1296 bronze badges




1296 bronze badges















  • thanks for replay but weight add is not solution

    – Rakesh Donga
    Jul 25 at 12:36

















  • thanks for replay but weight add is not solution

    – Rakesh Donga
    Jul 25 at 12:36
















thanks for replay but weight add is not solution

– Rakesh Donga
Jul 25 at 12:36





thanks for replay but weight add is not solution

– Rakesh Donga
Jul 25 at 12:36













0














Magento 2 needs weight value for a product to be considered shippable, if you are importing that csv file, check the imported products and make sure the ones supposed to be "simple" are not created as "virtual"






share|improve this answer

























  • thanks for replay but weight add is not solution and i have checked my all products is simple and configure

    – Rakesh Donga
    Jul 25 at 12:37











  • if adding weight is not a possibility for your products you will probably have to find and override the method checking those details in checkout

    – SantiBM
    Jul 25 at 12:48











  • this type condition available in my block file if ($this->checkoutSession->getQuote()->isVirtual()) $layout = 'virtual'; else $layout = $this->scopeConfig->getValue('amasty_checkout/design/layout', ScopeInterface::SCOPE_STORE);

    – Rakesh Donga
    Jul 25 at 12:59












  • if you are not selling virtual products you can try removing the isVirtual condition check

    – SantiBM
    Jul 25 at 13:24











  • My store is live if any problem i will remove it because many order creates

    – Rakesh Donga
    Jul 25 at 13:26















0














Magento 2 needs weight value for a product to be considered shippable, if you are importing that csv file, check the imported products and make sure the ones supposed to be "simple" are not created as "virtual"






share|improve this answer

























  • thanks for replay but weight add is not solution and i have checked my all products is simple and configure

    – Rakesh Donga
    Jul 25 at 12:37











  • if adding weight is not a possibility for your products you will probably have to find and override the method checking those details in checkout

    – SantiBM
    Jul 25 at 12:48











  • this type condition available in my block file if ($this->checkoutSession->getQuote()->isVirtual()) $layout = 'virtual'; else $layout = $this->scopeConfig->getValue('amasty_checkout/design/layout', ScopeInterface::SCOPE_STORE);

    – Rakesh Donga
    Jul 25 at 12:59












  • if you are not selling virtual products you can try removing the isVirtual condition check

    – SantiBM
    Jul 25 at 13:24











  • My store is live if any problem i will remove it because many order creates

    – Rakesh Donga
    Jul 25 at 13:26













0












0








0







Magento 2 needs weight value for a product to be considered shippable, if you are importing that csv file, check the imported products and make sure the ones supposed to be "simple" are not created as "virtual"






share|improve this answer













Magento 2 needs weight value for a product to be considered shippable, if you are importing that csv file, check the imported products and make sure the ones supposed to be "simple" are not created as "virtual"







share|improve this answer












share|improve this answer



share|improve this answer










answered Jul 25 at 11:43









SantiBMSantiBM

19510 bronze badges




19510 bronze badges















  • thanks for replay but weight add is not solution and i have checked my all products is simple and configure

    – Rakesh Donga
    Jul 25 at 12:37











  • if adding weight is not a possibility for your products you will probably have to find and override the method checking those details in checkout

    – SantiBM
    Jul 25 at 12:48











  • this type condition available in my block file if ($this->checkoutSession->getQuote()->isVirtual()) $layout = 'virtual'; else $layout = $this->scopeConfig->getValue('amasty_checkout/design/layout', ScopeInterface::SCOPE_STORE);

    – Rakesh Donga
    Jul 25 at 12:59












  • if you are not selling virtual products you can try removing the isVirtual condition check

    – SantiBM
    Jul 25 at 13:24











  • My store is live if any problem i will remove it because many order creates

    – Rakesh Donga
    Jul 25 at 13:26

















  • thanks for replay but weight add is not solution and i have checked my all products is simple and configure

    – Rakesh Donga
    Jul 25 at 12:37











  • if adding weight is not a possibility for your products you will probably have to find and override the method checking those details in checkout

    – SantiBM
    Jul 25 at 12:48











  • this type condition available in my block file if ($this->checkoutSession->getQuote()->isVirtual()) $layout = 'virtual'; else $layout = $this->scopeConfig->getValue('amasty_checkout/design/layout', ScopeInterface::SCOPE_STORE);

    – Rakesh Donga
    Jul 25 at 12:59












  • if you are not selling virtual products you can try removing the isVirtual condition check

    – SantiBM
    Jul 25 at 13:24











  • My store is live if any problem i will remove it because many order creates

    – Rakesh Donga
    Jul 25 at 13:26
















thanks for replay but weight add is not solution and i have checked my all products is simple and configure

– Rakesh Donga
Jul 25 at 12:37





thanks for replay but weight add is not solution and i have checked my all products is simple and configure

– Rakesh Donga
Jul 25 at 12:37













if adding weight is not a possibility for your products you will probably have to find and override the method checking those details in checkout

– SantiBM
Jul 25 at 12:48





if adding weight is not a possibility for your products you will probably have to find and override the method checking those details in checkout

– SantiBM
Jul 25 at 12:48













this type condition available in my block file if ($this->checkoutSession->getQuote()->isVirtual()) $layout = 'virtual'; else $layout = $this->scopeConfig->getValue('amasty_checkout/design/layout', ScopeInterface::SCOPE_STORE);

– Rakesh Donga
Jul 25 at 12:59






this type condition available in my block file if ($this->checkoutSession->getQuote()->isVirtual()) $layout = 'virtual'; else $layout = $this->scopeConfig->getValue('amasty_checkout/design/layout', ScopeInterface::SCOPE_STORE);

– Rakesh Donga
Jul 25 at 12:59














if you are not selling virtual products you can try removing the isVirtual condition check

– SantiBM
Jul 25 at 13:24





if you are not selling virtual products you can try removing the isVirtual condition check

– SantiBM
Jul 25 at 13:24













My store is live if any problem i will remove it because many order creates

– Rakesh Donga
Jul 25 at 13:26





My store is live if any problem i will remove it because many order creates

– Rakesh Donga
Jul 25 at 13:26











0














Please try it by giving a static weight for all products like 0.1 weight for all products by using script.
1) If you want to do it by database then here is the code:



select * from eav_attribute where attribute_code='weight'; it will give you id of that attribute

select * from catalog_product_entity_decimal where attribute_id=82 // find that attribute value

update catalog_product_entity_decimal set value='' where attribute_id=82 and value='0.3'


2) If you want to do it when product save:
Create this event catalog_product_save_after and load product and update its weight.
This event run everytime after product save.



3) Create a script to do this.



This is the temporary solution. Hope it works!!






share|improve this answer




















  • 1





    i know this solution but it is temporary solution not permanent

    – Rakesh Donga
    Jul 29 at 5:17











  • @RakeshDonga if you follow step 2 , then this solution will work always.

    – Himani Tayal
    Jul 29 at 5:41






  • 1





    no this is one type temporary solution

    – Rakesh Donga
    Jul 29 at 5:44















0














Please try it by giving a static weight for all products like 0.1 weight for all products by using script.
1) If you want to do it by database then here is the code:



select * from eav_attribute where attribute_code='weight'; it will give you id of that attribute

select * from catalog_product_entity_decimal where attribute_id=82 // find that attribute value

update catalog_product_entity_decimal set value='' where attribute_id=82 and value='0.3'


2) If you want to do it when product save:
Create this event catalog_product_save_after and load product and update its weight.
This event run everytime after product save.



3) Create a script to do this.



This is the temporary solution. Hope it works!!






share|improve this answer




















  • 1





    i know this solution but it is temporary solution not permanent

    – Rakesh Donga
    Jul 29 at 5:17











  • @RakeshDonga if you follow step 2 , then this solution will work always.

    – Himani Tayal
    Jul 29 at 5:41






  • 1





    no this is one type temporary solution

    – Rakesh Donga
    Jul 29 at 5:44













0












0








0







Please try it by giving a static weight for all products like 0.1 weight for all products by using script.
1) If you want to do it by database then here is the code:



select * from eav_attribute where attribute_code='weight'; it will give you id of that attribute

select * from catalog_product_entity_decimal where attribute_id=82 // find that attribute value

update catalog_product_entity_decimal set value='' where attribute_id=82 and value='0.3'


2) If you want to do it when product save:
Create this event catalog_product_save_after and load product and update its weight.
This event run everytime after product save.



3) Create a script to do this.



This is the temporary solution. Hope it works!!






share|improve this answer













Please try it by giving a static weight for all products like 0.1 weight for all products by using script.
1) If you want to do it by database then here is the code:



select * from eav_attribute where attribute_code='weight'; it will give you id of that attribute

select * from catalog_product_entity_decimal where attribute_id=82 // find that attribute value

update catalog_product_entity_decimal set value='' where attribute_id=82 and value='0.3'


2) If you want to do it when product save:
Create this event catalog_product_save_after and load product and update its weight.
This event run everytime after product save.



3) Create a script to do this.



This is the temporary solution. Hope it works!!







share|improve this answer












share|improve this answer



share|improve this answer










answered Jul 29 at 4:03









Himani TayalHimani Tayal

10912 bronze badges




10912 bronze badges










  • 1





    i know this solution but it is temporary solution not permanent

    – Rakesh Donga
    Jul 29 at 5:17











  • @RakeshDonga if you follow step 2 , then this solution will work always.

    – Himani Tayal
    Jul 29 at 5:41






  • 1





    no this is one type temporary solution

    – Rakesh Donga
    Jul 29 at 5:44












  • 1





    i know this solution but it is temporary solution not permanent

    – Rakesh Donga
    Jul 29 at 5:17











  • @RakeshDonga if you follow step 2 , then this solution will work always.

    – Himani Tayal
    Jul 29 at 5:41






  • 1





    no this is one type temporary solution

    – Rakesh Donga
    Jul 29 at 5:44







1




1





i know this solution but it is temporary solution not permanent

– Rakesh Donga
Jul 29 at 5:17





i know this solution but it is temporary solution not permanent

– Rakesh Donga
Jul 29 at 5:17













@RakeshDonga if you follow step 2 , then this solution will work always.

– Himani Tayal
Jul 29 at 5:41





@RakeshDonga if you follow step 2 , then this solution will work always.

– Himani Tayal
Jul 29 at 5:41




1




1





no this is one type temporary solution

– Rakesh Donga
Jul 29 at 5:44





no this is one type temporary solution

– Rakesh Donga
Jul 29 at 5:44

















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%2f282896%2fmagento-2-2-7-configurable-products-dont-show-up-shipment-address-in-checkout%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

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?