magento

Magento Disable Filter Field to Admin Grid

I have a custom module with a backend page. In the grid, I show the customer email as the user name. By default, Magento adds a filter to every column in the grid. Now, when I try to filter by the customer's email, I get an exception saying that my custom table doesn't have an email column. Magento is trying to find that in my custom tab...

Order Import Magento 1.4.x

How to move orders on magento 1.4.x using imp/exp profiles ? ...

Add a date picker to system.xml on custom module

Dear StackOverflowers, As stated in the subject, I am trying to add a date field with its date picker in the System > Configuration area for a custom module (thus using etc/system.xml). I tried to get inspiration from the thread below : http://stackoverflow.com/questions/3054429/magento-add-a-button-to-system-xml-with-method-attached...

Magento - page title on contact page

hi, how can i change the page title <title> of Magento's default contact page? thanks ...

Magento Create Product Attribute That Is An Integer

So apparently the support you get from Varien when you purchase the Enterprise Edition is next to worthless so I am hoping that someone here can maybe lead me in the right direction. In Magento I am would like to create a product attribute that is the type int. When I create the attribute from the admin panel it creates it as a varchar....

Magento - change subject in newsletter subscription success email?

hi, how can i change the subject in newsletter subscription success email? thanks EDIT - Version 1.4.0.1 ...

modify Magento's default Account dashboard

hi, i tried editing the phtml files (dashboard.phtml) under template > customer > account but the account dashboard stays the same. what am i missing? thanks ...

Magento - Edit sidebar naviagtion on Customer's Account dashboard

hi, which file controls the links in the sidebar navigation on a customer's account dashboard? thanks EDIT : i'm trying to edit the text on these links (eg. change "Newsletter Subscriptions" to "Latest News" maybe) ...

changing navigation in magento dynamically

Hi All, I want to know that can i change the navigation menu dynamically,i am having two tabs on the basis of which i want to render the navigation menu.How can it be done Thanks in advance ...

How to display category custom design layout in product view page?

Hi, Let's say I have two categegories, A and B. I set A to use 'layout_a' on Catalog -> Catalog Categories -> Click a category -> click custom design tab I set B to use 'layout_b' on Catalog -> Catalog Categories -> Click a category -> click custom design tab When I visit category A and B, theydisplays products using their own layout...

Saving In Magento Taking A Very Very Long Time

In Magento I write a number of small command line scripts to do things like set a new attribute on a number of products. I am finding that the time it takes to update 900 products takes about 6 hours to complete. The time it takes to load the individual products goes as fast as I would except, but the act of saving once I have made the ...

Magento Cart: Check for items empties cart

I am new to Magento, but I thought I had a grasp on it until today. Here is my problem. I am writing a new Observer to add a coupon to the cart on page load. The coupon code is passed in the URL and I desire the code to be passable through ANY working URL. For example: http://magento/?coupon=MYCOUPON I am catching on the event "contro...

Copy Magento Categories to Parents

Scenario: A new blank Magento with a category product and customer import with some fixes to do. Category structure: Root L..Category_parent1 (0 products) L..Category_child1 (22) L..Category_child2 (34) L..Category_parent2 (0) L..Category_child1 (22) L..Category_child2 (34) L..Category_parent3 (0) L..Category_chi...

Magento - Aheadworks blog extension WYSIWYG editor

hi, i've installed the blog extension from Aheadworks, which is supposed to use the native WYSIWYG editor that comes with Magento 1.4.* but the editor does not show up. The editor shows up on CMS pages and Static Blocks but not with this extension. Any ideas? Thanks ...

Magento View 'Company Name' Instead Of First/Last Name

Can Magento view/manage our customers by their business name in addition to their contact names to find them easily? It is being used for B2B, so when emails go out they are pulling the customer’s name, instead of the company name which is more appropriate. Is this a global setting? thanks in advance. ...

Magento - Category based shipping rates, is this possible?

Hi, I have searched google and the Magento forum to no avail. Is it possible to assign a different shipping rate to each category of products? Thanks Dan ...

magento database structure?

Hello all! Currently am working with magento project.. in which i have stucked on the point .. that is when admin add any subcategory/category by Manage category -> custome design here its gives two option like Active from and Active to.. can anyone, who know about magento database, tell me where or in which table this two value stor...

Magento remove (show/hide editor) button in admin module

i have a custom admin module, in the edit page i have wysiwyg editor, but in the top of it there is a button (show/hide editor), i don't want that button, how can i remove it thanks ...

Magento: Obtain Id for order, listening to the event checkout_onepage_controller_success_action

Hi people, When I look at the event (checkout_onepage_controller_success_action) and works, but I can not get the Id of the newly created order. Anyone have any idea?? Use magento-1.4.1.0 Thanks ...

Magento create new field type for admin module

in a custom module with admin pages, in the file app\code\local\Namespace\Mymodulw\Block\Myblock\Edit\Tab\Form.php you can add somthing like this $fieldset->addField('title', 'text', array( 'label' => Mage::helper('mymodule')->__('Title'), 'class' => 'required-entry', 'required' => true, 'name'...