Questions tagged [module]

Questions about developing custom modules

A custom module is a local Magento module to add or extend features for a particular store. Every module must at least contain a module definition file in app/etc/modules and a configuration file in app/code/local/[NAMESPACE]/[MODULE]/etc/config.xml (Magento 1) or etc/module.xml and registration.php (Magento 2).

Details how to create a module in Magento 2 can be found in the Magento documentation.

For questions about developing extensions for the public, see . Extensions usually consist of one or more modules (see also: What is the difference between an extension and a module)

3160 questions
1
vote
0 answers

How to view information admin section?

We have developed custom admin module and i listed the grid view. But not able view the information of particular record. We have tried , get the blank page How to do this?
Rat
  • 834
  • 13
  • 28
0
votes
1 answer

Override controller multiple time

I'm having a 3rd party module that extends some controller (after updating from previous version that used to do it in a separate controller) that I need to extend with my own module already. Both have a completely different set of actions. Is there…
Pascal Heidmann
  • 191
  • 1
  • 11
0
votes
0 answers

My module wont show up.what could be the error?

My module is about filtering Payment Method when customer selects one of the shipping methods. Namespace: Insync Module-Name: Paymentfilter Config.xml (app/code/local/Insync/Paymentfilter/etc) :
Fufu Tulla
  • 45
  • 1
  • 9
0
votes
1 answer

My block doesn't show for admin module

Another issue with building my admin module!! I can't get the page to show! Already have the page and drop down links showing without errors like I had last week. Now I can't get my template page to show up. What am I doing wrong with declaring…
CaitlinHavener
  • 779
  • 2
  • 20
  • 42
0
votes
2 answers

Module causes 404 errors on index and magento connect pages

I am getting a 404 message within the body of the index and magento connect admin pages. When I remove the module that I recently added, they come back. Can you see what is wrong with my module that is causing this issue? I got the files from this…
CaitlinHavener
  • 779
  • 2
  • 20
  • 42
0
votes
3 answers

custom builder product option magento extension

My client website want to build Custom product builder similar to this website: http://www.villycustoms.com/custom-builder/ Is there any Magento or Wordpress extension can do ? Concept is customer need to pick up part of product style step by…
Ryo
  • 119
  • 1
  • 13
0
votes
1 answer

how to add my custom js to footer vai reference

i want to add custom js to footer: i am using below code in admin > category > custom design
user1799722
  • 970
  • 3
  • 31
  • 77
0
votes
1 answer

How to protect our module with serial number or other way

We developed a module but want to make only few people can use our module Is there any way to make this? (e.g. adding serial number like some extension company do) (so even if someone got copy of all files, he can't use without our permission)
Yohan
  • 1,610
  • 7
  • 33
  • 51
0
votes
1 answer

Module (all about module development)

i need resources, manuals about module development, and etc... give me please links, i want develop modules in magento, but magento tutorial very small, let me know about this info Thanks
John Genry
  • 579
  • 2
  • 6
  • 20
0
votes
1 answer

drop down menu doesn't workafter Fooman Speedster uninstall

After uninstalling Fooman speedster the drop down menus and drop down category's no longer works. Anyone have an idea how to solve this?
Erik
  • 1
0
votes
1 answer

What are some good written and simple modules I should look at to learn Magento?

I've created a few very simple Magento modules. Now I want to look at very good written code for Magento modules. It shouldn't be a huge module, maybe some news or blog module, I don't know. Any suggestions? Thanks.
iwanttolearn
  • 129
  • 2
0
votes
1 answer

Add to cart - Does Magento escape data by default?

I intend to allow user customize their product before add to cart by a custom route (eg: example.com/customize/id/123). I use POST method. Data will be added to order attributes. I wonder if Magento escape data behind the scenes or I have to do…
Tran Dinh Khanh
  • 724
  • 1
  • 9
  • 19
0
votes
1 answer

uploaded a module then got an error "Call to a member function rewrite()"

i just upload a module then got an error Fatal error: Call to a member function rewrite() on a non-object in /var/www/directory/app/code/core/Mage/Core/Controller/Varien/Front.php on line 165 i completely removed the module but the error still…
0
votes
2 answers

Magento Module Not Loading

I have created a very simple module for Magento. All that I have done so far is declared a module and created its config.xml file. I am trying to read the xpath from the file, however nothing is showing up. The directory is correct and all files are…
Chris
  • 41
  • 1
  • 5
0
votes
1 answer

How to assign class to checkbox field in form

In module I have Form.php . I have added Checkbox code which is as follows. $fieldset->addField('title', 'checkboxes', array( 'label' => Mage::helper('custommodule')->__('Title'), 'class' => 'validate-one-required-by-name', …
YKJ
  • 387
  • 7
  • 16
1
2