customize my dashboard in customer account?












0















I am customizing my dashboard panel in customer account. There are two things customer info and customer address.



However when I add the order we can see orders here, but in the dashboard in the magento_customer > frontend > dashboard



there are only two .phtmlfiles which we can be customized info and address.




  1. How I can customize the orders. Problem is orders are getting render at top but I want to render them in the last.


  2. How I can add the wish list in the my dashboard?











share|improve this question
















bumped to the homepage by Community 29 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Please specify Magento version to get better and specific answers.

    – Mohit Kumar Arora
    Oct 3 '17 at 16:29











  • Magento 2.1 i am using

    – tech_geek
    Oct 3 '17 at 17:37











  • I think you are using ultimo theme and wishlist already coming in dashboard panel on left on account page

    – Manoj Deswal
    Oct 4 '17 at 9:29











  • yeah but i want a small wishlist in the my dashboard also.

    – tech_geek
    Oct 4 '17 at 9:32
















0















I am customizing my dashboard panel in customer account. There are two things customer info and customer address.



However when I add the order we can see orders here, but in the dashboard in the magento_customer > frontend > dashboard



there are only two .phtmlfiles which we can be customized info and address.




  1. How I can customize the orders. Problem is orders are getting render at top but I want to render them in the last.


  2. How I can add the wish list in the my dashboard?











share|improve this question
















bumped to the homepage by Community 29 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.











  • 1





    Please specify Magento version to get better and specific answers.

    – Mohit Kumar Arora
    Oct 3 '17 at 16:29











  • Magento 2.1 i am using

    – tech_geek
    Oct 3 '17 at 17:37











  • I think you are using ultimo theme and wishlist already coming in dashboard panel on left on account page

    – Manoj Deswal
    Oct 4 '17 at 9:29











  • yeah but i want a small wishlist in the my dashboard also.

    – tech_geek
    Oct 4 '17 at 9:32














0












0








0


0






I am customizing my dashboard panel in customer account. There are two things customer info and customer address.



However when I add the order we can see orders here, but in the dashboard in the magento_customer > frontend > dashboard



there are only two .phtmlfiles which we can be customized info and address.




  1. How I can customize the orders. Problem is orders are getting render at top but I want to render them in the last.


  2. How I can add the wish list in the my dashboard?











share|improve this question
















I am customizing my dashboard panel in customer account. There are two things customer info and customer address.



However when I add the order we can see orders here, but in the dashboard in the magento_customer > frontend > dashboard



there are only two .phtmlfiles which we can be customized info and address.




  1. How I can customize the orders. Problem is orders are getting render at top but I want to render them in the last.


  2. How I can add the wish list in the my dashboard?








magento-2.1 orders wishlist dashboard






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 4 '17 at 9:20









Manoj Deswal

4,30591743




4,30591743










asked Oct 3 '17 at 16:13









tech_geektech_geek

206314




206314





bumped to the homepage by Community 29 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 29 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.










  • 1





    Please specify Magento version to get better and specific answers.

    – Mohit Kumar Arora
    Oct 3 '17 at 16:29











  • Magento 2.1 i am using

    – tech_geek
    Oct 3 '17 at 17:37











  • I think you are using ultimo theme and wishlist already coming in dashboard panel on left on account page

    – Manoj Deswal
    Oct 4 '17 at 9:29











  • yeah but i want a small wishlist in the my dashboard also.

    – tech_geek
    Oct 4 '17 at 9:32














  • 1





    Please specify Magento version to get better and specific answers.

    – Mohit Kumar Arora
    Oct 3 '17 at 16:29











  • Magento 2.1 i am using

    – tech_geek
    Oct 3 '17 at 17:37











  • I think you are using ultimo theme and wishlist already coming in dashboard panel on left on account page

    – Manoj Deswal
    Oct 4 '17 at 9:29











  • yeah but i want a small wishlist in the my dashboard also.

    – tech_geek
    Oct 4 '17 at 9:32








1




1





Please specify Magento version to get better and specific answers.

– Mohit Kumar Arora
Oct 3 '17 at 16:29





Please specify Magento version to get better and specific answers.

– Mohit Kumar Arora
Oct 3 '17 at 16:29













Magento 2.1 i am using

– tech_geek
Oct 3 '17 at 17:37





Magento 2.1 i am using

– tech_geek
Oct 3 '17 at 17:37













I think you are using ultimo theme and wishlist already coming in dashboard panel on left on account page

– Manoj Deswal
Oct 4 '17 at 9:29





I think you are using ultimo theme and wishlist already coming in dashboard panel on left on account page

– Manoj Deswal
Oct 4 '17 at 9:29













yeah but i want a small wishlist in the my dashboard also.

– tech_geek
Oct 4 '17 at 9:32





