Hello guys
This thing is driving me mad.
I am doing what is said in this two links
(http://www.portali.co.nz/zen-cart-ar...t-sidebox.html
and
http://lifefeed.net/zencart/create_sidebox.php)

, but I still cannot see the sidebox I want.

I don't know what I am doing wrong. It's just that I don't see any sidebox.

This is my code which is just what I wrote bearing in mind the code given in the two links I wrote above.

zen-cart\includes\languages\classic\english.php
Code:
<?php  
       define('BOX_HEADING_MICAJALATERAL', 'Mi caja lateral');
?>
zen-cart\includes\modules\sideboxes\streetcat\MICAJALATERAL.php
Code:
<?PHP
require($template->get_template_dir('tpl_MICAJALATERALPHP',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_MICAJALATERAL.PHP');
$title =  BOX_HEADING_MICAJALATERAL;
$left_corner = true;
$right_corner = false;
$right_arrow = false;
$title_link = false;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
?>
zen-cart\includes\templates\classic\sideboxes\tpl_micajalateral.php
Code:
<?php $content = "";
$content .= "Estoy dentro de mi caja lateral!";
?>

Thanks in advance