Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Getting rid of the notificationa box in checkout_success


diy

Recommended Posts

I have disabled the notifications box BUT people that actually are buying products ara clicking the notifications box at check out

 

found this at checkout_suceess.php around line 92

 

<?php
 if ($global['global_product_notifications'] != '1') {
  echo TEXT_NOTIFY_PRODUCTS . '<br><p class="productsNotifications">';

   $products_displayed = array();
   for ($i=0, $n=sizeof($products_array); $i<$n; $i++) {
     if (!in_array($products_array[$i]['id'], $products_displayed)) {
       echo tep_draw_checkbox_field('notify[]', $products_array[$i]['id']) . ' ' . $products_array[$i]['text'] . '<br>';
       $products_displayed[] = $products_array[$i]['id'];
     }
   }

   echo '</p>';
 } else {
   echo TEXT_SEE_ORDERS . '<br><br>' . TEXT_CONTACT_STORE_OWNER;
 }
?>

 

and one idea is to change it to

 

<?php

   echo TEXT_SEE_ORDERS . '<br><br>' . TEXT_CONTACT_STORE_OWNER;

?>

 

or comment it out alltogether . Any other idea on what to put there ?

 

Notifications on a product AFTER purchace dont make any sense and I guess customers click on it because they thing they will be notified on their ORDER.

 

PS wish the topic starter could edit the topic title it should be

Getting rid of the notifications box in checkout_success

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...