Lead #1682
Best Contact
Callum — Owner
Email
hello@freshbusinesssolutions.co.uk (person)
Override
Captured Pages
http://freshbusinesssolutions.co.uk/staff
Status: 404
Emails:
View text
http://freshbusinesssolutions.co.uk/our-team
Status: 404
Emails:
View text
Emails:
View text
http://freshbusinesssolutions.co.uk/team
Status: 404
Emails:
View text
http://freshbusinesssolutions.co.uk/about
Status: 404
Emails:
View text
http://freshbusinesssolutions.co.uk/contact
Status: 404
Emails:
View text
http://freshbusinesssolutions.co.uk/
Status: 200
Emails: hello@freshbusinesssolutions.co.uk
View text
Until then, if you need to contact us: Email us at: Hello@freshbusinesssolutions.co.uk Call us at: 01388417747 Book a meeting via Calendly: https://calendly.com/callum-fbg/ window.addEventListener("load",function(event) { init(); }); function init(){ var image = document.getElementById('background-image'); var body = document.getElementById('body'); if ( image === null ) { image = document.getElementById('body'); } if ( image != null ) { if ( image.className !== 'image-unsplash') { image.classList.add('loaded'); body.classList.add('loaded'); } } } /* Subscribe form script */ var ajaxWpUrl = 'https://freshbusinesssolutions.co.uk/wp-admin/admin-ajax.php'; var {pathname} = new URL(ajaxWpUrl); var ajaxurl = `${location.protocol}//${location.hostname}${pathname}`; var security = 'ceba85309a'; var msg = ''; subForm = function( form, resultElement, emailInput, firstnameInput, lastnameInput, token = '' ) { if ( emailInput.value !== '' ) { const firstname = firstnameInput === null ? '' : firstnameInput.value; const lastname = lastnameInput === null ? '' : lastnameInput.value; fetch( ajaxurl, { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8', 'Access-Control-Allow-Origin': '*', }, body: `action=niteo_subscribe&ajax=true&form_honeypot=&email=${ encodeURIComponent(emailInput.value) }&firstname=${ encodeURIComponent(firstname) }&lastname=${ encodeURIComponent(lastname) }&security=${ security }&token=${ token }`, credentials: 'same-origin' } ) .then( (res) => { return res.json(); } ) .then( (data) => { resultElement.innerHTML = data.message; // Display the result inside result element. form.classList.add('-subscribed'); if (data.status == 1) { form.classList.remove('-subscribe-failed'); form.classList.add('-subscribe-successful'); emailInput.value = ''; firstnameInput ? firstnameInput.value = '' : null; lastnameInput ? lastnameInput.value = '' : null; } else { form.classList.add('-subscribe-failed'); } } ) .catch(function(error) { console.log(error.message); }); } else { resultElement.innerHTML = 'Oops! Email is empty.'; } }