Move block from right to bottom
http://www.panticz.de/sites/default/files/magento/recently-viewed/recently-viewed.xml
<?xml version="1.0" encoding="UTF-8"?>
css/recently-viewed.css
1Fix design
http://www.panticz.de/sites/default/files/magento/recently-viewed/recently-viewed.css
/* recently viewed block */
.category-products,
.product-view {
margin-bottom:15px;
}
#recently-viewed-items .product-image {
height:127px;
text-align: center;
}
1Patch product_viewed.phtml
mkdir -p ./app/design/frontend/default/default/template/reports/
cp ./app/design/frontend/base/default/template/reports/product_viewed.phtml ./app/design/frontend/default/default/template/reports/product_viewed.phtml
wget -nv http://dl.dropbox.com/u/4170695/magento/recently-viewed/product_viewed.phtml.diff -O /tmp/product_viewed.phtml.diff
patch -p2 ./app/design/frontend/default/default/template/reports/product_viewed.phtml < /tmp/product_viewed.phtml.diff
http://www.panticz.de/sites/default/files/magento/recently-viewed/product_viewed.phtml.diff
--- ./app/design/frontend/base/default/template/reports/product_viewed.phtml 2011-01-12 13:26:26.000000000 +0100
+++ ./app/design/frontend/default/default/template/reports/product_viewed.phtml 2011-01-12 15:54:07.000000000 +0100
@@ -31,10 +31,13 @@
<?php echo $this->__('Recently Viewed Products') ?>
Change item count to 4
Go Admin > System > Configuration > Catatlog > Catalog
Recently Viewed/Compared Products
Default Recently Viewed Products count: 4
or run this SQL command:
UPDATE core_config_data SET value = '4' WHERE path = 'catalog/recently_products/viewed_count';