The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
629 views

Magento Email Templates: Blocks not rendering from adminhtml

I fear I've stumbled into unknown Magento territory. I have exhausted what's left of my Googling abilities and have come up short, so I thought I'd try my luck here. Our platform is Magento ...
1
vote
2answers
2k views

whitespace problem magento admin html grid renderer

I have rewritten the app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php with app/code/local/Mage/Adminhtml/Block/Sales/Order/Grid.php & have created a renderer to display customer's email ...
0
votes
2answers
158 views

Magento Adminhtml Grid using sales/order_item collection filtered by customer

My objective is simple. I have a module called Quotes, I have managed to get Magento to create a new quote record each time a cart is created by changing the is_active column when a quote is 'checked ...
0
votes
2answers
348 views

Magento Controller forward in admin

I'm creating simple Magento module based on this article. I have a problem with my admin New Item action. <?php class Namespace_Gallery_Adminhtml_GalleryController extends ...
4
votes
1answer
393 views

Dynamically changing Magento's adminhtml menu option

I am working on a "for fun" project that I hope to release as a "for fun" open source project. I've built an Arduino web-connected order notifier and I am building up the Magento adminhtml interface ...
2
votes
1answer
54 views

Magento: Trying to overwrite Mage_Adminhtml_Block_Widget_Form

I'm trying to overwrite Mage_Adminhtml_Block_Widget_Form in my extension but i can't seem to get it to work. my config looks like this <global> <blocks> <adminhtml> ...
1
vote
1answer
1k views

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

How do I add magento frontend css to backend?

I have a block, which is appearing in the backend, and is adding a css file via the usual command: $this->getLayout()->getBlock('head')->addCss('mymodule/css/filename.css'); And this ...
0
votes
1answer
28 views

How to Set deafult values in adminhtml form magento

I am looking to add default values in textboxes in add product form in magento?Is there any way to accomplish this?
0
votes
1answer
151 views

I want to save my adminhtml form data to multiple tables in database

I have created a form in admin panel with various fields. Now the fields here doesn't belong to one single table. On the save, I want some values go into one particular table while others to go into ...
0
votes
1answer
202 views

Magento select field disables row in related products

I have added a tab with functionality similar to related products, i have added a column with a dropdown like this: $this->addColumn('mycolumn', array( 'name' => 'mycolumn', ...
0
votes
1answer
247 views

Changing magento order status and button action on admin

I want to change to button actions in the Magento admin orders section, and after looking at a lot of posts on here I can not find an answer that fulfills my question: Question: I want to be able to ...
0
votes
1answer
98 views

Accessing Object of Magento Admin Grid via Java-Script

I would like to access the JavaScript Object of the Magento Adminhtml Grid. I want to reload the Grid after my Dialog is closed an the Ajax-Request to the Controller has finished. If i modify the ...
0
votes
1answer
404 views

Magento Change Tab Order in Edit Product Section

I want to change order of tabs in edit product section.For example,categories and inventory tab must be swapped.Overriding Mage_Adminhtml_Block_Catalog_Product_Edit_Tabs block doesn't seem to work. ...
0
votes
1answer
358 views

overriding adminhtml block template in community pool

Is it possible to override template located here /app/design/adminhtml/default/default/template/ (e.g. /app/design/adminhtml/default/default/template/customer/edit/js.phtml) by creating a new module ...
0
votes
1answer
232 views

magento add wysiwyg block to cms page

Using Magento, I need to offer my clients the public use of a wysiwyg editor on my website to simply generate html code for them to copy and paste. My idea is to add a static block to a cms page... ...
0
votes
1answer
153 views

Magento Adminhtml Package/Theme (No) Fallback

Is there any way we could activate easily the fallback hierarchy mechanism with regards to customized Admin themes, as it already exists for the frontend area? It is not clear where and how this ...
0
votes
1answer
890 views

Magento: How to use admin configforms in frontend?

I have an extension which should give the users (logged in as an Admin in the magento backend) the ability to change some configs in the frontend area. I want to have a link in the frontend which ...
1
vote
0answers
508 views

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 ...
0
votes
0answers
20 views

Magento admin field type with arbitrary number of subfields

I'm making some custom module for magento and need backend settings for my custom entity. So far all was ok, I made a section through xml, made general CRUD actions and some settings that are ...
0
votes
0answers
50 views

How does the paging of a Adminhtml Grid of Magento work?

I have a custom module which has a backendgrid which derives from Mage_Adminhtml_Block_Widget_Grid. As I see this supports also paging, so to switch to the next page via Ajax. But unfortunately if I ...
0
votes
0answers
58 views

Customize Magento System Config Form

I want to customize the template of the system config in Magento. Unfortunately there is no specific template (.phtml) file for this. The template is hardcoded in renderers. If you look at the method ...
0
votes
0answers
97 views

Magento Admin Base Url Causes Bad Image Mapping

My store base url is http://mystore.com/ My admin base url is http://otherdomain.com/admin/ Clearly they are on different domains. My issues come into play when sending transactional e-mails from ...
0
votes
0answers
55 views

No Button Save to Create a Shipment of Order

I can't change state of my orders. See the problem on Image. The Button Save to Create a Shipment of Order there isn't in page. The order in question is already in the state processing. Version: ...
0
votes
0answers
606 views

Magento - Editing phtml files in adminhtml folder having no effect

When I make a change to “app/design/adminhtml/default/default/template/page/head.phtml” or other files in the adminhtml folders, the changes I make have no effect on the site. The site seems to be ...