skip to Main Content

Magento 2 – Get Customer Address Id through Shipping Address at Checkout Session

I'm having trouble with getting customer address Id as it returns a null value. This is what I have tried: $checkout = $this->_sessionCheckout->getQuote(); if ($checkout) { $shippingAddress = $checkout->getShippingAddress(); if ($shippingAddress) { $addressId = $shippingAddress->getCustomerAddressId(); $this->_logger->log(100, print_r('address Id: ' .…

VIEW QUESTION

Magento 2 – Symlinks not created in dev mode

Environment: - Magento 2.3 - Mode: Developer - Cache: Disabled - empty: pub/static, except .htaccess - empty: var/cache, var/composer_home, var/page_cache, var/view_preprocessed From there it is my understanding that if you reach the website through a browser, considering there are no…

VIEW QUESTION
Back To Top
Search