Back to products
Tecno T352
Tecno T352 Original price was: KShs3,500.00.Current price is: KShs2,800.00.

Tecno T315

Product Details

Key Features
Display:2.4” QQVGA, 128*160
Memory: 4MB ROM, 4MB RAM
Connectivity: FM Radio, Palmchat, Facebook, Bluetooth
Operating System: COS
Processor: MT6261D
Battery Capacity: 2500mAh long standby

KShs2,200.00

Out of stock

Out of stock

21 People watching this product now!
  • Pick up from the GEA Store

To pick up today

Free

  • Courier delivery

Our courier will deliver to the specified address

2-3 Days

Free

  • DHL Courier delivery

DHL courier will deliver to the specified address

2-3 Days

Free

  • Warranty 1 year

Payment Methods:

Description

Disclaimer

Prices and stock levels are subject to change without notice. Please verify before ordering.

Customer Reviews

0 reviews
0
0
0
0
0

There are no reviews yet.

Be the first to review “Tecno T315”

Your email address will not be published. Required fields are marked *

1 2 3 4 5
1 2 3 4 5
1 2 3 4 5

Shopping cart
Sign in
Shopping cart
Sign in
⚠️ You are offline. Some features may not work. Check your connection.
3bb0dc6136" />

No account yet?

⚠️ You are offline. Some features may not work. Check your connection.
0 items Cart
' . "\n"; }, 5 );/* ===================================================== 32. CHECKOUT: AJAX REMOVE ITEM — SERVER SIDE ===================================================== */ add_action( 'wp_ajax_gea_checkout_remove_item', 'gea_checkout_remove_item_handler' ); add_action( 'wp_ajax_nopriv_gea_checkout_remove_item', 'gea_checkout_remove_item_handler' );function gea_checkout_remove_item_handler() { check_ajax_referer( 'gea_checkout_remove', 'security' ); $cart_item_key = sanitize_text_field( $_POST['cart_item_key'] ?? '' ); if ( ! $cart_item_key ) { wp_send_json_error( [ 'message' => 'Missing cart item key.' ] ); } $removed = WC()->cart->remove_cart_item( $cart_item_key ); if ( ! $removed ) { wp_send_json_error( [ 'message' => 'Could not remove item.' ] ); } WC()->cart->calculate_totals(); ob_start(); woocommerce_order_review(); $html = ob_get_clean(); wp_send_json_success( [ 'order_review_html' => $html, 'cart_count' => WC()->cart->get_cart_contents_count(), ] ); }/* ===================================================== 33. CHECKOUT: AJAX REMOVE ITEM — FRONT END ===================================================== */ add_action( 'wp_footer', function() { if ( ! is_checkout() ) return; $nonce = wp_create_nonce( 'gea_checkout_remove' ); $ajax_url = admin_url( 'admin-ajax.php' ); ?>