Load custom block in category list page magento2












1















I am trying to add custom template file in category list page.



app/design/frontend/Vendor/Theme/Magento_Catalog/layout/catalog_category_view.xml



<referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Magento_Catalog::product/myCustomFile.phtml" />
</referenceContainer>


This is loading the template in list page.



But i need to load it from my custom module.



I used below code to implement it.



app/code/Vendor/Module/view/frontend/layout/module_index_index.xml



 <referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" />
</referenceContainer>


This is not loading my template in category list page. After using layout update also.



Can anyone help me on this please










share|improve this question























  • Can you try to add it at app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml ?

    – amitshree
    Dec 31 '18 at 10:23











  • @amitshree, yes i need to add custom block in category page. yes tried it, that didn't work

    – jafar pinjar
    Dec 31 '18 at 10:36











  • This should work. Check here magento.stackexchange.com/a/181719/9169

    – amitshree
    Dec 31 '18 at 10:40











  • @amitshree, yes now it worked, thanks, the content of that phtml is like below, can we implement it there, magento.stackexchange.com/questions/256230/…

    – jafar pinjar
    Dec 31 '18 at 10:49











  • Yes you can do that with some customisation. You need to call current category and sub-categories and render them as per your need.

    – amitshree
    Dec 31 '18 at 10:53
















1















I am trying to add custom template file in category list page.



app/design/frontend/Vendor/Theme/Magento_Catalog/layout/catalog_category_view.xml



<referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Magento_Catalog::product/myCustomFile.phtml" />
</referenceContainer>


This is loading the template in list page.



But i need to load it from my custom module.



I used below code to implement it.



app/code/Vendor/Module/view/frontend/layout/module_index_index.xml



 <referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" />
</referenceContainer>


This is not loading my template in category list page. After using layout update also.



Can anyone help me on this please










share|improve this question























  • Can you try to add it at app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml ?

    – amitshree
    Dec 31 '18 at 10:23











  • @amitshree, yes i need to add custom block in category page. yes tried it, that didn't work

    – jafar pinjar
    Dec 31 '18 at 10:36











  • This should work. Check here magento.stackexchange.com/a/181719/9169

    – amitshree
    Dec 31 '18 at 10:40











  • @amitshree, yes now it worked, thanks, the content of that phtml is like below, can we implement it there, magento.stackexchange.com/questions/256230/…

    – jafar pinjar
    Dec 31 '18 at 10:49











  • Yes you can do that with some customisation. You need to call current category and sub-categories and render them as per your need.

    – amitshree
    Dec 31 '18 at 10:53














1












1








1








I am trying to add custom template file in category list page.



app/design/frontend/Vendor/Theme/Magento_Catalog/layout/catalog_category_view.xml



<referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Magento_Catalog::product/myCustomFile.phtml" />
</referenceContainer>


This is loading the template in list page.



But i need to load it from my custom module.



I used below code to implement it.



app/code/Vendor/Module/view/frontend/layout/module_index_index.xml



 <referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" />
</referenceContainer>


This is not loading my template in category list page. After using layout update also.



Can anyone help me on this please










share|improve this question














I am trying to add custom template file in category list page.



app/design/frontend/Vendor/Theme/Magento_Catalog/layout/catalog_category_view.xml



<referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Magento_Catalog::product/myCustomFile.phtml" />
</referenceContainer>


This is loading the template in list page.



But i need to load it from my custom module.



I used below code to implement it.



app/code/Vendor/Module/view/frontend/layout/module_index_index.xml



 <referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" />
</referenceContainer>


This is not loading my template in category list page. After using layout update also.



Can anyone help me on this please







magento2 layout category-listing






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 31 '18 at 10:06









jafar pinjarjafar pinjar

576412




576412













  • Can you try to add it at app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml ?

    – amitshree
    Dec 31 '18 at 10:23











  • @amitshree, yes i need to add custom block in category page. yes tried it, that didn't work

    – jafar pinjar
    Dec 31 '18 at 10:36











  • This should work. Check here magento.stackexchange.com/a/181719/9169

    – amitshree
    Dec 31 '18 at 10:40











  • @amitshree, yes now it worked, thanks, the content of that phtml is like below, can we implement it there, magento.stackexchange.com/questions/256230/…

    – jafar pinjar
    Dec 31 '18 at 10:49











  • Yes you can do that with some customisation. You need to call current category and sub-categories and render them as per your need.

    – amitshree
    Dec 31 '18 at 10:53



















  • Can you try to add it at app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml ?

    – amitshree
    Dec 31 '18 at 10:23











  • @amitshree, yes i need to add custom block in category page. yes tried it, that didn't work

    – jafar pinjar
    Dec 31 '18 at 10:36











  • This should work. Check here magento.stackexchange.com/a/181719/9169

    – amitshree
    Dec 31 '18 at 10:40











  • @amitshree, yes now it worked, thanks, the content of that phtml is like below, can we implement it there, magento.stackexchange.com/questions/256230/…

    – jafar pinjar
    Dec 31 '18 at 10:49











  • Yes you can do that with some customisation. You need to call current category and sub-categories and render them as per your need.

    – amitshree
    Dec 31 '18 at 10:53

















Can you try to add it at app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml ?

– amitshree
Dec 31 '18 at 10:23





Can you try to add it at app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml ?

– amitshree
Dec 31 '18 at 10:23













@amitshree, yes i need to add custom block in category page. yes tried it, that didn't work

– jafar pinjar
Dec 31 '18 at 10:36





@amitshree, yes i need to add custom block in category page. yes tried it, that didn't work

– jafar pinjar
Dec 31 '18 at 10:36













This should work. Check here magento.stackexchange.com/a/181719/9169

– amitshree
Dec 31 '18 at 10:40





