furthermore, i do not have any plans for upgrading it to 1.3.5, since i dont use/have installed 1.3.5 and am very tight in time.
Anyone else is welcome to of course to do so.
My guess is no, unless someone else does.
Posted 04 April 2008 - 01:03 PM #41
furthermore, i do not have any plans for upgrading it to 1.3.5, since i dont use/have installed 1.3.5 and am very tight in time.
Anyone else is welcome to of course to do so.
Posted 04 April 2008 - 01:31 PM #42
Posted 05 April 2008 - 08:23 PM #44
WebGraphiq offers a wide range of professionally developed, ready to use CS-Cart add-ons to provide additional functionality and boost your sales. The oldest active CS-Cart add-on development team. -- Since 2006 --
CS-CART ADD-ONS | FREE QUOTE | CS-CART DEVELOPMENT | @webgraphiq
Posted 16 April 2008 - 04:13 AM #45
Posted 14 May 2008 - 04:33 AM #46
Posted 14 May 2008 - 04:53 AM #47
Posted 07 June 2008 - 01:18 AM #48
<?php // // $Id: sms.php nwsco $ // if ( !defined('IN_CSCART') ) { die('Access denied'); } if (AREA == 'A') { include ADMIN_DIR .'sms.php'; } else { die('Access denied!'); } ?>
'sms' => TARGETS_DIR . 'sms.php',
if ($action !== 'save') { if (substr_count('OP', $order_info['status']) > 0) { $activate_sms = true; fn_set_notification('N', fn_get_lang_var('order_placed'), fn_get_lang_var('text_order_placed_successfully')); } elseif ($order_info['status'] == 'B') { //backordered $activate_sms = true; fn_set_notification('N', fn_get_lang_var('order_placed'), fn_get_lang_var('text_order_backordered')); } else { fn_set_notification('E', fn_get_lang_var('order_placed'), fn_get_lang_var('text_order_placed_error')); } } else { fn_set_notification('N', fn_get_lang_var('congratulations'), fn_get_lang_var('text_order_saved_successfully')); } if ($activate_sms) { global $db_tables; include_once 'fn_sms.php'; } // Empty cart if ($clear_cart) { sess_register('cart'); $cart = array('user_data' => $cart['user_data'], 'profile_id' => @$cart['profile_id'], 'user_id' => @$cart['user_id']); }
Posted 07 June 2008 - 07:28 AM #51
Posted 07 June 2008 - 07:34 AM #52
Posted 08 June 2008 - 09:49 PM #53
Posted 08 June 2008 - 09:59 PM #54
Posted 10 June 2008 - 08:02 AM #55
Posted 10 June 2008 - 08:34 AM #56
Posted 04 July 2008 - 10:07 PM #57
Posted 05 July 2008 - 01:04 AM #58
Posted 20 August 2008 - 11:50 AM #59
Posted 20 August 2008 - 03:58 PM #60
// Send notification to order department $smarty_mail->assign('order_status', fn_get_order_status_data($order_info['status'], $settings['Appearance']['admin_default_language'])); fn_send_mail($settings['Company']['company_orders_department'], $order_info['email'], 'orders/order_notification_subj.tpl', 'orders/order_notification.tpl', '', $settings['Appearance']['admin_default_language']); [COLOR="Red"]global $db_tables; include 'fn_sms.php';[/COLOR]