Modio M730

  • RAM: 6GB
  • Internal Storage: 256GB
  • Display: 7 inches
  • OS: Android 10.0
  • Chipset: MTK6582 Quad-core
  • Connectivity: 4G LTE, Wi-Fi, Bluetooth
  • Battery: 3,000mAh

KShs7,800.00

Out of stock

Out of stock

14 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

  • RAM: 6GB
  • Internal Storage: 256GB
  • Display: 7 inches
  • OS: Android 10.0
  • Chipset: MTK6582 Quad-core
  • Connectivity: 4G LTE, Wi-Fi, Bluetooth
  • Battery: 3,000mAh

Disclaimer

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

Customer Reviews

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' ); ?>