Magento Querks Foibles Frustrations and Fixes
If we ease the suffering of some poor dev whose been bashing his head against a wall and being driven to insanity by some friggin typo then we've achieved something good.
See this thread:
http://www.magentocommerce.com/boards/viewthread/196649/
Tue, 26 Oct, 2010 at 4:38 PM
This thread has a link for fixing shadowbox but not light box, but may help:
http://www.magentocommerce.com/boards/viewthread/199723/
Sun, 17 Oct, 2010 at 9:31 PM
app\code\local\Magestore\Imageoption\Block\Select.php
see Frith site for working copy
Validation was looking to parent element to get radio image.
Sun, 17 Oct, 2010 at 9:31 PM
Have spent 4 hours being unable to disable toolbars using XML update only to find that the block is hard coded. Found a fix here:
http://www.magentocomme...
Wed, 6 Aug, 2014 at 6:16 AM
If you need to create different layouts depending on the product category in Magento:-
Add this XML to Category Custom Layout Update and modify phtml file n...
Sun, 17 Oct, 2010 at 9:30 PM
Goto template/catalog/product/list.phtml
<?php echo nl2br($this->htmlEscape($_product->getShortDescription())) ?>
change to
&...
Sun, 17 Oct, 2010 at 9:48 PM
Stick footer CSS.
/*Sticky Footer*/
html, body {height: 100%;}
.wrapper {min-height: 100%;}
.main {overflow:auto;
padding-bottom: 288px!important;} /* ...
Tue, 19 Oct, 2010 at 2:20 PM
<?phpif($_product->getId()==5):?>//somecustomhtml<?phpelse:?>//defaulthtml<?phpendif;?>
Thu, 12 Jan, 2012 at 3:47 PM
Create a temporary table called temp with 2 columns, increment_id and status.
Populate this table with orders numbers that need to be updated and the ...
Tue, 9 Dec, 2014 at 5:19 PM