yeah but i want a small wishlist in the my dashboard also.

– tech_geek
Oct 4 '17 at 9:32










1 Answer
1






active

oldest

votes


















0














Layout file that is responsible for managing the blocks on Customer Account dashboard is customer_account_index.xml.



In Magento_Customer module, You can found this file here:




vendor/magento/module-customer/view/frontend/layout/customer_account_index.xml




In Magento_Sales module, You can found this file here:




vendor/magento/module-sales/view/frontend/layout/customer_account_index.xml




<body>
<referenceContainer name="content">
<block class="MagentoSalesBlockOrderRecent" name="customer_account_dashboard_top" after="customer_account_dashboard_hello" template="order/recent.phtml"/>
</referenceContainer>
</body>


Above is the block for responsible Recent order list. To change its position, you can change the block name to the new one where you want to show this like after info or after address.



Similar to sales module, you can create new block on Wishlist Module and add that block Content Container in customer_account_index.xml.



PS: You need to do all this modification in your current theme package.






share|improve this answer
























  • for the orders i have found the solution exactly what you are asking but for the wishlist i am having a hard time to finding a wishlist.

    – tech_geek
    Oct 4 '17 at 9:30











  • Do you want to show the whole wishlist there as on wish list page ?

    – Pankaj Pareek
    Oct 4 '17 at 9:32











  • no just images of wishlist products. Small images like. I think i have to made a custom wishlist template?

    – tech_geek
    Oct 4 '17 at 9:35











  • Yes you need to add custom template with the same wishlist block and add that block on customer account index page.

    – Pankaj Pareek
    Oct 4 '17 at 9:48











  • i need to make a new block also ?

    – tech_geek
    Oct 4 '17 at 9:53











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%2f195754%2fcustomize-my-dashboard-in-customer-account%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














Layout file that is responsible for managing the blocks on Customer Account dashboard is customer_account_index.xml.



In Magento_Customer module, You can found this file here:




vendor/magento/module-customer/view/frontend/layout/customer_account_index.xml




In Magento_Sales module, You can found this file here:




vendor/magento/module-sales/view/frontend/layout/customer_account_index.xml




<body>
<referenceContainer name="content">
<block class="MagentoSalesBlockOrderRecent" name="customer_account_dashboard_top" after="customer_account_dashboard_hello" template="order/recent.phtml"/>
</referenceContainer>
</body>


Above is the block for responsible Recent order list. To change its position, you can change the block name to the new one where you want to show this like after info or after address.



Similar to sales module, you can create new block on Wishlist Module and add that block Content Container in customer_account_index.xml.



PS: You need to do all this modification in your current theme package.






share|improve this answer
























  • for the orders i have found the solution exactly what you are asking but for the wishlist i am having a hard time to finding a wishlist.

    – tech_geek
    Oct 4 '17 at 9:30











  • Do you want to show the whole wishlist there as on wish list page ?

    – Pankaj Pareek
    Oct 4 '17 at 9:32











  • no just images of wishlist products. Small images like. I think i have to made a custom wishlist template?

    – tech_geek
    Oct 4 '17 at 9:35











  • Yes you need to add custom template with the same wishlist block and add that block on customer account index page.

    – Pankaj Pareek
    Oct 4 '17 at 9:48











  • i need to make a new block also ?

    – tech_geek
    Oct 4 '17 at 9:53
















0














Layout file that is responsible for managing the blocks on Customer Account dashboard is customer_account_index.xml.



In Magento_Customer module, You can found this file here:




vendor/magento/module-customer/view/frontend/layout/customer_account_index.xml




In Magento_Sales module, You can found this file here:




vendor/magento/module-sales/view/frontend/layout/customer_account_index.xml




<body>
<referenceContainer name="content">
<block class="MagentoSalesBlockOrderRecent" name="customer_account_dashboard_top" after="customer_account_dashboard_hello" template="order/recent.phtml"/>
</referenceContainer>
</body>


Above is the block for responsible Recent order list. To change its position, you can change the block name to the new one where you want to show this like after info or after address.



Similar to sales module, you can create new block on Wishlist Module and add that block Content Container in customer_account_index.xml.



PS: You need to do all this modification in your current theme package.






share|improve this answer
























  • for the orders i have found the solution exactly what you are asking but for the wishlist i am having a hard time to finding a wishlist.

    – tech_geek
    Oct 4 '17 at 9:30











  • Do you want to show the whole wishlist there as on wish list page ?

    – Pankaj Pareek
    Oct 4 '17 at 9:32











  • no just images of wishlist products. Small images like. I think i have to made a custom wishlist template?

    – tech_geek
    Oct 4 '17 at 9:35











  • Yes you need to add custom template with the same wishlist block and add that block on customer account index page.

    – Pankaj Pareek
    Oct 4 '17 at 9:48











  • i need to make a new block also ?

    – tech_geek
    Oct 4 '17 at 9:53














