Layout Not getting Called In Custom ModuleMagento new custom block moduleHow to check whether a block exist (...

Translation needed for 130 years old church document

Count repetitions of an array

Why avoid shared user accounts?

Square Root Distance from Integers

Not a Long-Winded Riddle

What is the industry term for house wiring diagrams?

Existence of Riemann surface, holomorphic maps

Best way to strengthen a wheel?

How do I prevent a homebrew Grappling Hook feature from trivializing Tomb of Annihilation?

What senses are available to a corpse subjected to a Speak with Dead spell?

Boss asked me to sign a resignation paper without a date on it along with my new contract

Microtypography protrusion with Polish quotation marks

Is there a file that always exists and a 'normal' user can't lstat it?

What does an unprocessed RAW file look like?

How vim overwrites readonly mode?

Why is 'diphthong' pronounced the way it is?

Why zero tolerance on nudity in space?

Calculate the true diameter of stars from photographic plate

How would an AI self awareness kill switch work?

Coworker asking me to not bring cakes due to self control issue. What should I do?

Current across a wire with zero potential difference

Is there an expiration time for free invocations?

How can 若い時 and ずっと work in this sentence?

Can we "borrow" our answers to populate our own websites?



Layout Not getting Called In Custom Module


Magento new custom block moduleHow to check whether a block exist ( based on its type )custom module layout not workingCustom layout not loading for custom moduleCreate Custom layout moduleCustom phtml not getting called from the Block magentoMagento 1.9 custom module observer is not getting calledMagento 2.1.3 Module layout not being calledCustom Module layout xml not working?Conditionally load js based on cms static block type













5















I have developed a custom plugin that used to add a custom made shipping method. For that custom made shipping method I had override the existing templates. It was working fine but changing the server has caused some problems and now my layout files are not getting called(i.e my html is not getting loaded.). However, I have deployed the same code on localhost and everything is working as it should be.



I have enabled the template hints and there I can see that on localhost my files are getting called but on live the default templates is getting called. I have compared the files for any changes but everything is the same except the behavior. I am attaching the respective xmls here along with this code.




appcodelocalExcellencePickupetcconfig.xml




<?xml version="1.0"?>
<config>
<modules>
<Excellence_Pickup>
<version>0.1.0</version>
</Excellence_Pickup>
</modules>
<frontend>
<routers>
<pickup>
<use>standard</use>
<args>
<module>Excellence_Pickup</module>
<frontName>pickup</frontName>
</args>
</pickup>
</routers>
<layout>
<updates>
<pickup>
<file>pickup.xml</file>
</pickup>
</updates>
</layout>
</frontend>
<global>
<events>
<checkout_controller_onepage_save_shipping_method>
<observers>
<checkout_controller_onepage_save_shipping_method>
<type>model</type>
<class>pickup/observer</class>
<method>saveShippingMethod</method>
</checkout_controller_onepage_save_shipping_method>
</observers>
</checkout_controller_onepage_save_shipping_method>
<sales_model_service_quote_submit_after>
<observers>
<checkout_controller_onepage_save_shipping_method>
<type>model</type>
<class>pickup/observer</class>
<method>saveOrderAfter</method>
</checkout_controller_onepage_save_shipping_method>
</observers>
</sales_model_service_quote_submit_after>
<sales_order_load_after>
<observers>
<sales_order_load_after>
<type>model</type>
<class>pickup/observer</class>
<method>loadOrderAfter</method>
</sales_order_load_after>
</observers>
</sales_order_load_after>
<sales_quote_load_after>
<observers>
<sales_quote_load_after>
<type>model</type>
<class>pickup/observer</class>
<method>loadQuoteAfter</method>
</sales_quote_load_after>
</observers>
</sales_quote_load_after>
</events>
<models>
<sales>
<rewrite>
<order>Excellence_Pickup_Model_Sales_Order</order>
</rewrite>
</sales>
<pickup>
<class>Excellence_Pickup_Model</class>
<resourceModel>pickup_mysql4</resourceModel>
</pickup>
<pickup_mysql4>
<class>Excellence_Pickup_Model_Mysql4</class>
<entities>
<pickup>
<table>order_shipping_pickup</table>
</pickup>
</entities>
</pickup_mysql4>
</models>
<resources>
<pickup_setup>
<setup>
<module>Excellence_Pickup</module>
</setup>
<connection>
<use>core_setup</use>
</connection>
</pickup_setup>
<pickup_write>
<connection>
<use>core_write</use>
</connection>
</pickup_write>
<pickup_read>
<connection>
<use>core_read</use>
</connection>
</pickup_read>
</resources>
<blocks>
<pickup>
<class>Excellence_Pickup_Block</class>
</pickup>
</blocks>
<helpers>
<pickup>
<class>Excellence_Pickup_Helper</class>
</pickup>
</helpers>
</global>
<default>
<carriers>
<pickup>
<active>1</active>
<model>pickup/carrier_pickup</model>
<title>Self Pickup</title>
<name>Store Pickup</name>
<price>0</price>
<specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
</pickup>
</carriers>
</default>





appdesignfrontendbasedefaultlayoutpickup.xml




<?xml version="1.0"?>
<layout version="0.1.0">
<checkout_onepage_index>
<reference name='head'>
<reference name="head">
<action method="addItem"><type>js</type><name>pickup/noconflict.js</name></action>
</reference>
</reference>
<reference name='checkout.onepage.shipping_method.available'>
<action method='setTemplate'><template>pickup/checkout/onepage/shipping_method/available.phtml</template></action>
</reference>
</checkout_onepage_index>
<checkout_onepage_shippingmethod>
<reference name='root'>
<action method='setTemplate'><template>pickup/checkout/onepage/shipping_method/available.phtml</template></action>
</reference>
</checkout_onepage_shippingmethod>
</layout>









share|improve this question

















This question has an open bounty worth +50
reputation from umair.ashfr ending in 7 days.


Looking for an answer drawing from credible and/or official sources.












  • 1





    Have you tried clearing the configuration cache from the admin panel?

    – Jafer.balti
    4 hours ago











  • Yes I have cleared the cache from admin panel, also all the caches are disabled by me

    – umair.ashfr
    4 hours ago






  • 1





    have you checked that all the .htaccess files are in places?

    – Andrea D'Urso
    2 hours ago











  • no I haven't, but what are you suggesting here?

    – umair.ashfr
    2 hours ago











  • If the code is exactly the same and it's working on local and the issue happened after moving server maybe your files are being not served/blocked because of a misconfigured or missing .htaccess file; are you getting error in your console? Also have you checked that you assigned the right theme from the admin configuration? The files are the same but maybe the DB data are different

    – Andrea D'Urso
    1 hour ago
















5















I have developed a custom plugin that used to add a custom made shipping method. For that custom made shipping method I had override the existing templates. It was working fine but changing the server has caused some problems and now my layout files are not getting called(i.e my html is not getting loaded.). However, I have deployed the same code on localhost and everything is working as it should be.



I have enabled the template hints and there I can see that on localhost my files are getting called but on live the default templates is getting called. I have compared the files for any changes but everything is the same except the behavior. I am attaching the respective xmls here along with this code.




appcodelocalExcellencePickupetcconfig.xml




<?xml version="1.0"?>
<config>
<modules>
<Excellence_Pickup>
<version>0.1.0</version>
</Excellence_Pickup>
</modules>
<frontend>
<routers>
<pickup>
<use>standard</use>
<args>
<module>Excellence_Pickup</module>
<frontName>pickup</frontName>
</args>
</pickup>
</routers>
<layout>
<updates>
<pickup>
<file>pickup.xml</file>
</pickup>
</updates>
</layout>
</frontend>
<global>
<events>
<checkout_controller_onepage_save_shipping_method>
<observers>
<checkout_controller_onepage_save_shipping_method>
<type>model</type>
<class>pickup/observer</class>
<method>saveShippingMethod</method>
</checkout_controller_onepage_save_shipping_method>
</observers>
</checkout_controller_onepage_save_shipping_method>
<sales_model_service_quote_submit_after>
<observers>
<checkout_controller_onepage_save_shipping_method>
<type>model</type>
<class>pickup/observer</class>
<method>saveOrderAfter</method>
</checkout_controller_onepage_save_shipping_method>
</observers>
</sales_model_service_quote_submit_after>
<sales_order_load_after>
<observers>
<sales_order_load_after>
<type>model</type>
<class>pickup/observer</class>
<method>loadOrderAfter</method>
</sales_order_load_after>
</observers>
</sales_order_load_after>
<sales_quote_load_after>
<observers>
<sales_quote_load_after>
<type>model</type>
<class>pickup/observer</class>
<method>loadQuoteAfter</method>
</sales_quote_load_after>
</observers>
</sales_quote_load_after>
</events>
<models>
<sales>
<rewrite>
<order>Excellence_Pickup_Model_Sales_Order</order>
</rewrite>
</sales>
<pickup>
<class>Excellence_Pickup_Model</class>
<resourceModel>pickup_mysql4</resourceModel>
</pickup>
<pickup_mysql4>
<class>Excellence_Pickup_Model_Mysql4</class>
<entities>
<pickup>
<table>order_shipping_pickup</table>
</pickup>
</entities>
</pickup_mysql4>
</models>
<resources>
<pickup_setup>
<setup>
<module>Excellence_Pickup</module>
</setup>
<connection>
<use>core_setup</use>
</connection>
</pickup_setup>
<pickup_write>
<connection>
<use>core_write</use>
</connection>
</pickup_write>
<pickup_read>
<connection>
<use>core_read</use>
</connection>
</pickup_read>
</resources>
<blocks>
<pickup>
<class>Excellence_Pickup_Block</class>
</pickup>
</blocks>
<helpers>
<pickup>
<class>Excellence_Pickup_Helper</class>
</pickup>
</helpers>
</global>
<default>
<carriers>
<pickup>
<active>1</active>
<model>pickup/carrier_pickup</model>
<title>Self Pickup</title>
<name>Store Pickup</name>
<price>0</price>
<specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
</pickup>
</carriers>
</default>





appdesignfrontendbasedefaultlayoutpickup.xml




<?xml version="1.0"?>
<layout version="0.1.0">
<checkout_onepage_index>
<reference name='head'>
<reference name="head">
<action method="addItem"><type>js</type><name>pickup/noconflict.js</name></action>
</reference>
</reference>
<reference name='checkout.onepage.shipping_method.available'>
<action method='setTemplate'><template>pickup/checkout/onepage/shipping_method/available.phtml</template></action>
</reference>
</checkout_onepage_index>
<checkout_onepage_shippingmethod>
<reference name='root'>
<action method='setTemplate'><template>pickup/checkout/onepage/shipping_method/available.phtml</template></action>
</reference>
</checkout_onepage_shippingmethod>
</layout>









share|improve this question

















This question has an open bounty worth +50
reputation from umair.ashfr ending in 7 days.


Looking for an answer drawing from credible and/or official sources.












  • 1





    Have you tried clearing the configuration cache from the admin panel?

    – Jafer.balti
    4 hours ago











  • Yes I have cleared the cache from admin panel, also all the caches are disabled by me

    – umair.ashfr
    4 hours ago






  • 1





    have you checked that all the .htaccess files are in places?

    – Andrea D'Urso
    2 hours ago











  • no I haven't, but what are you suggesting here?

    – umair.ashfr
    2 hours ago











  • If the code is exactly the same and it's working on local and the issue happened after moving server maybe your files are being not served/blocked because of a misconfigured or missing .htaccess file; are you getting error in your console? Also have you checked that you assigned the right theme from the admin configuration? The files are the same but maybe the DB data are different

    – Andrea D'Urso
    1 hour ago














5












5








5








I have developed a custom plugin that used to add a custom made shipping method. For that custom made shipping method I had override the existing templates. It was working fine but changing the server has caused some problems and now my layout files are not getting called(i.e my html is not getting loaded.). However, I have deployed the same code on localhost and everything is working as it should be.



I have enabled the template hints and there I can see that on localhost my files are getting called but on live the default templates is getting called. I have compared the files for any changes but everything is the same except the behavior. I am attaching the respective xmls here along with this code.




appcodelocalExcellencePickupetcconfig.xml




<?xml version="1.0"?>
<config>
<modules>
<Excellence_Pickup>
<version>0.1.0</version>
</Excellence_Pickup>
</modules>
<frontend>
<routers>
<pickup>
<use>standard</use>
<args>
<module>Excellence_Pickup</module>
<frontName>pickup</frontName>
</args>
</pickup>
</routers>
<layout>
<updates>
<pickup>
<file>pickup.xml</file>
</pickup>
</updates>
</layout>
</frontend>
<global>
<events>
<checkout_controller_onepage_save_shipping_method>
<observers>
<checkout_controller_onepage_save_shipping_method>
<type>model</type>
<class>pickup/observer</class>
<method>saveShippingMethod</method>
</checkout_controller_onepage_save_shipping_method>
</observers>
</checkout_controller_onepage_save_shipping_method>
<sales_model_service_quote_submit_after>
<observers>
<checkout_controller_onepage_save_shipping_method>
<type>model</type>
<class>pickup/observer</class>
<method>saveOrderAfter</method>
</checkout_controller_onepage_save_shipping_method>
</observers>
</sales_model_service_quote_submit_after>
<sales_order_load_after>
<observers>
<sales_order_load_after>
<type>model</type>
<class>pickup/observer</class>
<method>loadOrderAfter</method>
</sales_order_load_after>
</observers>
</sales_order_load_after>
<sales_quote_load_after>
<observers>
<sales_quote_load_after>
<type>model</type>
<class>pickup/observer</class>
<method>loadQuoteAfter</method>
</sales_quote_load_after>
</observers>
</sales_quote_load_after>
</events>
<models>
<sales>
<rewrite>
<order>Excellence_Pickup_Model_Sales_Order</order>
</rewrite>
</sales>
<pickup>
<class>Excellence_Pickup_Model</class>
<resourceModel>pickup_mysql4</resourceModel>
</pickup>
<pickup_mysql4>
<class>Excellence_Pickup_Model_Mysql4</class>
<entities>
<pickup>
<table>order_shipping_pickup</table>
</pickup>
</entities>
</pickup_mysql4>
</models>
<resources>
<pickup_setup>
<setup>
<module>Excellence_Pickup</module>
</setup>
<connection>
<use>core_setup</use>
</connection>
</pickup_setup>
<pickup_write>
<connection>
<use>core_write</use>
</connection>
</pickup_write>
<pickup_read>
<connection>
<use>core_read</use>
</connection>
</pickup_read>
</resources>
<blocks>
<pickup>
<class>Excellence_Pickup_Block</class>
</pickup>
</blocks>
<helpers>
<pickup>
<class>Excellence_Pickup_Helper</class>
</pickup>
</helpers>
</global>
<default>
<carriers>
<pickup>
<active>1</active>
<model>pickup/carrier_pickup</model>
<title>Self Pickup</title>
<name>Store Pickup</name>
<price>0</price>
<specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
</pickup>
</carriers>
</default>





appdesignfrontendbasedefaultlayoutpickup.xml




<?xml version="1.0"?>
<layout version="0.1.0">
<checkout_onepage_index>
<reference name='head'>
<reference name="head">
<action method="addItem"><type>js</type><name>pickup/noconflict.js</name></action>
</reference>
</reference>
<reference name='checkout.onepage.shipping_method.available'>
<action method='setTemplate'><template>pickup/checkout/onepage/shipping_method/available.phtml</template></action>
</reference>
</checkout_onepage_index>
<checkout_onepage_shippingmethod>
<reference name='root'>
<action method='setTemplate'><template>pickup/checkout/onepage/shipping_method/available.phtml</template></action>
</reference>
</checkout_onepage_shippingmethod>
</layout>









share|improve this question
















I have developed a custom plugin that used to add a custom made shipping method. For that custom made shipping method I had override the existing templates. It was working fine but changing the server has caused some problems and now my layout files are not getting called(i.e my html is not getting loaded.). However, I have deployed the same code on localhost and everything is working as it should be.



I have enabled the template hints and there I can see that on localhost my files are getting called but on live the default templates is getting called. I have compared the files for any changes but everything is the same except the behavior. I am attaching the respective xmls here along with this code.




appcodelocalExcellencePickupetcconfig.xml




<?xml version="1.0"?>
<config>
<modules>
<Excellence_Pickup>
<version>0.1.0</version>
</Excellence_Pickup>
</modules>
<frontend>
<routers>
<pickup>
<use>standard</use>
<args>
<module>Excellence_Pickup</module>
<frontName>pickup</frontName>
</args>
</pickup>
</routers>
<layout>
<updates>
<pickup>
<file>pickup.xml</file>
</pickup>
</updates>
</layout>
</frontend>
<global>
<events>
<checkout_controller_onepage_save_shipping_method>
<observers>
<checkout_controller_onepage_save_shipping_method>
<type>model</type>
<class>pickup/observer</class>
<method>saveShippingMethod</method>
</checkout_controller_onepage_save_shipping_method>
</observers>
</checkout_controller_onepage_save_shipping_method>
<sales_model_service_quote_submit_after>
<observers>
<checkout_controller_onepage_save_shipping_method>
<type>model</type>
<class>pickup/observer</class>
<method>saveOrderAfter</method>
</checkout_controller_onepage_save_shipping_method>
</observers>
</sales_model_service_quote_submit_after>
<sales_order_load_after>
<observers>
<sales_order_load_after>
<type>model</type>
<class>pickup/observer</class>
<method>loadOrderAfter</method>
</sales_order_load_after>
</observers>
</sales_order_load_after>
<sales_quote_load_after>
<observers>
<sales_quote_load_after>
<type>model</type>
<class>pickup/observer</class>
<method>loadQuoteAfter</method>
</sales_quote_load_after>
</observers>
</sales_quote_load_after>
</events>
<models>
<sales>
<rewrite>
<order>Excellence_Pickup_Model_Sales_Order</order>
</rewrite>
</sales>
<pickup>
<class>Excellence_Pickup_Model</class>
<resourceModel>pickup_mysql4</resourceModel>
</pickup>
<pickup_mysql4>
<class>Excellence_Pickup_Model_Mysql4</class>
<entities>
<pickup>
<table>order_shipping_pickup</table>
</pickup>
</entities>
</pickup_mysql4>
</models>
<resources>
<pickup_setup>
<setup>
<module>Excellence_Pickup</module>
</setup>
<connection>
<use>core_setup</use>
</connection>
</pickup_setup>
<pickup_write>
<connection>
<use>core_write</use>
</connection>
</pickup_write>
<pickup_read>
<connection>
<use>core_read</use>
</connection>
</pickup_read>
</resources>
<blocks>
<pickup>
<class>Excellence_Pickup_Block</class>
</pickup>
</blocks>
<helpers>
<pickup>
<class>Excellence_Pickup_Helper</class>
</pickup>
</helpers>
</global>
<default>
<carriers>
<pickup>
<active>1</active>
<model>pickup/carrier_pickup</model>
<title>Self Pickup</title>
<name>Store Pickup</name>
<price>0</price>
<specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
</pickup>
</carriers>
</default>





appdesignfrontendbasedefaultlayoutpickup.xml




<?xml version="1.0"?>
<layout version="0.1.0">
<checkout_onepage_index>
<reference name='head'>
<reference name="head">
<action method="addItem"><type>js</type><name>pickup/noconflict.js</name></action>
</reference>
</reference>
<reference name='checkout.onepage.shipping_method.available'>
<action method='setTemplate'><template>pickup/checkout/onepage/shipping_method/available.phtml</template></action>
</reference>
</checkout_onepage_index>
<checkout_onepage_shippingmethod>
<reference name='root'>
<action method='setTemplate'><template>pickup/checkout/onepage/shipping_method/available.phtml</template></action>
</reference>
</checkout_onepage_shippingmethod>
</layout>






module layout magento-1.9.2.0






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 4 hours ago









Marius

166k28317676




166k28317676










asked Feb 23 at 12:19









umair.ashfrumair.ashfr

976




976






This question has an open bounty worth +50
reputation from umair.ashfr ending in 7 days.


Looking for an answer drawing from credible and/or official sources.








This question has an open bounty worth +50
reputation from umair.ashfr ending in 7 days.


Looking for an answer drawing from credible and/or official sources.










  • 1





    Have you tried clearing the configuration cache from the admin panel?

    – Jafer.balti
    4 hours ago











  • Yes I have cleared the cache from admin panel, also all the caches are disabled by me

    – umair.ashfr
    4 hours ago






  • 1





    have you checked that all the .htaccess files are in places?

    – Andrea D'Urso
    2 hours ago











  • no I haven't, but what are you suggesting here?

    – umair.ashfr
    2 hours ago











  • If the code is exactly the same and it's working on local and the issue happened after moving server maybe your files are being not served/blocked because of a misconfigured or missing .htaccess file; are you getting error in your console? Also have you checked that you assigned the right theme from the admin configuration? The files are the same but maybe the DB data are different

    – Andrea D'Urso
    1 hour ago














  • 1





    Have you tried clearing the configuration cache from the admin panel?

    – Jafer.balti
    4 hours ago











  • Yes I have cleared the cache from admin panel, also all the caches are disabled by me

    – umair.ashfr
    4 hours ago






  • 1





    have you checked that all the .htaccess files are in places?

    – Andrea D'Urso
    2 hours ago











  • no I haven't, but what are you suggesting here?

    – umair.ashfr
    2 hours ago











  • If the code is exactly the same and it's working on local and the issue happened after moving server maybe your files are being not served/blocked because of a misconfigured or missing .htaccess file; are you getting error in your console? Also have you checked that you assigned the right theme from the admin configuration? The files are the same but maybe the DB data are different

    – Andrea D'Urso
    1 hour ago








1




1





Have you tried clearing the configuration cache from the admin panel?

– Jafer.balti
4 hours ago





Have you tried clearing the configuration cache from the admin panel?

– Jafer.balti
4 hours ago













Yes I have cleared the cache from admin panel, also all the caches are disabled by me

– umair.ashfr
4 hours ago





Yes I have cleared the cache from admin panel, also all the caches are disabled by me

– umair.ashfr
4 hours ago




1




1





have you checked that all the .htaccess files are in places?

– Andrea D'Urso
2 hours ago





have you checked that all the .htaccess files are in places?

– Andrea D'Urso
2 hours ago













no I haven't, but what are you suggesting here?

– umair.ashfr
2 hours ago





no I haven't, but what are you suggesting here?

– umair.ashfr
2 hours ago













If the code is exactly the same and it's working on local and the issue happened after moving server maybe your files are being not served/blocked because of a misconfigured or missing .htaccess file; are you getting error in your console? Also have you checked that you assigned the right theme from the admin configuration? The files are the same but maybe the DB data are different

– Andrea D'Urso
1 hour ago





If the code is exactly the same and it's working on local and the issue happened after moving server maybe your files are being not served/blocked because of a misconfigured or missing .htaccess file; are you getting error in your console? Also have you checked that you assigned the right theme from the admin configuration? The files are the same but maybe the DB data are different

– Andrea D'Urso
1 hour ago










0






active

oldest

votes











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%2f263135%2flayout-not-getting-called-in-custom-module%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















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%2f263135%2flayout-not-getting-called-in-custom-module%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

“%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

夢乃愛華...