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;
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
add a comment |
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
is this the custom theme is applying to current store?
– Jigs Parmar
2 days ago
add a comment |
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
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
magento-1.9 template
asked 2 days ago
Smita KagwadeSmita Kagwade
928
928
is this the custom theme is applying to current store?
– Jigs Parmar
2 days ago
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
answered 2 days ago
Jigs ParmarJigs Parmar
1,160423
1,160423
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
is this the custom theme is applying to current store?
– Jigs Parmar
2 days ago