magento

Upgrade all modules in magento from ssh

  1. ./pear upgrade-all
  2. rm -rf downloader/pearlib/cache/* downloader/pearlib/download/*

Remove side_logo_promo.gif from header in modern theme magento

in 

/app/design/frontend/default/modern/template/page/html/header.phtml

comment out 

 <!–    <img src=”<?php echo $this->getSkinUrl(‘images/side_logo_promo.gif’) ?>” alt=”" class=”side-logo-promo”/> –>

as shown

Create a left hand navigation / verticle category in Magento

Using the modern theme to create a menu like http://www.cl-floraldesigns.co.uk 

More >

Change Payment method titles in magento

Arghh this drove me nuts.. and who came along and fixed it??? My darling partner who is still reminding me of it.

The problem? How to change the terms

Paypal Standard and Check / Money Order

to

Credit Card or Paypal and  Cheque / Postal Order

I got into a dead end thinking this would be a translation problem.  I added the UK translation pack.. which was actually rather handy as it turned out but still could not change the wording.

After pratting about for hours  Lisa taps me on the shoulder and announces that she has done it… turns out you can call payment methods what ever you like just by changing the title in the Payment method admin section… grrr

Problem: remove Enhanced search extention from magento

I installed enhanced search in a magneto install.  Something upset it.  2 copies were showing in system > config > advanced

Searched database but no ref to Hyteckit or similar 

removing from community code threw up errors. so..

locate all the crap

grep -R -B3 -A4 “Hyteckit_EnhancedSearch” *

remove crap

mv Hyteckit_EnhancedSearch.xml ~ <from app/etc/modules/Hyteckit_EnhancedSearch.xml

 mv Hyteckit ~ <from app/code/community

rebuild cache

search still not working in 1.2 :(

turned off enhanced search extension… turns out that in 1.2 it IS the search option… had best put it back on.

I still cant get the search engine to fine ‘red’!!!