0












0








0







Layout file that is responsible for managing the blocks on Customer Account dashboard is customer_account_index.xml.



In Magento_Customer module, You can found this file here:




vendor/magento/module-customer/view/frontend/layout/customer_account_index.xml




In Magento_Sales module, You can found this file here:




vendor/magento/module-sales/view/frontend/layout/customer_account_index.xml




<body>
<referenceContainer name="content">
<block class="MagentoSalesBlockOrderRecent" name="customer_account_dashboard_top" after="customer_account_dashboard_hello" template="order/recent.phtml"/>
</referenceContainer>
</body>


Above is the block for responsible Recent order list. To change its position, you can change the block name to the new one where you want to show this like after info or after address.



Similar to sales module, you can create new block on Wishlist Module and add that block Content Container in customer_account_index.xml.



PS: You need to do all this modification in your current theme package.






share|improve this answer













Layout file that is responsible for managing the blocks on Customer Account dashboard is customer_account_index.xml.



In Magento_Customer module, You can found this file here:




vendor/magento/module-customer/view/frontend/layout/customer_account_index.xml




In Magento_Sales module, You can found this file here:




vendor/magento/module-sales/view/frontend/layout/customer_account_index.xml




<body>
<referenceContainer name="content">
<block class="MagentoSalesBlockOrderRecent" name="customer_account_dashboard_top" after="customer_account_dashboard_hello" template="order/recent.phtml"/>
</referenceContainer>
</body>


Above is the block for responsible Recent order list. To change its position, you can change the block name to the new one where you want to show this like after info or after address.



Similar to sales module, you can create new block on Wishlist Module and add that block Content Container in customer_account_index.xml.



PS: You need to do all this modification in your current theme package.







share|improve this answer












share|improve this answer



share|improve this answer










answered Oct 4 '17 at 9:14









Pankaj PareekPankaj Pareek

2,43611338




2,43611338













  • for the orders i have found the solution exactly what you are asking but for the wishlist i am having a hard time to finding a wishlist.

    – tech_geek
    Oct 4 '17 at 9:30











  • Do you want to show the whole wishlist there as on wish list page ?

    – Pankaj Pareek
    Oct 4 '17 at 9:32











  • no just images of wishlist products. Small images like. I think i have to made a custom wishlist template?

    – tech_geek
    Oct 4 '17 at 9:35











  • Yes you need to add custom template with the same wishlist block and add that block on customer account index page.

    – Pankaj Pareek
    Oct 4 '17 at 9:48











  • i need to make a new block also ?

    – tech_geek
    Oct 4 '17 at 9:53



















  • for the orders i have found the solution exactly what you are asking but for the wishlist i am having a hard time to finding a wishlist.

    – tech_geek
    Oct 4 '17 at 9:30











  • Do you want to show the whole wishlist there as on wish list page ?

    – Pankaj Pareek
    Oct 4 '17 at 9:32











  • no just images of wishlist products. Small images like. I think i have to made a custom wishlist template?

    – tech_geek
    Oct 4 '17 at 9:35











  • Yes you need to add custom template with the same wishlist block and add that block on customer account index page.

    – Pankaj Pareek
    Oct 4 '17 at 9:48











  • i need to make a new block also ?

    – tech_geek
    Oct 4 '17 at 9:53

















for the orders i have found the solution exactly what you are asking but for the wishlist i am having a hard time to finding a wishlist.

– tech_geek
Oct 4 '17 at 9:30





for the orders i have found the solution exactly what you are asking but for the wishlist i am having a hard time to finding a wishlist.

– tech_geek
Oct 4 '17 at 9:30













Do you want to show the whole wishlist there as on wish list page ?

– Pankaj Pareek
Oct 4 '17 at 9:32





Do you want to show the whole wishlist there as on wish list page ?

– Pankaj Pareek
Oct 4 '17 at 9:32













no just images of wishlist products. Small images like. I think i have to made a custom wishlist template?

– tech_geek
Oct 4 '17 at 9:35





no just images of wishlist products. Small images like. I think i have to made a custom wishlist template?

– tech_geek
Oct 4 '17 at 9:35













Yes you need to add custom template with the same wishlist block and add that block on customer account index page.

– Pankaj Pareek
Oct 4 '17 at 9:48





Yes you need to add custom template with the same wishlist block and add that block on customer account index page.

– Pankaj Pareek
Oct 4 '17 at 9:48













i need to make a new block also ?

– tech_geek
Oct 4 '17 at 9:53





i need to make a new block also ?

– tech_geek
Oct 4 '17 at 9:53


















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%2f195754%2fcustomize-my-dashboard-in-customer-account%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