Magento 2 : How to show sub categories on Static block?












0















How to show the sub categories on category pages ?



We have number of categories and sub categories on our website. So, we want to show the products for last level categories only. For the all sub categories (Except last level of the sub category), We want to show the assigned categories to that sub categories.



How to do that ?










share|improve this question





























    0















    How to show the sub categories on category pages ?



    We have number of categories and sub categories on our website. So, we want to show the products for last level categories only. For the all sub categories (Except last level of the sub category), We want to show the assigned categories to that sub categories.



    How to do that ?










    share|improve this question



























      0












      0








      0








      How to show the sub categories on category pages ?



      We have number of categories and sub categories on our website. So, we want to show the products for last level categories only. For the all sub categories (Except last level of the sub category), We want to show the assigned categories to that sub categories.



      How to do that ?










      share|improve this question
















      How to show the sub categories on category pages ?



      We have number of categories and sub categories on our website. So, we want to show the products for last level categories only. For the all sub categories (Except last level of the sub category), We want to show the assigned categories to that sub categories.



      How to do that ?







      magento2.2.6 sub-categories






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 9 mins ago







      Teja Bhagavan Kollepara

















      asked Jan 21 at 9:58









      Teja Bhagavan KolleparaTeja Bhagavan Kollepara

      2,94841847




      2,94841847






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Using a static block it is not possible. Though you can achieve it as described below.



          You should create a helper class to get current category and it's sub-categories.



          <?php
          namespace VendorModuleHelper;
          use MagentoFrameworkAppHelperAbstractHelper;

          class Data extends AbstractHelper
          {

          protected $_registry;
          protected $_categoryRepository;

          public function __construct(MagentoFrameworkRegistry $registry, MagentoCatalogModelCategoryRepository $categoryRepository)
          {
          $this->_registry = $registry;
          $this->_categoryRepository = $categoryRepository;
          }

          public function getCurrentCategoryId()
          {
          return $this->_registry->registry('current_category')->getId();
          }
          public function getSubcategory()
          {
          $parent_category_id = $this->getCurrentCategoryId();
          $categoryObj = $this->_categoryRepository->get($parent_category_id);
          $subcategories = $categoryObj->getChildrenCategories();
          return $subcategories;
          }
          }


          Now in app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml which is used on category page use below code:



          $catHelper = $this->helper('VendorModuleHelperData');
          $subcategories = $catHelper->getSubcategory();
          foreach($subcategories as $subcategorie) {
          echo ' --> '.$subcategorie->getName().'<br/>';
          }


          Note: You should also add validation to check whether current category has a sub-category or not.






          share|improve this answer


























          • Please add the path where i should create this code

            – Teja Bhagavan Kollepara
            Jan 21 at 11:38











          • Helper code will go to app/code/Vendor/Module/Helper/Data.php and you need to call helper function from your theme's list.phtml file app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml

            – amitshree
            Jan 21 at 11: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%2f258540%2fmagento-2-how-to-show-sub-categories-on-static-block%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














          Using a static block it is not possible. Though you can achieve it as described below.



          You should create a helper class to get current category and it's sub-categories.



          <?php
          namespace VendorModuleHelper;
          use MagentoFrameworkAppHelperAbstractHelper;

          class Data extends AbstractHelper
          {

          protected $_registry;
          protected $_categoryRepository;

          public function __construct(MagentoFrameworkRegistry $registry, MagentoCatalogModelCategoryRepository $categoryRepository)
          {
          $this->_registry = $registry;
          $this->_categoryRepository = $categoryRepository;
          }

          public function getCurrentCategoryId()
          {
          return $this->_registry->registry('current_category')->getId();
          }
          public function getSubcategory()
          {
          $parent_category_id = $this->getCurrentCategoryId();
          $categoryObj = $this->_categoryRepository->get($parent_category_id);
          $subcategories = $categoryObj->getChildrenCategories();
          return $subcategories;
          }
          }


          Now in app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml which is used on category page use below code:



          $catHelper = $this->helper('VendorModuleHelperData');
          $subcategories = $catHelper->getSubcategory();
          foreach($subcategories as $subcategorie) {
          echo ' --> '.$subcategorie->getName().'<br/>';
          }


          Note: You should also add validation to check whether current category has a sub-category or not.






          share|improve this answer


























          • Please add the path where i should create this code

            – Teja Bhagavan Kollepara
            Jan 21 at 11:38











          • Helper code will go to app/code/Vendor/Module/Helper/Data.php and you need to call helper function from your theme's list.phtml file app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml

            – amitshree
            Jan 21 at 11:44
















          0














          Using a static block it is not possible. Though you can achieve it as described below.



          You should create a helper class to get current category and it's sub-categories.



          <?php
          namespace VendorModuleHelper;
          use MagentoFrameworkAppHelperAbstractHelper;

          class Data extends AbstractHelper
          {

          protected $_registry;
          protected $_categoryRepository;

          public function __construct(MagentoFrameworkRegistry $registry, MagentoCatalogModelCategoryRepository $categoryRepository)
          {
          $this->_registry = $registry;
          $this->_categoryRepository = $categoryRepository;
          }

          public function getCurrentCategoryId()
          {
          return $this->_registry->registry('current_category')->getId();
          }
          public function getSubcategory()
          {
          $parent_category_id = $this->getCurrentCategoryId();
          $categoryObj = $this->_categoryRepository->get($parent_category_id);
          $subcategories = $categoryObj->getChildrenCategories();
          return $subcategories;
          }
          }


          Now in app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml which is used on category page use below code:



          $catHelper = $this->helper('VendorModuleHelperData');
          $subcategories = $catHelper->getSubcategory();
          foreach($subcategories as $subcategorie) {
          echo ' --> '.$subcategorie->getName().'<br/>';
          }


          Note: You should also add validation to check whether current category has a sub-category or not.






          share|improve this answer


























          • Please add the path where i should create this code

            – Teja Bhagavan Kollepara
            Jan 21 at 11:38











          • Helper code will go to app/code/Vendor/Module/Helper/Data.php and you need to call helper function from your theme's list.phtml file app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml

            – amitshree
            Jan 21 at 11:44














          0












          0








          0







          Using a static block it is not possible. Though you can achieve it as described below.



          You should create a helper class to get current category and it's sub-categories.



          <?php
          namespace VendorModuleHelper;
          use MagentoFrameworkAppHelperAbstractHelper;

          class Data extends AbstractHelper
          {

          protected $_registry;
          protected $_categoryRepository;

          public function __construct(MagentoFrameworkRegistry $registry, MagentoCatalogModelCategoryRepository $categoryRepository)
          {
          $this->_registry = $registry;
          $this->_categoryRepository = $categoryRepository;
          }

          public function getCurrentCategoryId()
          {
          return $this->_registry->registry('current_category')->getId();
          }
          public function getSubcategory()
          {
          $parent_category_id = $this->getCurrentCategoryId();
          $categoryObj = $this->_categoryRepository->get($parent_category_id);
          $subcategories = $categoryObj->getChildrenCategories();
          return $subcategories;
          }
          }


          Now in app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml which is used on category page use below code:



          $catHelper = $this->helper('VendorModuleHelperData');
          $subcategories = $catHelper->getSubcategory();
          foreach($subcategories as $subcategorie) {
          echo ' --> '.$subcategorie->getName().'<br/>';
          }


          Note: You should also add validation to check whether current category has a sub-category or not.






          share|improve this answer















          Using a static block it is not possible. Though you can achieve it as described below.



          You should create a helper class to get current category and it's sub-categories.



          <?php
          namespace VendorModuleHelper;
          use MagentoFrameworkAppHelperAbstractHelper;

          class Data extends AbstractHelper
          {

          protected $_registry;
          protected $_categoryRepository;

          public function __construct(MagentoFrameworkRegistry $registry, MagentoCatalogModelCategoryRepository $categoryRepository)
          {
          $this->_registry = $registry;
          $this->_categoryRepository = $categoryRepository;
          }

          public function getCurrentCategoryId()
          {
          return $this->_registry->registry('current_category')->getId();
          }
          public function getSubcategory()
          {
          $parent_category_id = $this->getCurrentCategoryId();
          $categoryObj = $this->_categoryRepository->get($parent_category_id);
          $subcategories = $categoryObj->getChildrenCategories();
          return $subcategories;
          }
          }


          Now in app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml which is used on category page use below code:



          $catHelper = $this->helper('VendorModuleHelperData');
          $subcategories = $catHelper->getSubcategory();
          foreach($subcategories as $subcategorie) {
          echo ' --> '.$subcategorie->getName().'<br/>';
          }


          Note: You should also add validation to check whether current category has a sub-category or not.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 2 days ago









          Teja Bhagavan Kollepara

          2,94841847




          2,94841847










          answered Jan 21 at 10:35









          amitshreeamitshree

          3,058103777




          3,058103777













          • Please add the path where i should create this code

            – Teja Bhagavan Kollepara
            Jan 21 at 11:38











          • Helper code will go to app/code/Vendor/Module/Helper/Data.php and you need to call helper function from your theme's list.phtml file app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml

            – amitshree
            Jan 21 at 11:44



















          • Please add the path where i should create this code

            – Teja Bhagavan Kollepara
            Jan 21 at 11:38











          • Helper code will go to app/code/Vendor/Module/Helper/Data.php and you need to call helper function from your theme's list.phtml file app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml

            – amitshree
            Jan 21 at 11:44

















          Please add the path where i should create this code

          – Teja Bhagavan Kollepara
          Jan 21 at 11:38





          Please add the path where i should create this code

          – Teja Bhagavan Kollepara
          Jan 21 at 11:38













          Helper code will go to app/code/Vendor/Module/Helper/Data.php and you need to call helper function from your theme's list.phtml file app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml

          – amitshree
          Jan 21 at 11:44





          Helper code will go to app/code/Vendor/Module/Helper/Data.php and you need to call helper function from your theme's list.phtml file app/design/frontend/Vendor/Theme/Magento_Catalog/templates/product/list.phtml

          – amitshree
          Jan 21 at 11: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%2f258540%2fmagento-2-how-to-show-sub-categories-on-static-block%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

          Polycentropodidae

          Magento 2 Error message: Invalid state change requested

          Paulmy