- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can't see attribut option and add attribut option Magento 1.7.0.2
Hi ,
I added some Supee patch last week and fix some problem.
Patch list :
- 9652
- 8788v2
- 7405
- 6788
- 6482
- 6285
- 5994
I just found a bug on my manage attribut. When i want edit an attribut (see attribut options or add an option attribut), I click on the button but nothing happens.
I don't have error on system.log but I have an error on the console of my browser :
Uncaught ReferenceError: ganShowAllOptions is not defined at HTMLButtonElement.onclick ((index):1436)
I searched on google but I did not find a similar bug.
Your help would be greatly appreciated.
thank you in advance
Coloo
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Can't see attribut option and add attribut option Magento 1.7.0.2
"ganShowAllOptions" function doesn't exist in Magento. That means that it's caused by 3rd party plugin incompatibility with your Magento.
Can you search through whole app/, js/ and skin/ directory for string "ganShowAllOptions"? It will lead you to the extension name which causes conflict. Then you can either remove it, upgrade it, or find Developer who can dive into your code and identify cause of the issue.
If this response solved your problem, click accept as solution to help others solve this issue
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Can't see attribut option and add attribut option Magento 1.7.0.2
it's from GoMage Advanced Navigation (gan). Did u solve it? Got same problem and looking for a solution without upgrade
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Can't see attribut option and add attribut option Magento 1.7.0.2
Found a similar problem which helped me to fix the GAN issue
Please search for
var maxUploadFileSizeInBytes = <?php echo $this->getDataMaxSizeInBytes() ?>;
change to
var maxUploadFileSizeInBytes = '<?php echo $this->getDataMaxSizeInBytes() ?>';