botahia.com
Open in
urlscan Pro
2606:4700:3030::6815:5455
Public Scan
Submitted URL: http://botahia.com/
Effective URL: https://botahia.com/
Submission: On July 28 via manual from NL — Scanned from NL
Effective URL: https://botahia.com/
Submission: On July 28 via manual from NL — Scanned from NL
Form analysis
6 forms found in the DOMGET https://botahia.com/search
<form action="https://botahia.com/search" class="input-wrapper" method="get">
<input type="search" class="form-control" name="query" autocomplete="off" placeholder="Arama yap..." value="" required="">
<button class="btn btn-search" type="submit" title="submit-button">
<i class="d-icon-search"></i>
</button>
</form>
GET https://botahia.com/search
<form action="https://botahia.com/search" class="input-wrapper" method="get">
<input type="search" class="form-control" name="query" autocomplete="off" placeholder="Arama yap..." value="" required="">
<button class="btn btn-search" type="submit" title="submit-button">
<i class="d-icon-search"></i>
</button>
</form>
GET https://botahia.com/search
<form action="https://botahia.com/search" class="input-wrapper" method="get">
<input type="search" class="form-control" name="query" autocomplete="off" placeholder="Arama yap..." value="" required="">
<button class="btn btn-search" type="submit" title="submit-button">
<i class="d-icon-search"></i>
</button>
</form>
POST https://botahia.com/api/popup-post
<form action="https://botahia.com/api/popup-post" method="post">
<input type="hidden" name="_token" value="6PBYAy3BIiWkaY9XlLWAA5iX3s6Lu2UrF0pqcpTo" autocomplete="off">
</form>
GET https://wa.me/905448462217
<form class="send-with-whatsapp" action="https://wa.me/905448462217" method="get">
<input type="hidden" class="text-part" data-first-part="İlgili Ürün:" value="İlgili Ürün: ">
<input type="hidden" name="text">
<i class="ksicon whatsapp-2"></i>
<div>
<input type="text" class="text-part" value="" placeholder="Whatsapp'tan bilgi alın">
<button type="submit"><i class="ksicon paper-plane"></i></button>
</div>
</form>
<form class="add-product-variation-to-cart-form">
<div class="product-price">
<ins class="price" style="text-decoration: none" x-text="formatPrice(product.price, (product.currency ? product.currency.symbol : '₺'))">₺ 0,00</ins>
<template x-if="product.discounted_price">
<del class="old-price" x-text="formatPrice(product.normal_price, product.currency.symbol)"></del>
</template>
</div>
<template x-for="product_description in product.product_descriptions">
<p class="product-short-desc" x-html="product_description.text"></p>
</template>
<div class="variations">
<template x-for="item in product.variation_tree">
<div class="product-form product-color variation">
<span x-text="item.variation.name"></span>
<template x-for="variation_option in item.variation_options">
<div>
<label>
<template x-if="item.variation.type === 'color'">
<span class="variation-option-color" :style="{backgroundColor: variation_option.primary_color}"></span>
</template>
<template x-if="item.variation.type === 'image'">
<span>
<template x-if="variation_option.image">
<img :src="variation_option.image.url" class="variation-option-image">
</template>
<template x-if="!variation_option.image">
<span x-text="variation_option.name" class="variation-option-standard"></span>
</template>
</span>
</template>
<template x-if="item.variation.type === 'product_photo'">
<span>
<template x-if="variation_option.product_photo_url">
<img :src="variation_option.product_photo_url" class="variation-option-image">
</template>
<template x-if="!variation_option.product_photo_url">
<span x-text="variation_option.name" class="variation-option-standard"></span>
</template>
</span>
</template>
<template x-if="item.variation.type === 'standard'">
<span x-text="variation_option.name" class="variation-option-standard"></span>
</template>
<input type="radio" :data-variation-id="item.variation.id" :name="'variation[' + item.variation.id + ']'" :value="variation_option.id" :checked="variation_option.is_checked"
@change="App.prototype.handleVariationChanges($($event.target), JSON.parse(product.product_variation_data_as_json), 0, product)">
</label>
</div>
</template>
</div>
</template>
</div>
<template x-for="feature in product.features?.filter(feature => feature.type === 'choose_one')">
<div class="form-group">
<label x-text="feature.name"></label>
<select class="form-control" :name="'features[' + feature.unique_id + ']'" :required="feature.is_required">
<option value="" x-text="translates.choose"></option>
<template x-for="option in feature.options">
<option :value="option.unique_id" x-text="option.name"></option>
</template>
</select>
</div>
</template>
<template x-for="feature in product.features?.filter(feature => feature.type === 'multiple')">
<div class="form-group">
<template x-for="option in feature.options">
<div class="form-checkbox">
<input type="checkbox" :name="'features[' + feature.unique_id + '][]'" class="custom-checkbox" :id="option.unique_id" :value="option.unique_id" @change="App.prototype.checkBoxChanged(feature.unique_id)">
<label :for="option.unique_id" class="form-control-label">
<span x-text="option.name"></span>
<template x-if="option.price > 0">
<span x-text="'(+' + option.price + ' ' + translates.currency_code + ')'"></span>
</template>
</label>
</div>
</template>
</div>
</template>
<template x-for="product_order_input in product.product_order_inputs">
<div>
<label x-text="product_order_input.name"></label>
<input class="form-control" type="text" :name="'order_inputs[' + product_order_input.unique_id + ']'" :required="product_order_input.is_required">
</div>
</template>
<hr class="product-divider">
<div class="product-form product-qty">
<div class="product-form-group">
<div class="input-group mr-2">
<button type="button" class="quantity-minus d-icon-minus" @click="quantity--"></button>
<input class="form-control" type="number" name="quantity" x-model="quantity" min="1" :max="product.stock_maximum_order ?? 100000" max="100000">
<button type="button" class="quantity-plus d-icon-plus" @click="quantity++"></button>
</div>
<button type="submit" class="btn-product btn-cart text-normal ls-normal font-weight-semi-bold" :disabled="isSubmitButtonDisabled(product)" :data-out-of-stock="product.is_active && product.stock === 0" data-out-of-stock="">
<i class="d-icon-bag"></i>
<span class="in-stock">Sepete Ekle</span>
<span class="out-of-stock">Tükenmiş</span>
</button>
<input type="hidden" class="product-uid-input" name="product_unique_id" :value="product.unique_id">
<input type="checkbox" name="redirect" value="https://botahia.com/basket" class="d-none">
<button type="submit" class="btn-product btn-cart text-normal ls-normal font-weight-semi-bold buy-now" :disabled="isSubmitButtonDisabled(product)">
<i class="d-icon-bag"></i>Hemen Al</button>
</div>
</div>
</form>
Text Content
Türkçe English عربي (506) 099 03 32 Mağaza Bilgileri WHATSAPP: (544) 846 22 17 Sepet: 0,00 ₺ 0 SEPET kapatSepet SEPETINIZ ŞU ANDA BOŞ Alışverişinizi tamamlamak için sepetinize ürün ekleyin. Tüm Kategoriler * Tüm Kategoriler * Tüm Ürünler * Set Ürünler * Vitaminler * Kozmos * Kremler * Bakım Ürünleri * Aromaterapi Yağlar * Saç Bakım Ürünleri * Bitki Ekstraktları * * Tüm Ürünler * Set Ürünler * Vitaminler * Kozmos * Kremler Blog Hızlı İncele Tüm Ürünler YOĞUN BAKIM ONARIM KREMİ (200ML) 1.200,00 TL 1.500,00 TL Hızlı İncele Tüm Ürünler ŞAMPUAN 750,00 TL 1.000,00 TL Hızlı İncele Bitki Ekstraktları OKSİJEN SERUM 750,00 TL 1.000,00 TL Hızlı İncele Tüm Ürünler PRO AİR SPRAY 450,00 TL 600,00 TL Hızlı İncele Bakım Ürünleri ETBENİ SOLÜSYONU 450,00 TL 599,00 TL Hızlı İncele Bakım Ürünleri MASAJ SPREYİ 200,00 TL 250,00 TL Hızlı İncele Tüm Ürünler MACUN NİRVANA (240G) 1.500,00 TL 2.000,00 TL Hızlı İncele Kremler REPAİR CREAM (50ML) 350,00 TL 499,00 TL Hızlı İncele Aromaterapi Yağlar AĞIZ BAKIM YAĞI (30ML) 250,00 TL 350,00 TL Hızlı İncele Bakım Ürünleri HÜVOİL (10ML) 250,00 TL 299,00 TL Hızlı İncele Kozmos ANTI AGING CREAM (40ML) 3.013,00 TL 3.499,00 TL Hızlı İncele Bakım Ürünleri SUPEREYE PLUS OIL 1.500,00 TL 1.750,00 TL Hızlı İncele Bakım Ürünleri CARE CREAM 4XL (300ML) 1.213,00 TL 1.499,00 TL Hızlı İncele Bakım Ürünleri MİX OİL(10ML) 250,00 TL 299,00 TL Hızlı İncele Saç Bakım Ürünleri SAÇ İKSİRİ (100ML) 300,00 TL 399,00 TL Hızlı İncele Bitki Ekstraktları NÖRON EKSTRAKT 450,00 TL 600,00 TL SON BLOG YAZILARI 02 Temmuz DEMIR EKSIKLIĞI, KANSIZLIK, OKSIJEN EKSIKLIĞI Tümünü oku 22 Haziran DOMATES ÇEKİRDEĞİ YAĞI Tümünü oku 10 Haziran FESLEĞEN YAĞI Tümünü oku * KATEGORILER * Tüm Ürünler * Set Ürünler * Vitaminler * Kozmos * Kremler * Bakım Ürünleri * Aromaterapi Yağlar * Saç Bakım Ürünleri * Bitki Ekstraktları KURUMSAL * Çerez Politikası * Mesafeli Satış Sözleşmesi * Açık Rıza Beyanı * KVKK Aydınlatma Metni * Değişim ve İade Politikası * Site Haritası Bu e-ticaret sitesi Kolay Sipariş E-Ticaret Paketleri ile hazırlanmıştır. Anasayfa Paylaş Sepetim Arama Menü * Anasayfa * Kategoriler * Tüm Ürünler * Set Ürünler * Vitaminler * Kozmos * Kremler * Bakım Ürünleri * Aromaterapi Yağlar * Saç Bakım Ürünleri * Bitki Ekstraktları * Mağaza Bilgileri * Mağazayı paylaş * Çerez Politikası * Mesafeli Satış Sözleşmesi * Açık Rıza Beyanı * KVKK Aydınlatma Metni * Değişim ve İade Politikası Form gönderildi. Barkod: 12345670 Kategori: ₺ 0,00 -------------------------------------------------------------------------------- Sepete Ekle Tükenmiş Hemen Al -------------------------------------------------------------------------------- Ürünü Paylaş: Çerezler Daha iyi hizmet sunabilmek için sitemizde çerezler kullanılmaktadır. Çerez tercihlerinizi düzenleyebilir veya sitemizde gezinmeye devam ederek çerez kullanımını kabul etmiş sayılırsınız. Tercihler Tamam 取消 确认 Web sitemizin temel özelliklerinden yararlanmak için lütfen tarayıcınızın JavaScript özelliğini aktif ediniz. Kullanmakta olduğunuz cihaz/web tarayıcısı çerezleri desteklemiyor yada bloke ediyor. Sistemin temel özelliklerinden yararlanabilmek için çerez destekleyen bir tarayıcı kullanmalısınız. Çerez politikamız hakkında daha fazla bilgi almak için tıklayınız.