Magento 1.9 template file calling from base and not from my custom theme Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Customer create account template comes from path “persistent/”. Why is that?Magento Custom theme template file is not callingHow to Add External Link to Customer Account Navigation?Add Shipping/Tax Estimator to WishlistCan possible to load only catalog/product/view.phtml in custom moduleoverride payment/methods.phtml in custom extensionBlock Template not LoadingHow to get the breadcrumbs in my custom module phtml file?Create a static block using a custom module Magento 1.9Magento 1.9.3.6- Performance Suddenly Decreased

Is there any word for a place full of confusion?

The Nth Gryphon Number

How does light 'choose' between wave and particle behaviour?

Trademark violation for app?

What is the chair depicted in Cesare Maccari's 1889 painting "Cicerone denuncia Catilina"?

What does Turing mean by this statement?

What's the point of the test set?

How to report t statistic from R

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

Drawing spherical mirrors

Antipodal Land Area Calculation

What is the meaning of 'breadth' in breadth first search?

How much damage would a cupful of neutron star matter do to the Earth?

1-probability to calculate two events in a row

How often does castling occur in grandmaster games?

Do wooden building fires get hotter than 600°C?

How do I find out the mythology and history of my Fortress?

Project Euler #1 in C++

How do living politicians protect their readily obtainable signatures from misuse?

How were pictures turned from film to a big picture in a picture frame before digital scanning?

Did any compiler fully use 80-bit floating point?

Significance of Cersei's obsession with elephants?

What are the discoveries that have been possible with the rejection of positivism?

What would you call this weird metallic apparatus that allows you to lift people?



Magento 1.9 template file calling from base and not from my custom theme



Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Customer create account template comes from path “persistent/”. Why is that?Magento Custom theme template file is not callingHow to Add External Link to Customer Account Navigation?Add Shipping/Tax Estimator to WishlistCan possible to load only catalog/product/view.phtml in custom moduleoverride payment/methods.phtml in custom extensionBlock Template not LoadingHow to get the breadcrumbs in my custom module phtml file?Create a static block using a custom module Magento 1.9Magento 1.9.3.6- Performance Suddenly Decreased



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















In Magento 1.9 I have created my custom theme.



Also, I have created one new module in the 'local' code pool.



Everything workes fine but the template files are loading from the base like



frontend/base/default/template/training/customer/view.phtml


it should be load from



frontend/allure/default/template/training/customer/view.phtml


this is my layout.xml



app/design/frontend/allure/dream/layout/training.xml

<?xml version="1.0" ?>
<layout version="0.1.0">

<customer_account>
<reference name="customer_account_navigation">
<action method="addLink" translate="label" module="training">
<name>training</name>
<path>training/customer/view</path>
<label>Training</label>
</action>
</reference>
</customer_account>

<training_customer_view>
<update handle="customer_account"/>
<reference name="content">
<block type="training/customer" name="view.training" template="training/customer/view.phtml"/>
</reference>
</training_customer_view>

</layout>


If anyone knows why this is happening>










share|improve this question






















  • is this the custom theme is applying to current store?

    – Jigs Parmar
    2 days ago

















0















In Magento 1.9 I have created my custom theme.



Also, I have created one new module in the 'local' code pool.



Everything workes fine but the template files are loading from the base like



frontend/base/default/template/training/customer/view.phtml


it should be load from



frontend/allure/default/template/training/customer/view.phtml


this is my layout.xml



app/design/frontend/allure/dream/layout/training.xml

<?xml version="1.0" ?>
<layout version="0.1.0">

<customer_account>
<reference name="customer_account_navigation">
<action method="addLink" translate="label" module="training">
<name>training</name>
<path>training/customer/view</path>
<label>Training</label>
</action>
</reference>
</customer_account>

<training_customer_view>
<update handle="customer_account"/>
<reference name="content">
<block type="training/customer" name="view.training" template="training/customer/view.phtml"/>
</reference>
</training_customer_view>

</layout>


If anyone knows why this is happening>










share|improve this question






















  • is this the custom theme is applying to current store?

    – Jigs Parmar
    2 days ago













0












0








0








In Magento 1.9 I have created my custom theme.



Also, I have created one new module in the 'local' code pool.



Everything workes fine but the template files are loading from the base like



frontend/base/default/template/training/customer/view.phtml


it should be load from



frontend/allure/default/template/training/customer/view.phtml


this is my layout.xml



app/design/frontend/allure/dream/layout/training.xml

<?xml version="1.0" ?>
<layout version="0.1.0">

<customer_account>
<reference name="customer_account_navigation">
<action method="addLink" translate="label" module="training">
<name>training</name>
<path>training/customer/view</path>
<label>Training</label>
</action>
</reference>
</customer_account>

<training_customer_view>
<update handle="customer_account"/>
<reference name="content">
<block type="training/customer" name="view.training" template="training/customer/view.phtml"/>
</reference>
</training_customer_view>

</layout>


If anyone knows why this is happening>










share|improve this question














In Magento 1.9 I have created my custom theme.



Also, I have created one new module in the 'local' code pool.



Everything workes fine but the template files are loading from the base like



frontend/base/default/template/training/customer/view.phtml


it should be load from



frontend/allure/default/template/training/customer/view.phtml


this is my layout.xml



app/design/frontend/allure/dream/layout/training.xml

<?xml version="1.0" ?>
<layout version="0.1.0">

<customer_account>
<reference name="customer_account_navigation">
<action method="addLink" translate="label" module="training">
<name>training</name>
<path>training/customer/view</path>
<label>Training</label>
</action>
</reference>
</customer_account>

<training_customer_view>
<update handle="customer_account"/>
<reference name="content">
<block type="training/customer" name="view.training" template="training/customer/view.phtml"/>
</reference>
</training_customer_view>

</layout>


If anyone knows why this is happening>







magento-1.9 template






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 2 days ago









Smita KagwadeSmita Kagwade

928




928












  • is this the custom theme is applying to current store?

    – Jigs Parmar
    2 days ago

















  • is this the custom theme is applying to current store?

    – Jigs Parmar
    2 days ago
















is this the custom theme is applying to current store?

– Jigs Parmar
2 days ago





is this the custom theme is applying to current store?

– Jigs Parmar
2 days ago










1 Answer
1






active

oldest

votes


















0














place the phtml file in frontend/allure/dream/template/training/customer/view.phtml



i think the problem is that you put the phtml file and xml file in diffrent sub theme folder






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%2f270436%2fmagento-1-9-template-file-calling-from-base-and-not-from-my-custom-theme%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














    place the phtml file in frontend/allure/dream/template/training/customer/view.phtml



    i think the problem is that you put the phtml file and xml file in diffrent sub theme folder






    share|improve this answer



























      0














      place the phtml file in frontend/allure/dream/template/training/customer/view.phtml



      i think the problem is that you put the phtml file and xml file in diffrent sub theme folder






      share|improve this answer

























        0












        0








        0







        place the phtml file in frontend/allure/dream/template/training/customer/view.phtml



        i think the problem is that you put the phtml file and xml file in diffrent sub theme folder






        share|improve this answer













        place the phtml file in frontend/allure/dream/template/training/customer/view.phtml



        i think the problem is that you put the phtml file and xml file in diffrent sub theme folder







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 2 days ago









        Jigs ParmarJigs Parmar

        1,160423




        1,160423



























            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%2f270436%2fmagento-1-9-template-file-calling-from-base-and-not-from-my-custom-theme%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

            Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

            Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

            Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form