RSS Feed
Knowledgebase
     
After the upgrade to Advanced Product Options v2.0 the error like "SQLSTATE: Column not found: 1054 Unknown column 'default' In 'field' list". To fix this error you should do the following steps: - connect to your database (you can find the acce...
In order to resolve the issue, admin should: 1. _Resave an affected product (make sure Design ->Display Product Options = NOT EMPTY)_ 2._ Edit the latest APO installer (example: mysql4-upgrade-3.0.8-3.1.0.php) and add the code:_ $attribute = $...
If you use "Fixed Quantities" extension by Zetaprints, it will conflict with ADVANCED PRODUCT OPTIONS. To fix this conflict you should do the following: 1) Create the folder "app/code/community/ZetaPrints/Fixedprices/Model/Fixedprices/" 2) Create...
In order to place radio buttons horisontally you should add the code to a css file (for example, /skin/frontend/default/default/css/styles.css) .product-options ._DIVCLASS_ ul.options-list li { float: left; padding: 2px 10px; } .produc...
Many of you often ask us if it is possible to remove the "plus" from an option's name to make it look like: "option_name $1.00" This is how you can do this. _Modify the file_ /www/app/code/local/MageWorx/CustomOptions/Helper/Data.php _and r...
Sometimes you need to remove all custom options from all products at once. You can do this by executing the following SQL query in your database: delete from catalog_product_option If you have any questions about any of our Magento Extensions [...
"MagicToolbox_MagicZoom" conflicts with Advanced Product Options. To solve this conflict you need to comment the line #113 out in the file "app/code/local/MagicToolbox/MagicZoom/etc/config.xml": MagicToolbox_MagicZoom_Block_Product_View_Options_Typ...
In order to get the extensions work together one should edit the file: /app/design/frontend/base/default/layout/simpleconfigurableproducts.xml and comment out the block: catalog/product/view/scpoptions.phtml If this doesn't help or you hav...
The problem may appear if not all options are sent to PHP in POST. 1. It is presumably that there is an intermediate proxy server like nginx between PHP and the sent request process. It may have a limitation for the sent data. Please check its setti...