I'm stumped. I'm not so sure what is the right answer. I'll do some research and get back to you if I bump into an anything. You should email the people at iContact as they probably could answer your iContact question..
Francis,.
Are you looking to erase the language definitions or the boxes on the columns ? .
Chris..
Hi,.
I want to erase boxes..
Thank for the reply...
Francis,.
You will find the boxes in includes/column_left.php and includes/column_right.php.
Just comment out the boxes you don't want to display..
Ie include(DIR_WS_BOXES'best_sellers.php');.
Change to: // include(DIR_WS_BOXES'best_sellers.php');.
Chris..
Thanks, it works for everything exept for "tell a friend" because the code is different. If I add // before include, there's is an error message, if I delete the code there's an error message too..
Here's the code:.
If (isset($HTTP_GET_VARS['products_id'])) {.
If (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND) include(DIR_WS_BOXES'tell_a_friend.php');.
} else {..
Francis,.
Try this:.
If (isset($HTTP_GET_VARS['products_id'])) {.
If (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND)// include(DIR_WS_BOXES'tell_a_friend.php');.
} else {.
Chris..
That won't work. Comment out the entire statement:.
If (isset($HTTP_GET_VARS['products_id'])) {.
// if (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND) include(DIR_WS_BOXES'tell_a_friend.php');.
} else {..
I tried this already like I said, it's not working, look what's the error message:.
Parse error: syntax error, unexpected '}' in C:\EasyPHP-5.3.3\www\catalog\includes\column_right.php on line 37..
Hello,.
I want to erase all this:.
Notifications, tell a friend, quick find, reviews, and the message "This product was added to our catalog on...".
What do I do ?

