Thanks delia for the post and for the contribution also.
I also notice another problem that I have solved.
The problem is in includes/modules/sideboxes/twitter_sidebox.php
the original code generates in the title of the sidebox a wrong link of the sidebox above it or something else. For example if above the twitter sidebox you have a new products sidebox the link in title of twitter sidebox will go you to new products page. Twitter [...] title in sidebox -> links to new products when you click it, or something else.
the original codes was
Code:
<?php
//
// Twitter Sidebox Mod
// includes/languages/english/extra_definitions/twitter_sidebox.php
//
// --------------------------------------------------
// http://www.deliawilsondesign.com mod Zen-Cart
// --------------------------------------------------
// zen-cart Open Source E-commerce
// Copyright (c) 2003-2006 The zen-cart developers
// http://www.zen-cart.com/index.php
// Portions Copyright (c) 2003 osCommerce
// --------------------------------------------------
// This source file is subject to version 2.0 of the GPL license,
// that is bundled with this package in the file LICENSE, and is
// available through the world-wide-web at the following url:
// http://www.zen-cart.com/license/2_0.txt.
// If you did not receive a copy of the zen-cart license and are unable
// to obtain it through the world-wide-web, please send a note to
// [email protected] so we can mail you a copy immediately.
// --------------------------------------------------
// test if box should display
$show_blank_sidebox = true;
if ($show_blank_sidebox == true) {
require($template->get_template_dir('tpl_twitter_sidebox.php',DIR_WS_TEMPLATE, $current_page_base,'sideboxes'). '/tpl_twitter_sidebox.php');
$title = BOX_HEADING_TWITTER_SIDEBOX;
$left_corner = false;
$right_corner = false;
$right_arrow = false;
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
}
?>
I simply add this line of code below
Code:
$right_arrow = false;
to disable the link in title
Code:
$title_link = false;
Bookmarks