Reputation: 564
In the view catalog page I have added a custom select drop down. On selection of an option by the user the price should change accordingly. But as a option is chosen from the dropdown I am getting this error
TypeError: opConfig is undefined..
I have searched for this opConfig problem in Magento but didn't find a solution..
Upvotes: 4
Views: 696
Reputation: 4821
I found the cause of this issue.
In your themes equivalent of this path
/app/design/frontend/base/default/template/catalog/product/view/options.phtml
You'll see an empty line before the line Product.Options = Class.create();
. Remove this empty line and the opConfig issue will be resolved.
Upvotes: 1
Reputation: 61
The question is not simple. in your view page find this line ( options.phtml )
var opConfig = new Product.Options(...);
but your page has undefined error so there has 2 reason,
javascript error in your product view page before opConfig.
config not completly script in page.
Upvotes: 0