Lead #3841
Best Contact
Anthony Parkin — Owner
Email
info@qualityph.co.uk (person)
Override
Captured Pages
http://qualityph.co.uk/staff
Status: 404
Emails:
View text
http://qualityph.co.uk/our-team
Status: 404
Emails:
View text
http://qualityph.co.uk/meet-the-team
Status: 404
Emails:
View text
http://qualityph.co.uk/team
Status: 404
Emails:
View text
http://qualityph.co.uk/about
Status: 404
Emails:
View text
http://qualityph.co.uk/contact
Status: 200
Emails: info@qualityph.co.uk
View text
Toggle navigation Home New Boiler About Services View all BATHROOM INSTALLATION BOILER INSTALLATION BOILER REPAIR More Uponor Baxi Reviews Gallery Your Safety Contact AAAA3-Home AAAA3-New Boiler AAAA3-About Services View all BATHROOM INSTALLATION BOILER INSTALLATION BOILER REPAIR More Uponor Baxi AAAA3-Reviews AAAA3-Gallery AAAA3-Your Safety AAAA3-Contact GET IN TOUCH AND WE WILL GET BACK TO YOU AS SOON AS POSSIBLE CONTACT US Request A Quote Contact Information Name * Email Phone * Job Information Postcode * Preferred Start Date * Job Description Submit Tennyson House, 1 Frederick St N, Meadowfield, Durham DH7 8NB info@qualityph.co.uk 07968 147611 01913783831 Our Company About Services Gallery Reviews Contact Contact Us Today Tennyson House, 1 Frederick St N, Meadowfield, Durham DH7 8NB 07968 147611 01913783831 info@qualityph.co.uk © 2025 Quality Plumbing & Heating All rights reserved | Websites For Tradesmen - by BUILT | Privacy policy | V2 Theme (function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = '//connect.facebook.net/en_GB/sdk/xfbml.customerchat.js#xfbml=1&version=v3.2&autoLogAppEvents=1' fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); $(document).ready(function () { var is_mobile = false; if ($('.captop').css('display') == 'none') { is_mobile = true; } // change iframes if (is_mobile == true) { $('iframe').each(function () { var regExp = /.*(youtube|vimeo).*/; var match = $(this).attr('src').match(regExp); // console.log("embed"); // console.log($( this ).attr('src')); // console.log(match); if (match != null) { $(this).width("100%"); $(this).height("auto"); } }); } $('ul.nav li.dropdown').hover(function () { $(this).find('.dropdown-menu').stop(true, true).fadeIn(); }, function () { $(this).find('.dropdown-menu').stop(true, true).fadeOut(); }); }); /*JCasp-Developer Below code is for sticky contact form in Services-Page (point-3) starts from here on 22/08/2018 */ $(document).ready(function () { if ($(".side-bar-lists").length) { var height_contact_form = $('#contact').height(); var height_service = $('.service-div-sticky').height(); var height_sidebar = $('.side-bar-lists').height(); var height_navebar = $('.navbar').height() - 15; var width_contact_form = $('#contact').width(); var distance_from_top_service = $('.service-div-sticky').offsettop; // we need to know if the navbar is fixed var distance_from_top_contact_form = $('#contact').offsettop - height_navebar; var contact_form_ret = height_navebar; if ($(window).width() > 767) { $(window).scroll(function (event) { if (height_service > height_contact_form + height_sidebar) { var windows_scroll = $(window).scrollTop() + contact_form_ret; if ((windows_scroll) > (distance_from_top_service + height_service - height_contact_form - contact_form_ret)) { if ($('#contact').css('position') != 'absolute') { var difference_distance_from_top_contact_form = $('#contact').offsettop - contact_form_ret - distance_from_top_contact_form; $('#contact').css('margin-top', difference_distance_from_top_contact_form); } $('#contact').css('position', 'absolute'); $('#contact').css('width', width_contact_form); } else if (windows_scroll > distance_from_top_contact_form) { $('#contact').css('position', 'fixed'); $('#contact').css('margin-top', (- distance_from_top_contact_form + contact_form_ret)); $('#contact').css('width', width_contact_form); $('#contact').css('top', 'unset'); } else { $('#contact').css('position', 'unset'); $('#contact').css('margin-top', 'unset'); $('#contact').css('width', width_contact_form); $('#contact').css('top', 'unset'); } } }); } } }); function HandleFixedNav(isHomePage = false) { if (isHomePage) { if (($(window).scrollTop() > 50) || ($(window).width() < 767)) { $(".navbar-fixed-top").addClass("top-nav-collapse"); } else { $(".navbar-fixed-top").removeClass("top-nav-collapse"); } // if mobile ensure padding is there if ($(window).width() < 767) { /* $(".innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".new_innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".iq-banner").css({ "margin-top": ($(".navbar").height() - 2) }); // background image $("#page-top").css({ "margin-top": ($(".navbar").height() - 2) });*/ } else { $(".innerpage_banner").css({"margin-top": 0}); $(".new_innerpage_banner").css({"margin-top": 0}); $(".iq-banner").css({"margin-top": 0}); // background image $("#page-top").css({"margin-top": 0}); } } /* else { // -2 so there is no white blead through $(".innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".new_innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".iq-banner").css({ "margin-top": ($(".navbar").height() - 2) }); $('.navbar').removeClass('nav-inner'); $('.navbar').addClass('navbar-fixed-top'); } */ } function nav() { HandleFixedNav(); } $(window).ready(function () { HandleFixedNav(); }); $(window).scroll(function () { HandleFixedNav(); }); //notification /** * function to open modal * @param string title * @param string body * @param htmnl bodyHTML * @param string buttonText * @param boolean forceShow * */ function showNotificationModal(title, body, bodyHTML, buttonText, delayTimeDisplay, forceShow) { if ($("#notificationModal").length <= 0) return if (delayTimeDisplay == undefined && delayTimeDisplay == undefined) { delayTimeDisplay = 500; } setTimeout(function () { var coockieName = 'notificationModalShow'; if (forceShow == true) { setCookie(coockieName, 'notificationShowned', -1); } var doAction = getCookie(coockieName); if (body == undefined && bodyHTML == undefined) { doAction = false; } if (! doAction) { if (title == undefined || title == null) { $("#notificationModalHeader").hidden(); } else { $("#notificationModalHeader").text(title); } if (buttonText == undefined || buttonText == null) { $("#notificationModalButton").text("Close"); } else { $("#notificationModalButton").text(buttonText); } if (body != undefined && body != null) { $("#notificationModalBody").html("<p>" + body + "</p>"); } else if (bodyHTML != undefined && bodyHTML != null) { $("#notificationModalBody").html(bodyHTML); } $("#notificationModal").modal('show'); setCookie(coockieName, 'notificationShowned', 1) } else { // nothing } }, delayTimeDisplay); } function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return null; } window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-96286129-40');
http://qualityph.co.uk/contact
Status: 200
Emails: info@qualityph.co.uk
View text
Toggle navigation Home New Boiler About Services View all BATHROOM INSTALLATION BOILER INSTALLATION BOILER REPAIR More Uponor Baxi Reviews Gallery Your Safety Contact AAAA3-Home AAAA3-New Boiler AAAA3-About Services View all BATHROOM INSTALLATION BOILER INSTALLATION BOILER REPAIR More Uponor Baxi AAAA3-Reviews AAAA3-Gallery AAAA3-Your Safety AAAA3-Contact GET IN TOUCH AND WE WILL GET BACK TO YOU AS SOON AS POSSIBLE CONTACT US Request A Quote Contact Information Name * Email Phone * Job Information Postcode * Preferred Start Date * Job Description Submit Tennyson House, 1 Frederick St N, Meadowfield, Durham DH7 8NB info@qualityph.co.uk 07968 147611 01913783831 Our Company About Services Gallery Reviews Contact Contact Us Today Tennyson House, 1 Frederick St N, Meadowfield, Durham DH7 8NB 07968 147611 01913783831 info@qualityph.co.uk © 2025 Quality Plumbing & Heating All rights reserved | Websites For Tradesmen - by BUILT | Privacy policy | V2 Theme (function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = '//connect.facebook.net/en_GB/sdk/xfbml.customerchat.js#xfbml=1&version=v3.2&autoLogAppEvents=1' fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); $(document).ready(function () { var is_mobile = false; if ($('.captop').css('display') == 'none') { is_mobile = true; } // change iframes if (is_mobile == true) { $('iframe').each(function () { var regExp = /.*(youtube|vimeo).*/; var match = $(this).attr('src').match(regExp); // console.log("embed"); // console.log($( this ).attr('src')); // console.log(match); if (match != null) { $(this).width("100%"); $(this).height("auto"); } }); } $('ul.nav li.dropdown').hover(function () { $(this).find('.dropdown-menu').stop(true, true).fadeIn(); }, function () { $(this).find('.dropdown-menu').stop(true, true).fadeOut(); }); }); /*JCasp-Developer Below code is for sticky contact form in Services-Page (point-3) starts from here on 22/08/2018 */ $(document).ready(function () { if ($(".side-bar-lists").length) { var height_contact_form = $('#contact').height(); var height_service = $('.service-div-sticky').height(); var height_sidebar = $('.side-bar-lists').height(); var height_navebar = $('.navbar').height() - 15; var width_contact_form = $('#contact').width(); var distance_from_top_service = $('.service-div-sticky').offsettop; // we need to know if the navbar is fixed var distance_from_top_contact_form = $('#contact').offsettop - height_navebar; var contact_form_ret = height_navebar; if ($(window).width() > 767) { $(window).scroll(function (event) { if (height_service > height_contact_form + height_sidebar) { var windows_scroll = $(window).scrollTop() + contact_form_ret; if ((windows_scroll) > (distance_from_top_service + height_service - height_contact_form - contact_form_ret)) { if ($('#contact').css('position') != 'absolute') { var difference_distance_from_top_contact_form = $('#contact').offsettop - contact_form_ret - distance_from_top_contact_form; $('#contact').css('margin-top', difference_distance_from_top_contact_form); } $('#contact').css('position', 'absolute'); $('#contact').css('width', width_contact_form); } else if (windows_scroll > distance_from_top_contact_form) { $('#contact').css('position', 'fixed'); $('#contact').css('margin-top', (- distance_from_top_contact_form + contact_form_ret)); $('#contact').css('width', width_contact_form); $('#contact').css('top', 'unset'); } else { $('#contact').css('position', 'unset'); $('#contact').css('margin-top', 'unset'); $('#contact').css('width', width_contact_form); $('#contact').css('top', 'unset'); } } }); } } }); function HandleFixedNav(isHomePage = false) { if (isHomePage) { if (($(window).scrollTop() > 50) || ($(window).width() < 767)) { $(".navbar-fixed-top").addClass("top-nav-collapse"); } else { $(".navbar-fixed-top").removeClass("top-nav-collapse"); } // if mobile ensure padding is there if ($(window).width() < 767) { /* $(".innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".new_innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".iq-banner").css({ "margin-top": ($(".navbar").height() - 2) }); // background image $("#page-top").css({ "margin-top": ($(".navbar").height() - 2) });*/ } else { $(".innerpage_banner").css({"margin-top": 0}); $(".new_innerpage_banner").css({"margin-top": 0}); $(".iq-banner").css({"margin-top": 0}); // background image $("#page-top").css({"margin-top": 0}); } } /* else { // -2 so there is no white blead through $(".innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".new_innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".iq-banner").css({ "margin-top": ($(".navbar").height() - 2) }); $('.navbar').removeClass('nav-inner'); $('.navbar').addClass('navbar-fixed-top'); } */ } function nav() { HandleFixedNav(); } $(window).ready(function () { HandleFixedNav(); }); $(window).scroll(function () { HandleFixedNav(); }); //notification /** * function to open modal * @param string title * @param string body * @param htmnl bodyHTML * @param string buttonText * @param boolean forceShow * */ function showNotificationModal(title, body, bodyHTML, buttonText, delayTimeDisplay, forceShow) { if ($("#notificationModal").length <= 0) return if (delayTimeDisplay == undefined && delayTimeDisplay == undefined) { delayTimeDisplay = 500; } setTimeout(function () { var coockieName = 'notificationModalShow'; if (forceShow == true) { setCookie(coockieName, 'notificationShowned', -1); } var doAction = getCookie(coockieName); if (body == undefined && bodyHTML == undefined) { doAction = false; } if (! doAction) { if (title == undefined || title == null) { $("#notificationModalHeader").hidden(); } else { $("#notificationModalHeader").text(title); } if (buttonText == undefined || buttonText == null) { $("#notificationModalButton").text("Close"); } else { $("#notificationModalButton").text(buttonText); } if (body != undefined && body != null) { $("#notificationModalBody").html("<p>" + body + "</p>"); } else if (bodyHTML != undefined && bodyHTML != null) { $("#notificationModalBody").html(bodyHTML); } $("#notificationModal").modal('show'); setCookie(coockieName, 'notificationShowned', 1) } else { // nothing } }, delayTimeDisplay); } function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return null; } window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-96286129-40');
http://qualityph.co.uk/about-us
Status: 200
Emails: info@qualityph.co.uk
View text
Toggle navigation Home New Boiler About Services View all BATHROOM INSTALLATION BOILER INSTALLATION BOILER REPAIR More Uponor Baxi Reviews Gallery Your Safety Contact AAAA3-Home AAAA3-New Boiler AAAA3-About Services View all BATHROOM INSTALLATION BOILER INSTALLATION BOILER REPAIR More Uponor Baxi AAAA3-Reviews AAAA3-Gallery AAAA3-Your Safety AAAA3-Contact QUALITY PLUMBING & HEATING - Meadowfield, Durham ABOUT US ABOUT QUALITY PLUMBING & HEATING Based in Meadowfield, Durham Covering Durham, Newcastle, Sunderland and surrounding areas Welcome to Quality Plumbing & Heating, we have 20 years of experience in providing quality services to homeowners, landlords and businesses throughout Durham and the surrounding area. We offer an affordable, reliable and effective range of services to meet all of your plumbing and heating needs including bathroom installations, boiler installations & repair. We also cover wet rooms, shower rooms, landlord certificates, and gas servicing. In our time in the industry, we have worked on a variety of projects including shop refits, hotels, new build and older houses. For your peace of mind, we are Gas Safe Registered (reg. #560396) and Trading Standards Approved, meaning you don't have to worry about the way in which we conduct our business and carry out our work. We also have full public liability insurance and are proud to say that we have never had to make a claim in over 20 years in the business. At Quality Plumbing & Heating, we take great pride in the work we do. No job is too small and you will find our prices affordable and competitive. For all of your plumbing and heating needs throughout Durham, Newcastle, Sunderland and surrounding areas, please get in touch with us today. Free estimates for new projects available. (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm", b="https://embed.typeform.com/"; if(!gi.call(d,id)) { js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() Based in Meadowfield, Durham Offering our Quality plumbing & heating services throughout Durham, Newcastle, Sunderland and the surrounding areas. Fully qualified and experienced For your complete peace of mind, we are Gas Safe Registered (reg. #560396), Trading Standards Approved are fully insured and have over 20 years of experience in the plumbing & heating industry. Quality plumbing & heating services We offer a range of plumbing & heating services at an affordable rate. Among the services we offer include boiler installations & repairs, bathroom installations and much more! Quality Plumbing & Heating 20+ Years of experience Gas Safe Registered Fully Insured Trading Standards Approved Anthony Parkin Gas Safe Registered Engineer Anthony is the owner of Quality Plumbing & Heating and with over 20 years of experience in the plumbing & heating industry has built up a wealth of knowledge and skills. In the past, he has worked on plumbing & heating for new builds, shop refits, hotels, older houses and also has experience working in response maintenance industry. Click below to get yourself a quote Get A Quote Our Company About Services Gallery Reviews Contact Contact Us Today Tennyson House, 1 Frederick St N, Meadowfield, Durham DH7 8NB 07968 147611 01913783831 info@qualityph.co.uk © 2025 Quality Plumbing & Heating All rights reserved | Websites For Tradesmen - by BUILT | Privacy policy | V2 Theme (function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = '//connect.facebook.net/en_GB/sdk/xfbml.customerchat.js#xfbml=1&version=v3.2&autoLogAppEvents=1' fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); $(document).ready(function () { var is_mobile = false; if ($('.captop').css('display') == 'none') { is_mobile = true; } // change iframes if (is_mobile == true) { $('iframe').each(function () { var regExp = /.*(youtube|vimeo).*/; var match = $(this).attr('src').match(regExp); // console.log("embed"); // console.log($( this ).attr('src')); // console.log(match); if (match != null) { $(this).width("100%"); $(this).height("auto"); } }); } $('ul.nav li.dropdown').hover(function () { $(this).find('.dropdown-menu').stop(true, true).fadeIn(); }, function () { $(this).find('.dropdown-menu').stop(true, true).fadeOut(); }); }); /*JCasp-Developer Below code is for sticky contact form in Services-Page (point-3) starts from here on 22/08/2018 */ $(document).ready(function () { if ($(".side-bar-lists").length) { var height_contact_form = $('#contact').height(); var height_service = $('.service-div-sticky').height(); var height_sidebar = $('.side-bar-lists').height(); var height_navebar = $('.navbar').height() - 15; var width_contact_form = $('#contact').width(); var distance_from_top_service = $('.service-div-sticky').offsettop; // we need to know if the navbar is fixed var distance_from_top_contact_form = $('#contact').offsettop - height_navebar; var contact_form_ret = height_navebar; if ($(window).width() > 767) { $(window).scroll(function (event) { if (height_service > height_contact_form + height_sidebar) { var windows_scroll = $(window).scrollTop() + contact_form_ret; if ((windows_scroll) > (distance_from_top_service + height_service - height_contact_form - contact_form_ret)) { if ($('#contact').css('position') != 'absolute') { var difference_distance_from_top_contact_form = $('#contact').offsettop - contact_form_ret - distance_from_top_contact_form; $('#contact').css('margin-top', difference_distance_from_top_contact_form); } $('#contact').css('position', 'absolute'); $('#contact').css('width', width_contact_form); } else if (windows_scroll > distance_from_top_contact_form) { $('#contact').css('position', 'fixed'); $('#contact').css('margin-top', (- distance_from_top_contact_form + contact_form_ret)); $('#contact').css('width', width_contact_form); $('#contact').css('top', 'unset'); } else { $('#contact').css('position', 'unset'); $('#contact').css('margin-top', 'unset'); $('#contact').css('width', width_contact_form); $('#contact').css('top', 'unset'); } } }); } } }); function HandleFixedNav(isHomePage = false) { if (isHomePage) { if (($(window).scrollTop() > 50) || ($(window).width() < 767)) { $(".navbar-fixed-top").addClass("top-nav-collapse"); } else { $(".navbar-fixed-top").removeClass("top-nav-collapse"); } // if mobile ensure padding is there if ($(window).width() < 767) { /* $(".innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".new_innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".iq-banner").css({ "margin-top": ($(".navbar").height() - 2) }); // background image $("#page-top").css({ "margin-top": ($(".navbar").height() - 2) });*/ } else { $(".innerpage_banner").css({"margin-top": 0}); $(".new_innerpage_banner").css({"margin-top": 0}); $(".iq-banner").css({"margin-top": 0}); // background image $("#page-top").css({"margin-top": 0}); } } /* else { // -2 so there is no white blead through $(".innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".new_innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".iq-banner").css({ "margin-top": ($(".navbar").height() - 2) }); $('.navbar').removeClass('nav-inner'); $('.navbar').addClass('navbar-fixed-top'); } */ } function nav() { HandleFixedNav(); } $(window).ready(function () { HandleFixedNav(); }); $(window).scroll(function () { HandleFixedNav(); }); //notification /** * function to open modal * @param string title * @param string body * @param htmnl bodyHTML * @param string buttonText * @param boolean forceShow * */ function showNotificationModal(title, body, bodyHTML, buttonText, delayTimeDisplay, forceShow) { if ($("#notificationModal").length <= 0) return if (delayTimeDisplay == undefined && delayTimeDisplay == undefined) { delayTimeDisplay = 500; } setTimeout(function () { var coockieName = 'notificationModalShow'; if (forceShow == true) { setCookie(coockieName, 'notificationShowned', -1); } var doAction = getCookie(coockieName); if (body == undefined && bodyHTML == undefined) { doAction = false; } if (! doAction) { if (title == undefined || title == null) { $("#notificationModalHeader").hidden(); } else { $("#notificationModalHeader").text(title); } if (buttonText == undefined || buttonText == null) { $("#notificationModalButton").text("Close"); } else { $("#notificationModalButton").text(buttonText); } if (body != undefined && body != null) { $("#notificationModalBody").html("<p>" + body + "</p>"); } else if (bodyHTML != undefined && bodyHTML != null) { $("#notificationModalBody").html(bodyHTML); } $("#notificationModal").modal('show'); setCookie(coockieName, 'notificationShowned', 1) } else { // nothing } }, delayTimeDisplay); } function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return null; } window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-96286129-40');
http://qualityph.co.uk/
Status: 200
Emails: info@qualityph.co.uk
View text
Toggle navigation Home New Boiler About Services View all BATHROOM INSTALLATION BOILER INSTALLATION BOILER REPAIR More Uponor Baxi Reviews Gallery Your Safety Contact AAAA3-Home AAAA3-New Boiler AAAA3-About Services View all BATHROOM INSTALLATION BOILER INSTALLATION BOILER REPAIR More Uponor Baxi AAAA3-Reviews AAAA3-Gallery AAAA3-Your Safety AAAA3-Contact QUALITY PLUMBING & HEATING Contact Us About Us QUALITY PLUMBING & HEATING Contact Us About Us About Us Our Services Our Gallery Contact Us .hero-div:before, #home_page .bodybox2:before { background: url('/build/images/homepage/waveOne.png'); } #home_page .bodybox2 { margin-top: 0 !important; } ABOUT QUALITY PLUMBING & HEATING Based in Meadowfield, Durham Covering Durham, Newcastle, Sunderland and surrounding areas Welcome to Quality Plumbing & Heating, we have 20 years of experience in providing quality services to homeowners, landlords and businesses throughout Durham and the surrounding area. We offer an affordable, reliable and effective range of services to meet all of your plumbing and heating needs including bathroom installations, boiler installations & repair. We also cover wet rooms, shower rooms, landlord certificates, and gas servicing. In our time in the industry, we have worked on a variety of projects including shop refits, hotels, new build and older houses. For your peace of mind, we are Gas Safe Registered (reg. #560396) and Trading Standards Approved, meaning you don't have to worry about the way in which we conduct our business and carry out our work. We also have full public liability insurance and are proud to say that we have never had to make a claim in over 20 years in the business. At Quality Plumbing & Heating, we take great pride in the work we do. No job is too small and you will find our prices affordable and competitive. For all of your plumbing and heating needs throughout Durham, Newcastle, Sunderland and surrounding areas, please get in touch with us today. Free estimates for new projects available. (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm", b="https://embed.typeform.com/"; if(!gi.call(d,id)) { js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() Based in Meadowfield, Durham Offering our Quality plumbing & heating services throughout Durham, Newcastle, Sunderland and the surrounding areas. Fully qualified and experienced For your complete peace of mind, we are Gas Safe Registered (reg. #560396), Trading Standards Approved are fully insured and have over 20 years of experience in the plumbing & heating industry. Quality plumbing & heating services We offer a range of plumbing & heating services at an affordable rate. Among the services we offer include boiler installations & repairs, bathroom installations and much more! REVIEWS SCORE 84 | 84 REVIEWS Solved an awkward pipe problem ... November 18th, 2025 Time management Tidiness Friendly Rating Value Rating Very professional job. Excellent and professional ser ... January 22nd, 2025 Time management Tidiness Friendly Rating Value Rating Excellent and professional service. Anthony kept me informed to when he was coming and identified and solved the problem quickly. Would highly recommend the firm. Sticky 2 Way Valve December 5th, 2024 Time management Tidiness Friendly Rating Value Rating If you’re looking for a plumber in the Durham City area I can highly recommend Anthony. He is very knowledgeable and his communication is excellent. We diagnosed the problem by phone and he fitted the replacement part the followin ... Top service December 23rd, 2022 Verified By Expert Trades Time management Tidiness Friendly Rating Value Rating Saved Christmas by fitting me in before the big day, fast, friendly, top service Really positive experience for ... September 11th, 2021 Verified By Expert Trades Time management Tidiness Friendly Rating Value Rating Very efficient and professional service. Job assessed and completed in good time at a reasonable price. My father has dementia and we needed to get the boiler repaired quickly. My father and his carers also struggled with the ther ... Great job finished within the ... March 27th, 2021 Verified By Expert Trades Time management Tidiness Friendly Rating Value Rating The problem was identified straight away and fixed, with a very friendly attitude. Kitchen left spotless. Thank you! Brand new bathroom and boiler August 4th, 2020 Verified By Expert Trades Time management Tidiness Friendly Rating Value Rating Excellent service from Quality Plumbing, very friendly and knowledgable, nothing was too much trouble. Even when there were major problems uncovered from leaks and previous bathroom fitters it was sorted with no issues and no stre ... Brilliant speedy same day fixe ... August 22nd, 2020 Verified By Expert Trades Time management Tidiness Friendly Rating Value Rating Excellent quick friendly helpful service Highly recommend Fantastic service August 13th, 2020 Verified By Expert Trades Time management Tidiness Friendly Rating Value Rating Throroighly reccommend Quality Plumbing and Heating. The saved the day when another local company tried to massively overcharge us and do work that was not required. A very honest tradesperson who did the well to a high standard a ... Really friendly, very knowledg ... July 23rd, 2020 Verified By Expert Trades Time management Tidiness Friendly Rating Value Rating From the initial contact with Anthony, he came across very knowledgeable and friendly and nothing was a bother. He had the job sussed in about 30 minutes from start to finish - well impressed Thanks again for the great service ... View more reviews + SERVICES BATHROOM INSTALLATION Looking for a new and beautiful bathroom? To find out more about the bathroom installation service we offer, please click 'Learn More' below. Learn more + BOILER INSTALLATION Interested in having your boiler replaced? We are highly experienced in the installation of boilers and can provide you with a new boiler that is efficient, reliable and great value. Learn more + BOILER REPAIR Do you have a boiler in urgent need of repair? In case of a broken down boiler, we highly urge you to give us a call directly so that we can respond as soon as possible. Learn more + View more services + GALLERY View more gallery + Our Location Tennyson House, 1 Frederick St N, Meadowfield, Durham DH7 8NB Call Us 07968 147611 01913783831 Call Us 07968 147611 01913783831 Drop us a line info@qualityph.co.uk CONTACT Send Message × Our Company About Services Gallery Reviews Contact Contact Us Today Tennyson House, 1 Frederick St N, Meadowfield, Durham DH7 8NB 07968 147611 01913783831 info@qualityph.co.uk © 2025 Quality Plumbing & Heating All rights reserved | Websites For Tradesmen - by BUILT | Privacy policy | V2 Theme (function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = '//connect.facebook.net/en_GB/sdk/xfbml.customerchat.js#xfbml=1&version=v3.2&autoLogAppEvents=1' fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); $(document).ready(function () { var is_mobile = false; if ($('.captop').css('display') == 'none') { is_mobile = true; } // change iframes if (is_mobile == true) { $('iframe').each(function () { var regExp = /.*(youtube|vimeo).*/; var match = $(this).attr('src').match(regExp); // console.log("embed"); // console.log($( this ).attr('src')); // console.log(match); if (match != null) { $(this).width("100%"); $(this).height("auto"); } }); } $('ul.nav li.dropdown').hover(function () { $(this).find('.dropdown-menu').stop(true, true).fadeIn(); }, function () { $(this).find('.dropdown-menu').stop(true, true).fadeOut(); }); }); /*JCasp-Developer Below code is for sticky contact form in Services-Page (point-3) starts from here on 22/08/2018 */ $(document).ready(function () { if ($(".side-bar-lists").length) { var height_contact_form = $('#contact').height(); var height_service = $('.service-div-sticky').height(); var height_sidebar = $('.side-bar-lists').height(); var height_navebar = $('.navbar').height() - 15; var width_contact_form = $('#contact').width(); var distance_from_top_service = $('.service-div-sticky').offsettop; // we need to know if the navbar is fixed var distance_from_top_contact_form = $('#contact').offsettop; var contact_form_ret = 0;if ($(window).width() > 767) { $(window).scroll(function (event) { if (height_service > height_contact_form + height_sidebar) { var windows_scroll = $(window).scrollTop() + contact_form_ret; if ((windows_scroll) > (distance_from_top_service + height_service - height_contact_form - contact_form_ret)) { if ($('#contact').css('position') != 'absolute') { var difference_distance_from_top_contact_form = $('#contact').offsettop - contact_form_ret - distance_from_top_contact_form; $('#contact').css('margin-top', difference_distance_from_top_contact_form); } $('#contact').css('position', 'absolute'); $('#contact').css('width', width_contact_form); } else if (windows_scroll > distance_from_top_contact_form) { $('#contact').css('position', 'fixed'); $('#contact').css('margin-top', (- distance_from_top_contact_form + contact_form_ret)); $('#contact').css('width', width_contact_form); $('#contact').css('top', 'unset'); } else { $('#contact').css('position', 'unset'); $('#contact').css('margin-top', 'unset'); $('#contact').css('width', width_contact_form); $('#contact').css('top', 'unset'); } } }); } } }); function HandleFixedNav(isHomePage = false) { if (isHomePage) { if (($(window).scrollTop() > 50) || ($(window).width() < 767)) { $(".navbar-fixed-top").addClass("top-nav-collapse"); } else { $(".navbar-fixed-top").removeClass("top-nav-collapse"); } // if mobile ensure padding is there if ($(window).width() < 767) { /* $(".innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".new_innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".iq-banner").css({ "margin-top": ($(".navbar").height() - 2) }); // background image $("#page-top").css({ "margin-top": ($(".navbar").height() - 2) });*/ } else { $(".innerpage_banner").css({"margin-top": 0}); $(".new_innerpage_banner").css({"margin-top": 0}); $(".iq-banner").css({"margin-top": 0}); // background image $("#page-top").css({"margin-top": 0}); } } /* else { // -2 so there is no white blead through $(".innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".new_innerpage_banner").css({ "margin-top": ($(".navbar").height() - 2) }); $(".iq-banner").css({ "margin-top": ($(".navbar").height() - 2) }); $('.navbar').removeClass('nav-inner'); $('.navbar').addClass('navbar-fixed-top'); } */ } function nav() { HandleFixedNav(true); } $(window).ready(function () { HandleFixedNav(true); }); $(window).scroll(function () { HandleFixedNav(true); }); //notification /** * function to open modal * @param string title * @param string body * @param htmnl bodyHTML * @param string buttonText * @param boolean forceShow * */ function showNotificationModal(title, body, bodyHTML, buttonText, delayTimeDisplay, forceShow) { if ($("#notificationModal").length <= 0) return if (delayTimeDisplay == undefined && delayTimeDisplay == undefined) { delayTimeDisplay = 500; } setTimeout(function () { var coockieName = 'notificationModalShow'; if (forceShow == true) { setCookie(coockieName, 'notificationShowned', -1); } var doAction = getCookie(coockieName); if (body == undefined && bodyHTML == undefined) { doAction = false; } if (! doAction) { if (title == undefined || title == null) { $("#notificationModalHeader").hidden(); } else { $("#notificationModalHeader").text(title); } if (buttonText == undefined || buttonText == null) { $("#notificationModalButton").text("Close"); } else { $("#notificationModalButton").text(buttonText); } if (body != undefined && body != null) { $("#notificationModalBody").html("<p>" + body + "</p>"); } else if (bodyHTML != undefined && bodyHTML != null) { $("#notificationModalBody").html(bodyHTML); } $("#notificationModal").modal('show'); setCookie(coockieName, 'notificationShowned', 1) } else { // nothing } }, delayTimeDisplay); } function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return null; } window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-96286129-40');