how to show all cart items in phtml file magento 2












1















What is the best way to show all the items/products that are in checkout/cart in a PHTML page?
I have added a custom phtml page that shows some products, and also have a phtml page that want to show all the products that the visitor/user have added to cart.



Thank you










share|improve this question














bumped to the homepage by Community 3 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















    What is the best way to show all the items/products that are in checkout/cart in a PHTML page?
    I have added a custom phtml page that shows some products, and also have a phtml page that want to show all the products that the visitor/user have added to cart.



    Thank you










    share|improve this question














    bumped to the homepage by Community 3 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












      1








      1








      What is the best way to show all the items/products that are in checkout/cart in a PHTML page?
      I have added a custom phtml page that shows some products, and also have a phtml page that want to show all the products that the visitor/user have added to cart.



      Thank you










      share|improve this question














      What is the best way to show all the items/products that are in checkout/cart in a PHTML page?
      I have added a custom phtml page that shows some products, and also have a phtml page that want to show all the products that the visitor/user have added to cart.



      Thank you







      magento2 checkout cart phtml






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 28 '17 at 13:34









      Algert ZhAlgert Zh

      204




      204





      bumped to the homepage by Community 3 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 3 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 Answer
          1






          active

          oldest

          votes


















          0














          You can get the product via quoteItem in Cart. Use this code below:



          protected $cart;

          public function __construct(
          MagentoCheckoutModelCart $cart,
          ) {
          $this->cart = $cart;
          }


          Use this code to get the product list:



          $quote = $this->cart->getQuote();
          $allItems = $quote->getAllItems();

          foreach($allItems as $item) {
          $product = $item->getProduct();
          }


          Maybe you can use productRepository to load product by id:



          MagentoCatalogModelProductRepository $productRepository

          $product = $productRepository->getById($item->getProduct()->getId());


          Hope it help!






          share|improve this answer
























          • Thank you for your comment, but where should I put the code: protected $cart; public function __construct( MagentoCheckoutModelCart $cart, ) { $this->cart = $cart; } At which file? p.s. dont forget its magento 2

            – Algert Zh
            Dec 29 '17 at 11:27











          • You can add that code inside the __construct function of your Block file. After that, create a function that return the list of Item. And in the phtml file, you can call the foreach to get the list item and get the product.

            – Nero Phung
            Dec 29 '17 at 11:55













          • I have added that code to /app/code/company/theme/Block/Template.php and im getting this error: Error filtering template: Notice: Undefined property: MagentoFrameworkViewElementTemplate::$cart in /home/user/public_html/20189/vendor/magento/framework/View/TemplateEngine/Php.php on line 110

            – Algert Zh
            Jan 3 '18 at 12:05











          • Seem like you have defined the $cart is MagentoFrameworkViewElementTemplate. Change it to MagentoCheckoutModelCart

            – Nero Phung
            Jan 3 '18 at 15:41











          • Hello, I tried to put the code at: /vendor/magento/module-checkout/Model/Cart.php and I receive this error: Error filtering template: Class MagentoCheckoutModelCart does not exist Can you please help me at which file should I put the code ? Thank you

            – Algert Zh
            Jan 4 '18 at 11: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%2f207440%2fhow-to-show-all-cart-items-in-phtml-file-magento-2%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














          You can get the product via quoteItem in Cart. Use this code below:



          protected $cart;

          public function __construct(
          MagentoCheckoutModelCart $cart,
          ) {
          $this->cart = $cart;
          }


          Use this code to get the product list:



          $quote = $this->cart->getQuote();
          $allItems = $quote->getAllItems();

          foreach($allItems as $item) {
          $product = $item->getProduct();
          }


          Maybe you can use productRepository to load product by id:



          MagentoCatalogModelProductRepository $productRepository

          $product = $productRepository->getById($item->getProduct()->getId());


          Hope it help!






          share|improve this answer
























          • Thank you for your comment, but where should I put the code: protected $cart; public function __construct( MagentoCheckoutModelCart $cart, ) { $this->cart = $cart; } At which file? p.s. dont forget its magento 2

            – Algert Zh
            Dec 29 '17 at 11:27











          • You can add that code inside the __construct function of your Block file. After that, create a function that return the list of Item. And in the phtml file, you can call the foreach to get the list item and get the product.

            – Nero Phung
            Dec 29 '17 at 11:55













          • I have added that code to /app/code/company/theme/Block/Template.php and im getting this error: Error filtering template: Notice: Undefined property: MagentoFrameworkViewElementTemplate::$cart in /home/user/public_html/20189/vendor/magento/framework/View/TemplateEngine/Php.php on line 110

            – Algert Zh
            Jan 3 '18 at 12:05











          • Seem like you have defined the $cart is MagentoFrameworkViewElementTemplate. Change it to MagentoCheckoutModelCart

            – Nero Phung
            Jan 3 '18 at 15:41











          • Hello, I tried to put the code at: /vendor/magento/module-checkout/Model/Cart.php and I receive this error: Error filtering template: Class MagentoCheckoutModelCart does not exist Can you please help me at which file should I put the code ? Thank you

            – Algert Zh
            Jan 4 '18 at 11:52
















          0














          You can get the product via quoteItem in Cart. Use this code below:



          protected $cart;

          public function __construct(
          MagentoCheckoutModelCart $cart,
          ) {
          $this->cart = $cart;
          }


          Use this code to get the product list:



          $quote = $this->cart->getQuote();
          $allItems = $quote->getAllItems();

          foreach($allItems as $item) {
          $product = $item->getProduct();
          }


          Maybe you can use productRepository to load product by id:



          MagentoCatalogModelProductRepository $productRepository

          $product = $productRepository->getById($item->getProduct()->getId());


          Hope it help!






          share|improve this answer
























          • Thank you for your comment, but where should I put the code: protected $cart; public function __construct( MagentoCheckoutModelCart $cart, ) { $this->cart = $cart; } At which file? p.s. dont forget its magento 2

            – Algert Zh
            Dec 29 '17 at 11:27











          • You can add that code inside the __construct function of your Block file. After that, create a function that return the list of Item. And in the phtml file, you can call the foreach to get the list item and get the product.

            – Nero Phung
            Dec 29 '17 at 11:55













          • I have added that code to /app/code/company/theme/Block/Template.php and im getting this error: Error filtering template: Notice: Undefined property: MagentoFrameworkViewElementTemplate::$cart in /home/user/public_html/20189/vendor/magento/framework/View/TemplateEngine/Php.php on line 110

            – Algert Zh
            Jan 3 '18 at 12:05











          • Seem like you have defined the $cart is MagentoFrameworkViewElementTemplate. Change it to MagentoCheckoutModelCart

            – Nero Phung
            Jan 3 '18 at 15:41











          • Hello, I tried to put the code at: /vendor/magento/module-checkout/Model/Cart.php and I receive this error: Error filtering template: Class MagentoCheckoutModelCart does not exist Can you please help me at which file should I put the code ? Thank you

            – Algert Zh
            Jan 4 '18 at 11:52














          0












          0








          0







          You can get the product via quoteItem in Cart. Use this code below:



          protected $cart;

          public function __construct(
          MagentoCheckoutModelCart $cart,
          ) {
          $this->cart = $cart;
          }


          Use this code to get the product list:



          $quote = $this->cart->getQuote();
          $allItems = $quote->getAllItems();

          foreach($allItems as $item) {
          $product = $item->getProduct();
          }


          Maybe you can use productRepository to load product by id:



          MagentoCatalogModelProductRepository $productRepository

          $product = $productRepository->getById($item->getProduct()->getId());


          Hope it help!






          share|improve this answer













          You can get the product via quoteItem in Cart. Use this code below:



          protected $cart;

          public function __construct(
          MagentoCheckoutModelCart $cart,
          ) {
          $this->cart = $cart;
          }


          Use this code to get the product list:



          $quote = $this->cart->getQuote();
          $allItems = $quote->getAllItems();

          foreach($allItems as $item) {
          $product = $item->getProduct();
          }


          Maybe you can use productRepository to load product by id:



          MagentoCatalogModelProductRepository $productRepository

          $product = $productRepository->getById($item->getProduct()->getId());


          Hope it help!







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Dec 28 '17 at 17:19









          Nero PhungNero Phung

          8841520




          8841520













          • Thank you for your comment, but where should I put the code: protected $cart; public function __construct( MagentoCheckoutModelCart $cart, ) { $this->cart = $cart; } At which file? p.s. dont forget its magento 2

            – Algert Zh
            Dec 29 '17 at 11:27











          • You can add that code inside the __construct function of your Block file. After that, create a function that return the list of Item. And in the phtml file, you can call the foreach to get the list item and get the product.

            – Nero Phung
            Dec 29 '17 at 11:55













          • I have added that code to /app/code/company/theme/Block/Template.php and im getting this error: Error filtering template: Notice: Undefined property: MagentoFrameworkViewElementTemplate::$cart in /home/user/public_html/20189/vendor/magento/framework/View/TemplateEngine/Php.php on line 110

            – Algert Zh
            Jan 3 '18 at 12:05











          • Seem like you have defined the $cart is MagentoFrameworkViewElementTemplate. Change it to MagentoCheckoutModelCart

            – Nero Phung
            Jan 3 '18 at 15:41











          • Hello, I tried to put the code at: /vendor/magento/module-checkout/Model/Cart.php and I receive this error: Error filtering template: Class MagentoCheckoutModelCart does not exist Can you please help me at which file should I put the code ? Thank you

            – Algert Zh
            Jan 4 '18 at 11:52



















          • Thank you for your comment, but where should I put the code: protected $cart; public function __construct( MagentoCheckoutModelCart $cart, ) { $this->cart = $cart; } At which file? p.s. dont forget its magento 2

            – Algert Zh
            Dec 29 '17 at 11:27











          • You can add that code inside the __construct function of your Block file. After that, create a function that return the list of Item. And in the phtml file, you can call the foreach to get the list item and get the product.

            – Nero Phung
            Dec 29 '17 at 11:55













          • I have added that code to /app/code/company/theme/Block/Template.php and im getting this error: Error filtering template: Notice: Undefined property: MagentoFrameworkViewElementTemplate::$cart in /home/user/public_html/20189/vendor/magento/framework/View/TemplateEngine/Php.php on line 110

            – Algert Zh
            Jan 3 '18 at 12:05











          • Seem like you have defined the $cart is MagentoFrameworkViewElementTemplate. Change it to MagentoCheckoutModelCart

            – Nero Phung
            Jan 3 '18 at 15:41











          • Hello, I tried to put the code at: /vendor/magento/module-checkout/Model/Cart.php and I receive this error: Error filtering template: Class MagentoCheckoutModelCart does not exist Can you please help me at which file should I put the code ? Thank you

            – Algert Zh
            Jan 4 '18 at 11:52

















          Thank you for your comment, but where should I put the code: protected $cart; public function __construct( MagentoCheckoutModelCart $cart, ) { $this->cart = $cart; } At which file? p.s. dont forget its magento 2

          – Algert Zh
          Dec 29 '17 at 11:27





          Thank you for your comment, but where should I put the code: protected $cart; public function __construct( MagentoCheckoutModelCart $cart, ) { $this->cart = $cart; } At which file? p.s. dont forget its magento 2

          – Algert Zh
          Dec 29 '17 at 11:27













          You can add that code inside the __construct function of your Block file. After that, create a function that return the list of Item. And in the phtml file, you can call the foreach to get the list item and get the product.

          – Nero Phung
          Dec 29 '17 at 11:55







          You can add that code inside the __construct function of your Block file. After that, create a function that return the list of Item. And in the phtml file, you can call the foreach to get the list item and get the product.

          – Nero Phung
          Dec 29 '17 at 11:55















          I have added that code to /app/code/company/theme/Block/Template.php and im getting this error: Error filtering template: Notice: Undefined property: MagentoFrameworkViewElementTemplate::$cart in /home/user/public_html/20189/vendor/magento/framework/View/TemplateEngine/Php.php on line 110

          – Algert Zh
          Jan 3 '18 at 12:05





          I have added that code to /app/code/company/theme/Block/Template.php and im getting this error: Error filtering template: Notice: Undefined property: MagentoFrameworkViewElementTemplate::$cart in /home/user/public_html/20189/vendor/magento/framework/View/TemplateEngine/Php.php on line 110

          – Algert Zh
          Jan 3 '18 at 12:05













          Seem like you have defined the $cart is MagentoFrameworkViewElementTemplate. Change it to MagentoCheckoutModelCart

          – Nero Phung
          Jan 3 '18 at 15:41





          Seem like you have defined the $cart is MagentoFrameworkViewElementTemplate. Change it to MagentoCheckoutModelCart

          – Nero Phung
          Jan 3 '18 at 15:41













          Hello, I tried to put the code at: /vendor/magento/module-checkout/Model/Cart.php and I receive this error: Error filtering template: Class MagentoCheckoutModelCart does not exist Can you please help me at which file should I put the code ? Thank you

          – Algert Zh
          Jan 4 '18 at 11:52





          Hello, I tried to put the code at: /vendor/magento/module-checkout/Model/Cart.php and I receive this error: Error filtering template: Class MagentoCheckoutModelCart does not exist Can you please help me at which file should I put the code ? Thank you

          – Algert Zh
          Jan 4 '18 at 11: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%2f207440%2fhow-to-show-all-cart-items-in-phtml-file-magento-2%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

          What other Star Trek series did the main TNG cast show up in?

          Berlina muro

          Berlina aerponto