Questions tagged [adminhtml]

adminhtml is a directory in Magento which contains a design file related to the admin interface of Magento.

adminhtml is a directory in Magento which contains a design file related to the admin interface of Magento. We have two such directories in Magento.

  1. Under /app/design directory in Magento. It contains a design file related to the admin interface of your Magento.

  2. skin/adminhtml: This directory contains CSS, js, and images of the admin theme of Magento.

172 questions
1
vote
1 answer

Magento Adminhtml - How to create New Admin Form

I'm using Magento 1.9.0.1 and right now i'm developing a new magento extension. So far i've created new adminhtml page with grid table that is fetching data from custom MySQL table: Here is the page: ![enter image description here][1] This page is…
Venelin
  • 2,905
  • 7
  • 53
  • 117
1
vote
1 answer

Magento - Adminhtml new custom Tab in the config section is not showing up

i'm using Magento 1.9.0.1 and right now i am working on a new extension and i want to add new module with tab in the admin panel. Here is what i've done so far: /app/code/community/VivasIndustries/SmsNotification/etc/config.xml:
Venelin
  • 2,905
  • 7
  • 53
  • 117
1
vote
1 answer

Remove fields from customer adminhtml tab

I am trying to remove two fields from appearing in the Magento adminhtml > Customers > Manage Customers > Customer Information > Account Information tab and cannot seem to get Magento to recognize what I've done. (At least, not that I can see.) In…
Rob Emenecker
  • 129
  • 1
  • 1
  • 9
1
vote
1 answer

How to make a Magento extension to replace prototype.js w/ an alternate version in adminhtml only

I need to call an alternate js/prototype1_6_0_3.js file into my admin only, and keep the original js/prototype.js for the user/customer front-end. I had to qickly upgrade the original js/prototype.js file to 1.7.0.1 b/c of an issue that popped up…
otay
  • 35
  • 1
  • 6
1
vote
1 answer

create custom collection in magento

We have a table with delivery dates and i want to add it to the adminhtml in sales/order/grid. The problem that i have is that the left join examples dont work for me and im out of options. Mage/Adminhtml/Block/Sales/Order/Grid.php The method im…
SinisterGlitch
  • 195
  • 3
  • 25
1
vote
1 answer

Magento - Add functionality to my new added button

I made a new button in adminhtml by extending *Mage_Adminhtml_Block_Sales_Order* and now i want to have some functionality in it. class Module_Parcel_Block_Adminhtml_Sales_Order extends Mage_Adminhtml_Block_Sales_Order { public…
SinisterGlitch
  • 195
  • 3
  • 25
1
vote
1 answer

How to upload images in custom module like in add product in admin of magento?

I am working on magento 1.7 version. I have a custom extension.In this I need to add option to upload multiple images similar to default product extension of magento. How can I achieve this?
Neeraj Garg
  • 695
  • 3
  • 17
  • 38
1
vote
2 answers

Add mailto functionality in admin field

How can i new field in admin filed that contain mailto functionality $fieldset->addField('email', 'link', array( 'label' => Mage::helper('mumodule')->__('Email'), "target"=>"_blank", 'mailto' =>…
Keyur Shah
  • 11,043
  • 4
  • 29
  • 48
1
vote
1 answer

How to set filter in grid of admin in magento?

I am working on magento 1.7 version. I have a grid in magento admin. When I click on a particular row it opens a form and two tabs in left sidebar. when I click on one tab it is displaying a grid in right side. Now I want that in this grid a filter…
Neeraj Garg
  • 695
  • 3
  • 17
  • 38
1
vote
1 answer

Design Configuration menu in custom phtml file

I want to design a custom menu just like the admin configuration menu in magento as you can see in the image below. I have a custom phtml file and I want the same menu in that file. how can I do this using built-in magento functionality.
Umair Zaman
  • 341
  • 1
  • 2
  • 13
1
vote
1 answer

Magento dmin Checkboxes Save magento categories to custom database table

I'm currently developing a custom module for Magento and theres one thing I´m not able to get working. I have a front-end display of employees and an backend so I can add employees. I save the employees in a regular mysql table(so not EAV). Just to…
cpuweb
  • 43
  • 1
  • 1
  • 6
1
vote
0 answers

Magento Get custom attribute value in admin Invoice Grid

I want to display my custom attribute value in magento admin invoice grid in "Item Invoiced" section app/code/core/mage/AdminHtml/Block/sales/order/Invoice/View/Items.php its generated via public function getOrder() { return…
user2477139
  • 608
  • 1
  • 6
  • 21
1
vote
1 answer

Set template in layout handle for Adminhtml

In the backend of my Magento Webshop I want to set a template for the blocks of System->Config. Therefore I use the layout handle of the Mage_Adminhtml_System_ConfigController which is adminhtml_system_config_index I think. The problem is, nothing…
tester
  • 3,977
  • 5
  • 39
  • 59
1
vote
1 answer

magento tabbed backend like catalog/product for custom entity

I want to write a module with a custom entity. In the backend it shall look like the backend from products (tabs on the left, forms on the right). I tried many variants and inspected/copied many things from the core to understand it... well I…
bukart
  • 4,906
  • 2
  • 21
  • 40
1
vote
1 answer

Displaying my Bloc in mutiple "zone"?

I am working on a Slider extension for Magento, I want to be able to display my slider in one of this positions : top_left, top_right, top_center, bottom_left/right/center ! and be able to choose this position from my Admin backend whith a DropList…
t.c
  • 1,255
  • 1
  • 16
  • 36