For the information sidebox:
if ($this_is_checkout_page) {
$show_information = true;
} else {
$show_information = false;
}
For the shopping cart sidebox:
if ($this_is_checkout_page) {
$show_shopping_cart_box = true;
} else {
$show_shopping_cart_box = false;
}
and the create account sidebox:
if ($this_is_checkout_page) {
$show_create_account = true;
} else {
$show_create_account = false;
}
I have the files installed in includes/modules/sideboxes/MY_TEMPLATE




