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
0
votes
1 answer

Magento Adminhtml Grid - Invalid block type

exception 'Mage_Core_Exception' with message 'Invalid block type: Mage_Cybercon_Certificationverification_Block_Adminhtml_Certificationverificationbackend_Grid' in /home/sbm19/domains/sbm19.saistudy.com/public_html/app/Mage.php:595 Stack trace: #0…
Ben Ton
  • 5
  • 3
0
votes
1 answer

Magento/Adminhtml - Receiving error while trying to search for custom column in products grid

This is my adminhtml products grid.php: class Mage_Adminhtml_Block_Catalog_Product_Grid extends Mage_Adminhtml_Block_Widget_Grid { public function __construct() { parent::__construct(); $this->setId('productGrid'); …
Venelin
  • 2,905
  • 7
  • 53
  • 117
0
votes
0 answers

Adding new Tab to Order View page not displaying in Magento

Here is my config file:
Venelin
  • 2,905
  • 7
  • 53
  • 117
0
votes
2 answers

Magento - Adminhtml Trying to search in the product grid by custom column

I am using Magento 1.9.2 and i am rewriting the products grid table. I have done a copy from the original Grid.php and created this: /app/code/local/Mage/Adminhtml/Block/Catalog/Product/Grid.php and here is what it contains:
Venelin
  • 2,905
  • 7
  • 53
  • 117
0
votes
2 answers

Magento - Trying to hide order with specific status from the sales order grid in Adminhtml

I am working with Magento 1.9.2 and i am working on a custom extension. I have created a copy from /app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php Copy to : /app/code/local/Mage/Adminhtml/Block/Sales/Order/Grid.php And then in the…
Venelin
  • 2,905
  • 7
  • 53
  • 117
0
votes
1 answer

Magento - Adminhtml - How to hide orders with specific status?

I am using Magento 1.9.2 and i am using custom extension. Here is it's config file: 2.0.2
Venelin
  • 2,905
  • 7
  • 53
  • 117
0
votes
3 answers

Magento 1.x Best way to get admin skin URL from frontend

What is the best way of getting the URL path of the current admin skin theme directory. I am aware of Mage::getModel('core/design_package')->getSkinUrl(); Which will return the URL of the front-end skin theme directory. Is there an Adminhtml…
Chris Rogers
  • 1,525
  • 2
  • 20
  • 40
0
votes
2 answers

Grid column filter not working with renderer in magento custom module

I'm working with custom module for the magento backend, in this filter not working when using filter calback! Thanks! I have tried some codes like this, Grid.php protected function _prepareCollection() { $collection =…
bindal09
  • 31
  • 10
0
votes
1 answer

Admin module is returning a '404 not found' after updating to Magento 1.9.2.2

I updated to Magento 1.9.2.2 the other day and it has caused the admin section of a module I build to throw a 404. Below is my admin section in config.xml file for the module. -----------
Dhrumin
  • 351
  • 3
  • 16
0
votes
0 answers

Widget edit throws 500 in Magento

Hopefully you can help me out. Below is a screen shot of my Widget Instance Edit screen (CMS > Widgets > [Widget Instance Name]). The Network tab in Developer tools shows a 500 error for all Widget instances. This also happens to newly added Widget…
0
votes
1 answer

Customizing magento admin backend depends up in admin user login

When a admin user login how to change the admin UI depends up on the user role, I need to change the admin UI and additional elements to it after login of particular admin user, is it possible to change the admin html UI ?
Naveenbos
  • 2,532
  • 3
  • 34
  • 60
0
votes
3 answers

Events for admin user login/logout in magento?

Is there any events for admin user login and logout in magento? I found some events for customer login but not for Admin user login