Because of the security alert I decided to display the twitter sidebox only in main page here is how I done that

go where the twitter sidebox is ,

mine is at /includes/modules/sideboxes/twitter_sidebox.php

edit the file

find this argument
Code:
$show_blank_sidebox = true;
delete it and replace with

Code:
 if ($this_is_home_page) {
    $show_blank_sidebox = true;
  } else {
    $show_blank_sidebox = false;
  }


i found the solution from here

https://www.zen-cart.com/tutorials/i...hp?article=270