How can i call the 'My Order' file in 'My Dashboard' page? - magento

I am making a custom theme in Magento. and I want to add a table of My orders in Main Account Dashboard page. How can i call 'Order.phtml' in 'Dashboard.phtml' ? Or any other way to do it.I Had tried <?php echo $this->getChildHtml('orders') ?> in dashboard.phtml but it didn't work.
Any help will be appreciated... Thank you ...

There are some settings for which page you want to see after Login into admin panel
You can do it by Navigating through Admin panel:
Step1: Login to admin panel
Step2: Go to System->Configuration
Step3: On left Hand Panel at last you will see Advance tab under it click on Admin Panel
Step4: Now under startup page Choose Orders under sales
Step5: Now you can view your orders instead of dashboard
If confused you can see the screen shot below.
link

Related

How to add a custom block in the Magento dashboard sidebar

I want to add some notification in admin panel dashboard in left sidebar, where by default 5 notification are shows. please see in this image I have marked.
Just go to
app/design/adminhtml/default/default/template/dashboard
and open the index.phtml file.

custom menu isnot clickable in admin panel in magento

I have created a user role name seller. And I have added a custom menu as wallet in the admin panel. I have given resource wallet to the user seller. But when we login to the seller section admin panel,the newly created menu is not clickable.But this menu is working properly in main administrator admin panel.
here is my config.xml file where I have created the menu and given the ACL permission to it.
enter image description here
Here is the screen shots of the main admin panel and user role admin panel.
enter image description here
[enter image description here][3]
Any help is appreciable. Please help.
As I can see from images that you attached you have just gave acl to wallet menu as per my knowledge if you need "manage wallet" submenu display when wallet get clicked you also need to give acl to "manage wallet" menu too in config.xml or whichever file.
Once you done with I damn sure your menu will get clickable.
Let me know if you still facing any problem.

How to display products in home page which are created from a program in magento?

I created products using a controller in magento.The products are successfully created and are shown in list of products in Magento admin panel.But these are not shown in Magento home page.
But once I click on EDIT of these products and save them unchanged,they are shown on home page.
I am new to magento...
What might be the reason and how to overcome?
Thankyou,
First you need to flush all Cache you can do it form admin->system->Cache Management now click on "Flush Magento Cache" Button
secondly you need to Index you can do it form admin->system->Index Management
select all indexes and select reindex data and click on submit button now check your home page it should work.make sure your product should be in stock
and status = enable.

Product admin image tab location in magento

Where is the product admin image tab located in magento? I want to use grid of images.Or give me the path where the tabs (prices,General,images etc) are added to product tab list.
Thanks in advance.
If your speaking of code (am i right?)
Take a look at the class Mage_Adminhtml_Block_Catalog_Product_Edit_Tabs. The tabs are created in the _prepareLayout() method.
The image Tab is handled separately with the Mage_Adminhtml_Block_Catalog_Product_Helper_Form_Gallery_Content and is added to the product edit page via the Mage_Adminhtml_Block_Catalog_Product_Edit_Tab_Attributes::_getAdditionalElementTypes() function

How to edit magento home page via code?

Hello I'm trying to edit home page
http://www.kreatifyazilim.com/magento/
For example I want to write code on the middle part of the page, ( banner )
The dropdown boxes you can see on demo must be included in banner side.
Go to Magento admin->CMS->Pages
Select Home Page
In Content Tab, add your dropdown
Create a new template (home.phtml).
(make a copy of design/frontend/base/default/template/page/1column.phtml).
And choose this template in the CMS Page design layout.
You can freely edit the complete template (PHP+HTML)

Resources