Tagged Questions
-1
votes
1answer
24 views
How to disable custom module in magento
I have overridden core file in my custom module extension.
Disabling this module using magento admin panel is not working.
system -> configuration -> Advanced
Module Name (drop down option - ...
0
votes
1answer
33 views
Magento get Shipping collectRates() attributes in observer
In a shippingModule in the collectRates method, i have set up a few values:
$method->setCarrier('test_customrate');
$method->setCarrierTitle($this->getConfigData('title'));
...
0
votes
1answer
30 views
Disable Magento extention/module on mobile theme
An extension I have installed on my Magento site overwrites the view.phtml file for the product pages, even on the mobile site. I would like to use the mobile template's view.phtml when viewing from a ...
2
votes
2answers
444 views
Disable a Module in Certain Theme
Is it possible to disable certain modules when running a certain theme? I'm working on a mobile friendly version of our Magento store and I've run into some issues with a few extensions. Rather than ...
0
votes
1answer
1k views
Create a form in magento admin panel
I am trying to create form in admin panel(custom module) in magento. For now my magento custom module work properly. I created menu in admin panel, I rewrite some controllers,but I cannot create a ...
0
votes
2answers
54 views
Module that edits existing product names in magento?
Please I am trying to create a module in magento that edits the products' name by concatenating the existing product names with randomly generated numbers.
$model = ...
7
votes
2answers
2k views
Magento custom model won't allow DB table changes
I've run into an issue with a custom Magento module I've created.
In short, I created a simple module for customer uploads on the front-end. I created a new table with some generic fields like ...
0
votes
2answers
37 views
Magento - Install script not running (but record add to core_resource correctly)
So, I'm trying to run a setup script with my module. (Magento 1.7)
I have this is my modules config.xml
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
...
0
votes
1answer
20 views
improper XML rendered from magento custom module controller
I got into trouble rendering XML from controller.
I have tried http://stackoverflow.com/a/4442879/647723
If I do -
$this->getResponse()->setBody($xmlContent);
I get "Headers already ...
2
votes
2answers
125 views
Mage::getStoreConfig always returns null for my custom module admin option
I have a module: app/code/local/Namespace/Resize/
so I've included a option to disable/enable an option through Magento admin.
System > Configuration > Namespace > Resize
but when I try to access ...
3
votes
3answers
857 views
Upgrading Magento 1.6.1 to 1.7.0 save custom module
When i upgrading Magento, there is enabled module that changed to disabled module.
It's AheadWorks module.
when saving on admin, System -> Configuration -> Advanced -> then click Save Config
An ...
0
votes
0answers
30 views
Magento Custom Module: Allow user to Add Entry
I've started trying to create my own custom module. My goal in the end is to allow it so the user can review the STORE as they could a PRODUCT.
I've started with a Module I created using the ...
0
votes
3answers
106 views
How to restrict default COD in magento to certain zip codes only?
I am using Cash On Delivery Payment method in magento 1.7.0.2.
I need this payment option only for certain zip codes/pin codes.
can anyone help?
0
votes
2answers
226 views
Magento- add new menu item inside the module
currently I want to add a new menu link on the menu tab, but can it be done without changing other module template, but just add inside my module? The reason I want to do like this is because I hope ...
0
votes
0answers
109 views
Product grid in Magento admin custom module
I am trying to display a product grid in my module.
I used the following code.
return parent::_prepareLayout();
The following is written into my log file.
exception 'Mage_Core_Exception' with ...