Question:
I have followed the step and created a configurable product but it does not show the options as grid.
Answer:
Open file:
app/code/local/Bss/FastOrder/Helper/Data.php
Find the code:
$template = 'catalog/product/view/type/options/configurable.phtml';
Replace with this code:
if (Mage::helper('core')->isModuleEnabled('Bss_Configurablegridview') && Mage::helper('configurablegridview')->getSetting('is_enabled')) {
$template = Mage::helper('configurablegridview')->getTemplate();
} else {
$template = 'catalog/product/view/type/options/configurable.phtml';
}
Then, it will be like that: https://gyazo.com/babab167cf0a41171089598e2fc5594e
Save and upload then delete cache.
For more information about product, please refer Pro Configurable Product Grid Table View page.
If you need any further assistance, please feel free to contact us.
Please visit our site for more useful Magento 1 Extensions: https://bsscommerce.com/extensions.html
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article