This should work. Check here magento.stackexchange.com/a/181719/9169

– amitshree
Dec 31 '18 at 10:40













@amitshree, yes now it worked, thanks, the content of that phtml is like below, can we implement it there, magento.stackexchange.com/questions/256230/…

– jafar pinjar
Dec 31 '18 at 10:49





@amitshree, yes now it worked, thanks, the content of that phtml is like below, can we implement it there, magento.stackexchange.com/questions/256230/…

– jafar pinjar
Dec 31 '18 at 10:49













Yes you can do that with some customisation. You need to call current category and sub-categories and render them as per your need.

– amitshree
Dec 31 '18 at 10:53





Yes you can do that with some customisation. You need to call current category and sub-categories and render them as per your need.

– amitshree
Dec 31 '18 at 10:53










2 Answers
2






active

oldest

votes


















2














create catalog_category_view.xml in your layout folder



app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml



<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<css src="Addify_ProductSold::css/sales_style.css"/>
</head>
<body>
<referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" before="-" />

</referenceBlock>
</body>
</page>





share|improve this answer
























  • it worked thanks

    – jafar pinjar
    Dec 31 '18 at 12:13











  • how to move this block outside the content, like before footer

    – jafar pinjar
    Jan 9 at 9:23



















1














You need to add code like below.



<?xml version="1.0"?>
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_ModuleName::product/myCustomFile.phtml" />
</referenceContainer>
</body>
</page>


Thanks






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%2f256243%2fload-custom-block-in-category-list-page-magento2%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    create catalog_category_view.xml in your layout folder



    app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml



    <?xml version="1.0"?>
    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <head>
    <css src="Addify_ProductSold::css/sales_style.css"/>
    </head>
    <body>
    <referenceContainer name="content">
    <block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" before="-" />

    </referenceBlock>
    </body>
    </page>





    share|improve this answer
























    • it worked thanks

      – jafar pinjar
      Dec 31 '18 at 12:13











    • how to move this block outside the content, like before footer

      – jafar pinjar
      Jan 9 at 9:23
















    2














    create catalog_category_view.xml in your layout folder



    app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml



    <?xml version="1.0"?>
    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <head>
    <css src="Addify_ProductSold::css/sales_style.css"/>
    </head>
    <body>
    <referenceContainer name="content">
    <block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" before="-" />

    </referenceBlock>
    </body>
    </page>





    share|improve this answer
























    • it worked thanks

      – jafar pinjar
      Dec 31 '18 at 12:13











    • how to move this block outside the content, like before footer

      – jafar pinjar
      Jan 9 at 9:23














    2












    2








    2







    create catalog_category_view.xml in your layout folder



    app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml



    <?xml version="1.0"?>
    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <head>
    <css src="Addify_ProductSold::css/sales_style.css"/>
    </head>
    <body>
    <referenceContainer name="content">
    <block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" before="-" />

    </referenceBlock>
    </body>
    </page>





    share|improve this answer













    create catalog_category_view.xml in your layout folder



    app/code/Vendor/Module/view/frontend/layout/catalog_category_view.xml



    <?xml version="1.0"?>
    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <head>
    <css src="Addify_ProductSold::css/sales_style.css"/>
    </head>
    <body>
    <referenceContainer name="content">
    <block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_Module::product/myCustomFile.phtml" before="-" />

    </referenceBlock>
    </body>
    </page>






    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Dec 31 '18 at 11:58









    AddifyAddify

    6995




    6995













    • it worked thanks

      – jafar pinjar
      Dec 31 '18 at 12:13











    • how to move this block outside the content, like before footer

      – jafar pinjar
      Jan 9 at 9:23



















    • it worked thanks

      – jafar pinjar
      Dec 31 '18 at 12:13











    • how to move this block outside the content, like before footer

      – jafar pinjar
      Jan 9 at 9:23

















    it worked thanks

    – jafar pinjar
    Dec 31 '18 at 12:13





    it worked thanks

    – jafar pinjar
    Dec 31 '18 at 12:13













    how to move this block outside the content, like before footer

    – jafar pinjar
    Jan 9 at 9:23





    how to move this block outside the content, like before footer

    – jafar pinjar
    Jan 9 at 9:23













    1














    You need to add code like below.



    <?xml version="1.0"?>
    <page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
    <referenceContainer name="content">
    <block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_ModuleName::product/myCustomFile.phtml" />
    </referenceContainer>
    </body>
    </page>


    Thanks






    share|improve this answer






























      1














      You need to add code like below.



      <?xml version="1.0"?>
      <page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
      <body>
      <referenceContainer name="content">
      <block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_ModuleName::product/myCustomFile.phtml" />
      </referenceContainer>
      </body>
      </page>


      Thanks






      share|improve this answer




























        1












        1








        1







        You need to add code like below.



        <?xml version="1.0"?>
        <page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
        <body>
        <referenceContainer name="content">
        <block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_ModuleName::product/myCustomFile.phtml" />
        </referenceContainer>
        </body>
        </page>


        Thanks






        share|improve this answer















        You need to add code like below.



        <?xml version="1.0"?>
        <page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
        <body>
        <referenceContainer name="content">
        <block class="MagentoFrameworkViewElementTemplate" name="custom.block" template="Vendor_ModuleName::product/myCustomFile.phtml" />
        </referenceContainer>
        </body>
        </page>


        Thanks







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Dec 31 '18 at 10:53









        Ashish Viradiya

        558420




        558420










        answered Dec 31 '18 at 10:47









        Sanket KulkarniSanket Kulkarni

        412




        412






























            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%2f256243%2fload-custom-block-in-category-list-page-magento2%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

            How do I know what Microsoft account the skydrive app is syncing to?

            Grease: Live!

            When does type information flow backwards in C++?