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 grid view using custom collection

I'm currently writing an EPOS integration for Magento. When an order is made, it's ID is placed in a queuefile. Once a minute, a cron looks at the queue, fires the top order to the EPOS web api and then moves the ID to either a successlist file or a…
Geoff
  • 747
  • 3
  • 11
  • 16
1
vote
0 answers

implementing Magento EAV with proper grid & forms in admin panel

I am trying to implement an EAV CRUD module in magento. My module name is Pincodes. It should be just like the Attribute Management under Admin panel >> Catalog >> Attributes >> Manage Attribute So far I have implemented the whole module by…
SAM
  • 641
  • 2
  • 16
  • 30
1
vote
1 answer

How to merge double different models in magento?

I want to merge two Model results in a variable to use it in the register. There's a way to do this? $commercial = Mage::getModel('thorleif/commercial')->load(1); $lcat = Mage::getModel('thorleif/mapping')->load(1); //$mergedresult =…
javaTodev
  • 59
  • 1
  • 2
  • 8
1
vote
0 answers

Magento Module Not Working : Adminhtml add tab to Product View

I'm having trouble getting a new module to work. To begin with I just want to add an additional tab to the Product Edit screen in the adminhtml. I want this tab to show underneath the standard "Custom Options" tab. I have my module showing up in the…
Adam92
  • 436
  • 8
  • 23
1
vote
1 answer

Disable/Enable custom frontend footer link from admin panel in magento 2

I have a custom module that displays a custom link in the footer section in frontend. Then, I have my module specific configurations in the admin panel. I would like to Disable/Enable the link on frontend's footer through the configuration in admin…
manini
  • 358
  • 1
  • 4
  • 14
1
vote
0 answers

How can i override this vendor layout file with my custom layout file in magento 2?

I have created a custom module in magento 2 and its layout file is located in app/code/Learning/RewriteSales/view/adminhtml/layout/sales_order_view.xml . but the system loads the layout from …
Divya Muralidharan
  • 240
  • 1
  • 3
  • 13
1
vote
0 answers

Magento - adminhtml - Dropdown as filter on custom grid

I have created a custom orders grid in the admin panel which shows me the payment method and the shipping method of the order. Here is my custom Grid.php:
Venelin
  • 2,905
  • 7
  • 53
  • 117
1
vote
1 answer

Magento Adminhtml: Category Attribute with category chooser

I'm trying to implement a category attribute meant to link the current categories with other categories for a project specific usage. For that I created a varchar attribute meant to store a coma separated list of category IDs, but I'd like to have…
SMASHED
  • 466
  • 5
  • 9
1
vote
2 answers

magento controller not found

I have set up a controller in my module to add an order export tab to my installation: in config.xml:
Tom
  • 906
  • 1
  • 8
  • 30
1
vote
1 answer

Magento: Display custom product attribute in admin Items ordered block

I am trying to display my custom attribute value on admin order - Items Ordered block. It will show points earned for each product just like as it shows SKU and other information. The attribute value is saved in sales_flat_quote_item and…
Slimshadddyyy
  • 4,085
  • 5
  • 59
  • 121
1
vote
1 answer

Magento 2 adminhtml multiselect and showing selected options after save

How do I get the Magento2 Adminhtml Form with a Multiselect to select the saved options? Here is my Adminhtml Form Class for reference. namespace RussellAlbin\Blog\Block\Adminhtml\Post\Edit; /** * Adminhtml blog post edit form */ class…
RussellAlbin
  • 196
  • 1
  • 7
1
vote
1 answer

How to create a custom form action to a controller in admin html from Magento?

I have created a form in admin html, but its action not working properly, the action not coming to the controller. My config.xml file shown below
Naveenbos
  • 2,532
  • 3
  • 34
  • 60
1
vote
0 answers

Magento Grid Filter all Entries with no Value

I'm working on a Magento setup for Subaccounts. Each customer has the field "parent_customer". If the field is set, the account is a subaccount. What I'm trying to do is add a simple filter to the Grid overview, so that I can show only parent…
leedch
  • 151
  • 7
1
vote
1 answer

Adding block but it is not displayed

I want to place a new block in the sales -> transactions -> view. So I created a new block and add this block to the template. web/app/design/adminhtml/default/company/layout/local.xml
Marvin Caspar
  • 1,319
  • 1
  • 14
  • 25
1
vote
1 answer

Magento link to admin area - edit customer profile

In Magento, when trying to generate a link from the front end to edit a customer, the link I generate is always redirecting me back to the dashboard of the admin area even though it looks correct. I've tried it on multiple versions of Magento (and…
jsims281
  • 2,206
  • 2
  • 30
  • 57