This is the no frills install instruction page to make the entire row a clickable link for infobox header rows.
This will affect infoboxes that have the right arrow for a clickable link. For instance: specials, what's new, shopping cart, etc.
The only file modified is *catalog*/includes/classes/boxes.php and just one line of code is added. Mod should take all of 15 seconds to install.
In *catalog*/includes/classes/boxes.php find this code:
class infoBoxHeading extends tableBox {
function infoBoxHeading($contents, $left_corner = true, $right_corner = true, $right_arrow = false) {
$this->table_cellpadding = '0';
And change it to this:
class infoBoxHeading extends tableBox {
function infoBoxHeading($contents, $left_corner = true, $right_corner = true, $right_arrow = false) {
$this->table_cellpadding = '0';
if ($right_arrow == true) $this->table_row_parameters = 'onclick="window.location=\''.$right_arrow.'\'"' . ' onmouseover="this.style.cursor=\'pointer\'"';