Sitene WhatsApp ile İletişime Geç Butonu Ekle
Sitene WhatsApp ile İletişime Geç Butonu Ekle Html - Css
Aşağıdaki Kodu Web Sitenizin tüm sayfalarını kapsayan bir yere kopyalayın. (header gibi)
index.php - index.html veya admin panelinizdeki header kod kısmına yapıştırın.
En Alt bölümde yer alan telefon numarası ve size ulaşmasını istediğiniz otomatik mesaj kısmını kendinize göre düzenleyin.
Kodu Sitenize Ekledikten Sonra Sağ Alt Köşesinde Görünecektir.
Güle güle kullanın. :)
<script>
class LandbotWhatsAppBtn {
constructor({ dialcode, phone, text }) {
this.dialcode = dialcode;
this.phone = phone;
this.text = text;
}
renderButton() {
let fontAwesome = document.createElement("script");
fontAwesome.setAttribute(
"src",
"https://kit.fontawesome.com/2640aa91b4.js"
);
document.body.appendChild(fontAwesome);
let roboto = document.createElement("link");
roboto.setAttribute(
"href",
"https://fonts.googleapis.com/css?family=Roboto&display=swap"
);
roboto.setAttribute("rel", "stylesheet");
document.body.appendChild(roboto);
let styles = document.createElement("link");
styles.setAttribute(
"href",
"https://mermermarble.com/whatsapp/wa.css"
);
styles.setAttribute("rel", "stylesheet");
styles.setAttribute("type", "text/css");
document.body.appendChild(styles);
let root = document.createElement("div");
root.className = "WhatsAppButton__root";
root.setAttribute("style", "position: fixed; bottom: 10px; right: 20px;");
document.body.appendChild(root);
let button_root = document.createElement("a");
button_root.setAttribute(
"href",
`https://api.whatsapp.com/send?phone=${this.dialcode}${this.phone}&text=${this.text}`
);
button_root.setAttribute("style", "text-decoration: none");
button_root.setAttribute("target", "_blank");
root.appendChild(button_root);
let button = document.createElement("button");
button.setAttribute("class", "landbot-whatsapp__button");
button_root.appendChild(button);
let whatsappIcon = document.createElement("i");
whatsappIcon.setAttribute("class", "fab fa-whatsapp");
whatsappIcon.setAttribute("style", "font-size: 24px; margin-right: 5px");
button.appendChild(whatsappIcon);
let button_text = document.createElement("p");
button_text.setAttribute("style", "margin: 0");
button_text.innerText = "WhatsApp!";
button.appendChild(button_text);
}
}
var whatsAppBtn = new LandbotWhatsAppBtn({
dialcode: "+90",
phone: "534 563 2113",
text: "Merhaba, sizinle iletişime geçmek istiyorum! ( Hello, i want to contact you! )"
});
whatsAppBtn.renderButton();
</script>