PHILODO H8 Electric Bike

ORLMS PHILODO H8 Electric Bike: Dual-Motor 1000W, 35MPH Speed, 48V 23Ah Fat Tire, 21-Speed Gear, All-Terrain, Adults (Ships from China)
Free shipping
Hot
Sold 0 only 999999999 item(s) left
$1,399.99 $1,599.90 Save $199.91
Color:  Black&Blue
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Share the love

Watch the creative process behind the product

Click to watch
See how it works
Description

Specifications

General Information
​Model Name: PHILODO H8 Electric Bike
​Type: Electric Mountain Bike
​Age Range: Adult
​Brand: PHILODO
​Color: White/Black
​Item Weight: 78.3 lbs
​Package Weight: 43.5 kg (96 lbs)
​Item Dimensions: 57.3 x 28 x 8 inches
​Package Dimensions: 57.3 x 28 x 8 inches
​Power System
​Motor Type: Dual 1500W Peak High-Speed Brushless Geared Hub Motors
​Combined Power: 3000W Peak
​Torque: 82Nm per motor
​Battery Type: 48V 26Ah Lithium Battery
​Battery Capacity: 440 Watt-Hours (kWh not applicable)
​Charging Time: Approximately 5-7 hours (with 3A charger)
​Range: Up to 40-62 miles (depending on riding style, terrain, and conditions)
​Top Speed: Up to 35 MPH (in Pure Electric or Throttle Mode)
​Frame and Suspension
​Frame Material: Aluminum
​Frame Design: Upgraded 6061 Aluminum Frame
​Suspension Type: Front Adjustable Aluminum Alloy Shock Absorber
​Suspension Fork: Lockable Suspension Fork for smoother riding on all terrains
​Wheel Size: 26 Inches
​Tire Size: 26 * 4.0" Fat Tires
​Tire Material: Aluminum Wheels with Fat Tires (4" width)
​Braking System
​Brake Type: Dual Hydraulic Disc Brakes (Front and Rear)
​Brake Features: Strong and responsive braking force for safe riding in all conditions
​Drivetrain and Gearing
​Number of Speeds: 21-Speed Rear Gear
​Gear Shifter Type: Trigger
​Bicycle Gear Shifter: 21-Speed
​Display and Controls
​Display Type: Smart LCD Display
​Features:
Speed Data
Assist Level
Battery Indicator
Mileage Display
​Night Riding: High-luminance headlight for improved visibility
​Additional Features
​Fat Tires: 26 * 4.0" Fat Tires for enhanced grip, traction, and stability on diverse terrains (snow, sand, mud, etc.)
​Fenders: Full Cover Fenders to protect against dirt and debris
​Rear Rack: Rear Rack with 330 lbs capacity for carrying supplies or luggage
​Tail Light: Built-in tail light for night riding safety
​Phone Holder: Mobile Phone Holder with USB port for convenience during rides
​Seat: Wider Adjustable Seat (Height: 32.7" - 38.6")

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.

Frequently asked questions

Is there a discount coupon I can use?

Sure! Use ​ORLMS20 for $20 off. Enjoy your shopping!

How long does it take for the delivery to arrive?

We have stock available locally. Delivery will take 5-8 days at the earliest, depending on the specific circumstances.

What is the warranty period?

Warranty Details:

Consumable parts: 1 month

Major components: 1 year

Battery: 6 months

What is the return and refund policy?

12-month warranty covers defects (you pay shipping).

14-day returns – buyer covers shipping, must be unopened/unused.

Damaged items? Contact courier immediately + provide photos for claim.