2023 Ford Everest Turbo Trend (4x2)

2023 Ford Everest Turbo Trend (4x2)

2023 Ford Everest Turbo Trend (4x2)

30,000KMs

30,000KMs

Diesel | Cash (Negotiable) | Financing Available

Diesel | Cash (Negotiable) | Financing Available

₱1,395,000

₱1,395,000

Send us a message on Facebook to inquire about this unit

Description

Sample Financing Computation

2023 Ford Everest Turbo Trend (4x2)

FULL DESCRIPTION:

▪️ Color: Arctic White

▪️ Engine Size: 2.0L

▪️ Transmission: Automatic

▪️ Fuel: Diesel

▪️ Mileage: 30,000 kms (w/ casa records)

▪️ Keyless Entry, Spare Key Available

▪️ Push to start

▪️ 7 Seater (leather seats)

▪️ Front & rear parking sensor

▪️ 8 inch bluetooth touchscreen car stereo with Apple Carplay and Android Auto

▪️ Reverse camera

▪️ Manual booklet available

Description

Sample Computation

2023 Ford Everest Turbo Trend (4x2)

FULL DESCRIPTION:

▪️ Color: Arctic White

▪️ Engine Size: 2.0L

▪️ Transmission: Automatic

▪️ Fuel: Diesel

▪️ Mileage: 30,000 kms (w/ casa records)

▪️ Keyless Entry, Spare Key Available

▪️ Push to start

▪️ 7 Seater (leather seats)

▪️ Front & rear parking sensor

▪️ 8 inch bluetooth touchscreen car stereo with Apple Carplay and Android Auto

▪️ Reverse camera

▪️ Manual booklet available

Other Vehicles You Might Be Interested In

Other Vehicles You Might Be Interested In

₱1,195,000

2023 Toyota Innova Zenix (V variant)

Gas | Cash (Negotiable) | Financing Available

40,000KMs

Automatic

₱995,000

2022 Ford Ranger FX4 Max (4x4)

Diesel | Cash (Negotiable) | Financing Available

46,000KMs

Automatic

₱995,000

2019 Toyota Fortuner G

Gas | Cash (Negotiable) | Financing Available

47,000KMs

Automatic

₱1,195,000

2023 Toyota Innova Zenix (V variant)

Gas | Cash (Negotiable) | Financing Available

40,000KMs

Automatic

₱995,000

2022 Ford Ranger FX4 Max (4x4)

Diesel | Cash (Negotiable) | Financing Available

46,000KMs

Automatic

₱995,000

2019 Toyota Fortuner G

Gas | Cash (Negotiable) | Financing Available

47,000KMs

Automatic

₱995,000

2024 Ford Territory Titanium X

Gas | Cash (Negotiable) | Financing Available

10,000KMs

Automatic

Contact Us

How to get in touch with us

How to get in touch with us

Have a question? We're always here to help.

Have a question? We're always here to help.

Schedule Your Viewing

Choose your date and book online now.

Visit our Facebook Page

Call us

Speak to us over the phone.

Viber: 0967 075 6137

Visit us

Valley 1, L5 B27 San Jose Street San Antonio, Sucat, Parañaque, 1700 Metro Manila

Monday to Saturday: 9:00 a.m. - 6:00 p.m.

Sunday: 2:00 p.m. - 6:00 p.m.

/** * This script should be placed on your car product pages. * It uses a robust event delegation method to detect a click on the "Financing" tab, * which is more reliable for dynamic sites like Framer. * It also includes console logs for debugging. */ const initializeCalculatorIntegration = () => { console.log("Hyperdrive Script: Initializing..."); // Use event delegation on the body. This is more robust. document.body.addEventListener('click', (event) => { // Check if the clicked element or its parent is the "Financing" tab. const target = event.target.closest('a'); if (target && target.textContent.trim() === 'Financing') { console.log("Hyperdrive Script: 'Financing' tab clicked."); // Now that the tab is clicked, poll for the iframe and data. const sendVehicleData = () => { const calculatorIframe = document.getElementById('financing-calculator'); const titleElement = document.querySelector('h1'); const priceElement = document.querySelector('[data-testid="price"]'); console.log("Hyperdrive Script: Polling... Iframe found:", !!calculatorIframe, "Title found:", !!titleElement, "Price found:", !!priceElement); if (calculatorIframe && titleElement && priceElement && calculatorIframe.contentWindow) { console.log("Hyperdrive Script: All elements found. Sending data..."); clearInterval(dataCheckInterval); // Stop polling const yearMatch = titleElement.textContent.match(/^\d{4}/); const year = yearMatch ? yearMatch[0] : null; const price = priceElement.textContent.replace(/[^0-9]/g, ''); if (price && year) { const vehicleData = { type: 'autoFinanceData', price: parseFloat(price), year: parseInt(year) }; setTimeout(() => { calculatorIframe.contentWindow.postMessage(vehicleData, '*'); console.log("Hyperdrive Script: Message sent to calculator:", vehicleData); }, 250); } } }; const dataCheckInterval = setInterval(sendVehicleData, 200); setTimeout(() => { clearInterval(dataCheckInterval); }, 7000); } }); }; window.addEventListener('load', initializeCalculatorIntegration);