\n Changes to our mortgage products
\n\n
\n With effect from Tuesday 18 April 2023 we will be making the following changes to our range:
\n Summary of changes
\n We are pleased to introduce a selection of new cashback rates for our UK Residential Remortgage customers. These are available on our Two Year Fixed Standard and Fee Saver and Five Year Fixed Standard and Fee Saver offerings alongside our existing UK Residential Remortgage product range, which includes fees assisted legals. This gives our remortgage customers a greater choice of whether they would like to choose from a cashback incentive (choose and pay for their own solicitor) or free standard legal fees incentive (use HSBC Managed Panel solicitor) and these can be found clearly labelled on the Mortgage Rate Sheet.
\n UK Residential Existing Customer Switching Range
\n \n - 2 Year Fixed Fee Saver at 70%, 75% and 80% LTV have reduced
\n - 2 Year Fixed Standard at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 3 Year Fixed Fee Saver at 80% and 90% LTV have reduced
\n - 3 Year Fixed Standard at 80%, 85% and 90% LTV have reduced
\n - 5 Year Fixed Fee Saver at 60% LTV has reduced
\n - 5 Year Fixed Standard at 60% and 90% LTV have reduced
\n - 5 Year Premier Exclusive at 60% and 90% LTV have reduced
\n
\n UK Residential Existing Customer Borrowing More Range
\n \n - 2 Year Fixed Fee Saver at 70%, 75% and 80% LTV have reduced
\n - 2 Year Fixed Standard at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 3 Year Fixed Fee Saver at 80% and 90% LTV have reduced
\n - 3 Year Fixed Standard at 80%, 85% and 90% LTV have reduced
\n - 5 Year Fixed Fee Saver at 60% LTV has reduced
\n - 5 Year Fixed Standard at 60% and 90% LTV have reduced
\n - 5 Year Premier Exclusive at 60% and 90% LTV have reduced
\n
\n UK Residential First Time Buyer Range
\n \n - 2 Year Fixed Fee Saver at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 2 Year Fixed Standard at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 3 Year Fixed Fee Saver at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 3 Year Fixed Standard at 60%, 70% and 75% LTV have reduced
\n - 5 Year Fixed Fee Saver at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 5 Year Fixed Standard at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 5 Year Premier Exclusive at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n
\n UK Residential Home Mover Range
\n \n - 2 Year Fixed Fee Saver at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 2 Year Fixed Standard at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 3 Year Fixed Fee Saver at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 3 Year Fixed Standard at 60%, 70% and 75% LTV have reduced
\n - 5 Year Fixed Fee Saver at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 5 Year Fixed Standard at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n - 5 Year Premier Exclusive at 60%, 70%, 75%, 80%, 85% and 90% LTV have reduced
\n
\n UK Residential Remortgage Range
\n \n - 2 Year Fixed Fee Saver at 60%, 70%, 75% and 80% LTV have reduced
\n - 2 Year Fixed Standard at 70%, 75%, 80% and 85% LTV have reduced
\n - 3 Year Fixed Standard at 60% LTV has reduced
\n - 5 Year Fixed Fee Saver at 60% and 80% LTV have reduced
\n - 5 Year Fixed Standard at 60%, 80%, 85% and 90% LTV have reduced
\n - 5 Year Premier Exclusive at 60%, 80%, 85% and 90% LTV have reduced
\n
\n International Residential Range
\n \n - 2 Year Fixed Fee Saver at 60%, 70% and 75% % LTV have reduced
\n - 2 Year Fixed Standard at 60%, 70% and 75% LTV have reduced
\n - 3 Year Fixed Fee Saver at 60%, 70% and 75% LTV have reduced
\n - 3 Year Fixed Standard at 60%, 70% and 75% LTV have reduced
\n - 5 Year Fixed Fee Saver at 60%, 70% and 75% LTV have reduced
\n - 5 Year Fixed Standard at 60%, 70% and 75% LTV have reduced
\n - 5 Year Premier Exclusive at 60%, 70% and 75% LTV have reduced
\n
\n There are no changes to any other interest rates or our fixed rate end dates at this time.
\n An updated mortgage rate sheet will be published on Tuesday 18 April to reflect these changes.
\n \n);\n\nexport default Article;\n","'use strict';\nvar $ = require('../internals/export');\nvar $trim = require('../internals/string-trim').trim;\nvar forcedStringTrimMethod = require('../internals/string-trim-forced');\n\n// `String.prototype.trim` method\n// https://tc39.es/ecma262/#sec-string.prototype.trim\n$({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {\n trim: function trim() {\n return $trim(this);\n }\n});\n","import React, { useContext } from \"react\";\nimport { Link } from \"gatsby\";\nimport { triggerTealiumEvent } from \"../../utils/tealiumUtils\";\nimport { useLocation } from \"@reach/router\";\nimport { MenuContext } from \"../../context\";\n\nconst GeneralAnchor = ({\n children,\n isBlank,\n href,\n isLink = false,\n target,\n ariaLabel = \"\",\n referrer,\n isRed,\n downloadTitle,\n onClick,\n additionalClass,\n noClass = false,\n}) => {\n const menuContext = useContext(MenuContext);\n const location = useLocation();\n\n const extractTextFromChildren = (children) => {\n switch (true) {\n case typeof children === \"string\":\n return children;\n case React.isValidElement(children):\n return extractTextFromChildren(children.props.children);\n case Array.isArray(children):\n return children.map(extractTextFromChildren).join(\" \");\n default:\n return \"\";\n }\n };\n\n const handleClick = (e) => {\n if (typeof window === \"undefined\" || !window.utag) return;\n\n const textContent = extractTextFromChildren(children).trim();\n const commonData = {\n tealiumEvent: \"link\",\n pageUrl: location.href,\n eventCategory: \"content\",\n pageType: \"product information\",\n };\n\n const events = {\n \"/resources\": {\n eventAction: \"download\",\n eventContent: `download: ${textContent.replace(/\\s*\\(.*?\\)$/, \"\")}`,\n pageName: \"resources\",\n pageSubCategory: \"resources\",\n rawDataLayer: \"10451v51\",\n },\n \"/packaging-requirements\": isLink\n ? {\n eventAction: \"download\",\n eventContent: `download: ${textContent.replace(/\\s*\\(.*?\\)$/, \"\")}`,\n pageName: \"packaging requirements\",\n pageSubCategory: \"packaging requirements\",\n rawDataLayer: \"10451v77\",\n }\n : {\n eventAction: \"onsite\",\n eventContent: `contact us | packaging requirements : ${textContent}`,\n pageName: \"packaging requirements\",\n pageSubCategory: \"packaging requirements\",\n rawDataLayer: \"10451v75\",\n },\n \"/broker-support\": {\n eventAction: \"onsite\",\n eventContent: `support actions | broker support : ${textContent}`,\n pageName: \"broker support\",\n pageSubCategory: \"broker support\",\n rawDataLayer: \"10451v33\",\n },\n \"/placing-business\": href.includes(\"frequently-asked-questions\")\n ? {\n eventAction: \"offsite\",\n eventContent: `placing business : ${textContent}`,\n pageName: \"placing business\",\n pageSubCategory: \"placing business\",\n rawDataLayer: \"10451v56\",\n }\n : {\n eventAction: \"download\",\n eventContent: `download: ${textContent.replace(/\\s*\\(.*?\\)$/, \"\")}`,\n pageName: \"placing business\",\n pageSubCategory: \"placing business\",\n rawDataLayer: \"10451v55\",\n },\n \"/newsroom\": href.includes(\"pdfs\")\n ? {\n eventAction: \"onsite\",\n eventContent: `news : ${textContent}`,\n pageName: \"newsroom\",\n pageSubCategory: \"newsroom\",\n rawDataLayer: \"10451v24\",\n }\n : {\n eventAction: \"offsite\",\n eventContent: `news : ${textContent}`,\n pageName: \"newsroom\",\n pageSubCategory: \"newsroom\",\n rawDataLayer: \"10451v25\",\n },\n \"/green\": {\n eventAction: \"onsite\",\n eventContent: `resources | green : ${textContent}`,\n pageName: \"green\",\n pageSubCategory: \"green\",\n rawDataLayer: \"10451v86\",\n },\n \"/step-by-step-guide-to-hsbc-mortgages\": {\n eventAction: \"onsite\",\n eventContent: `contact us | step by step guide to hsbc mortgages : ${textContent}`,\n pageName: \"step by step guide to hsbc mortgages\",\n pageSubCategory: \"step by step guide to hsbc mortgages\",\n rawDataLayer: \"10451v81\",\n },\n };\n\n if (location.href.includes(\"essential-reading\")) {\n events[location.pathname] = {\n eventAction: \"onsite\",\n eventContent: `contact us | ${location.href.replace(/\\/$/, \"\").split(\"/\").pop()} : ${textContent}`,\n pageName: \"essential reading\",\n pageSubCategory: \"newsroom\",\n rawDataLayer: \"10451v29\",\n };\n }\n\n const eventData =\n events[location.pathname] || events[`${location.pathname}/`] || events[`${location.pathname.replace(/\\/$/, \"\")}`];\n\n if (eventData) {\n triggerTealiumEvent({ ...commonData, ...eventData });\n }\n\n if (onClick) {\n onClick(e);\n }\n };\n\n return (\n <>\n {isLink === true ? (\n