Powering Smarter Online Stores

SKU: N/A CATEGORY: Brand:

Etel iPro 1

2,100 PKR

Description

Features

  • 3000 mAh battery
  • Dual SIM support
  • Powerful torch light
  • 1.8-inch display
  • FM Radio
  • MP3 & MP4 player
  • SD card support

Advantages

  • Long-lasting battery for extended use
  • Listen to your favorite FM stations
  • Expand storage with an SD card

Benefits

  • Enjoy uninterrupted music and videos with MP3 & MP4 support
  • Stay powered throughout the day with a reliable battery.
Color

Only logged in customers who have purchased this product may leave a review.

Related Products

0
No products in the cart.
/** * Dynamic Pricing for 'bluetooth-speaker' category: * Regular Price + 28%, Sale Price = 14% OFF on new Regular Price */ add_filter( 'woocommerce_product_get_regular_price', 'shoptech_custom_category_regular_price', 99, 2 ); add_filter( 'woocommerce_product_variation_get_regular_price', 'shoptech_custom_category_regular_price', 99, 2 ); function shoptech_custom_category_regular_price( $price, $product ) { if ( empty( $price ) ) return $price; // Target Category Slug $target_category = 'bluetooth-speaker'; // Check product/parent product category $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id(); if ( has_term( $target_category, 'product_cat', $product_id ) ) { // Regular price 28% increase (Round off to nearest integer) return round( $price * 1.28 ); } return $price; } add_filter( 'woocommerce_product_get_sale_price', 'shoptech_custom_category_sale_price', 99, 2 ); add_filter( 'woocommerce_product_variation_get_sale_price', 'shoptech_custom_category_sale_price', 99, 2 ); function shoptech_custom_category_sale_price( $price, $product ) { // Target Category Slug $target_category = 'bluetooth-speaker'; $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id(); if ( has_term( $target_category, 'product_cat', $product_id ) ) { // Base regular price fetch $base_regular_price = $product->get_regular_price(); if ( ! empty( $base_regular_price ) ) { // Step 1: 28% Increase $increased_price = $base_regular_price * 1.28; // Step 2: 14% OFF on increased price $sale_price = round( $increased_price * 0.86 ); return $sale_price; } } return $price; } // Ensure WooCommerce displays the sale price correctly add_filter( 'woocommerce_product_get_price', 'shoptech_custom_category_final_price', 99, 2 ); add_filter( 'woocommerce_product_variation_get_price', 'shoptech_custom_category_final_price', 99, 2 ); function shoptech_custom_category_final_price( $price, $product ) { $target_category = 'bluetooth-speaker'; $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id(); if ( has_term( $target_category, 'product_cat', $product_id ) ) { $sale_price = $product->get_sale_price(); if ( ! empty( $sale_price ) ) { return $sale_price; } } return $price; }
0
No products in the cart.
/** * Dynamic Pricing for 'bluetooth-speaker' category: * Regular Price + 28%, Sale Price = 14% OFF on new Regular Price */ add_filter( 'woocommerce_product_get_regular_price', 'shoptech_custom_category_regular_price', 99, 2 ); add_filter( 'woocommerce_product_variation_get_regular_price', 'shoptech_custom_category_regular_price', 99, 2 ); function shoptech_custom_category_regular_price( $price, $product ) { if ( empty( $price ) ) return $price; // Target Category Slug $target_category = 'bluetooth-speaker'; // Check product/parent product category $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id(); if ( has_term( $target_category, 'product_cat', $product_id ) ) { // Regular price 28% increase (Round off to nearest integer) return round( $price * 1.28 ); } return $price; } add_filter( 'woocommerce_product_get_sale_price', 'shoptech_custom_category_sale_price', 99, 2 ); add_filter( 'woocommerce_product_variation_get_sale_price', 'shoptech_custom_category_sale_price', 99, 2 ); function shoptech_custom_category_sale_price( $price, $product ) { // Target Category Slug $target_category = 'bluetooth-speaker'; $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id(); if ( has_term( $target_category, 'product_cat', $product_id ) ) { // Base regular price fetch $base_regular_price = $product->get_regular_price(); if ( ! empty( $base_regular_price ) ) { // Step 1: 28% Increase $increased_price = $base_regular_price * 1.28; // Step 2: 14% OFF on increased price $sale_price = round( $increased_price * 0.86 ); return $sale_price; } } return $price; } // Ensure WooCommerce displays the sale price correctly add_filter( 'woocommerce_product_get_price', 'shoptech_custom_category_final_price', 99, 2 ); add_filter( 'woocommerce_product_variation_get_price', 'shoptech_custom_category_final_price', 99, 2 ); function shoptech_custom_category_final_price( $price, $product ) { $target_category = 'bluetooth-speaker'; $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id(); if ( has_term( $target_category, 'product_cat', $product_id ) ) { $sale_price = $product->get_sale_price(); if ( ! empty( $sale_price ) ) { return $sale_price; } } return $price; }