The biggest obstacle stopping landlords from selling isn’t what you think
Property118

The biggest obstacle stopping landlords from selling isn’t what you think
The biggest obstacle preventing landlords from moving forward is rarely the property itself. It is usually the issues surrounding it.
Many landlords know the feeling.
A tenant issue drags on longer than expected, paperwork has gone missing and a refurbishment project keeps getting postponed.
Before long, what was supposed to be a straightforward investment starts feeling more like a second job.
Over the years, landlords have come to us facing all kinds of complications, from difficult tenant situations, major refurbishment projects, missing paperwork, planning issues and even properties affected by historic coal mines.
Many landlords spend months, and sometimes years, putting off a decision because they assume these problems need to be resolved before they can even think about selling.
In our experience, that is not always the case.
As landlords ourselves, we understand that every situation is different and there is rarely a one-size-fits-all solution.
One landlord approached us with a freehold property in East Dulwich that had been divided into four flats. Every flat was tenanted and the sale was complicated by missing planning and tenancy documents.
Rather than walking away from the problem, we worked closely with the landlord and tenants to resolve the issues, gain cooperation and create a sales strategy that worked for everyone involved.
The result was a successful sale in just four weeks for £1.15 million, while the landlord continued collecting rent right up until completion.
The biggest challenge was never finding a buyer. The biggest challenge was overcoming the obstacles that stood in the way of the sale.
That is where Landlord Sales Agency is different.
We do far more than simply market properties. We help landlords navigate the practical problems that often prevent them from moving forward.
Many landlords contact us believing they have a property problem when what they actually need is a strategy.
Whether that involves missing certificates, refurbishment decisions, planning complications, difficult paperwork, tenant issues or possession strategies, our experienced team works alongside landlords to find the most practical and cost-effective solution.
We understand that no two portfolios are the same, with some landlords wanting to retire and cash in, while others want to keep their best-performing properties while selling the ones that create the most work.
We focus on achieving the strongest overall outcome by balancing sale price, speed, certainty and the costs involved in getting a deal completed.
At Landlord Sales Agency, we believe the best solution is not always the most obvious one. Sometimes the biggest value we provide is helping landlords solve the problems that are preventing them from making the decision they want to make.
Many landlords are surprised to discover that the problems they thought were preventing a sale are often easier to solve than they imagined.
The first conversation costs nothing, but it could save you months of stress, thousands of pounds and help you move forward with confidence.
All you need to do is fill out the form below.
(function(){var el=document.getElementById(“ts-607776b5-3f7b-431c-b5cc-fc304603fee3″);if(!el)return;var b=document.body,h=document.documentElement;var dark=b.classList.contains(“dark-mode”)||b.classList.contains(“dark”)||b.classList.contains(“night-mode”)||h.classList.contains(“dark”);if(!dark){var bg=window.getComputedStyle(b).backgroundColor,m=bg.match(/d+/g);if(m)dark=(m[0]*0.299+m[1]*0.587+m[2]*0.114)<128;}el.setAttribute("data-theme",dark?"dark":"light");})();
(function(){
var uid = “crm-form-ba09a29b”;
var form = document.getElementById(uid + ‘-form’);
var wrap = document.getElementById(uid);
var msg = wrap.querySelector(‘.crm-message’);
var totalPages = 1;
var curPage = 0;
// ── Conditional logic ────────────────────────────────────────────────
var condMap = {};
function getFieldValue(fieldId) {
var els = form.querySelectorAll(‘[name=”‘ + fieldId + ‘”], [name=”‘ + fieldId + ‘[]”]’);
if (!els.length) return ”;
var first = els[0];
if (first.type === ‘checkbox’ || first.type === ‘radio’) {
var checked = [];
els.forEach(function(el){ if (el.checked) checked.push(el.value); });
return checked.join(‘,’);
}
return first.value;
}
function evalRule(rule) {
var val = getFieldValue(rule.fieldId);
var cmp = rule.value;
switch (rule.operator) {
case ‘is': return val === cmp;
case ‘isnot': return val !== cmp;
case ‘greaterthan': return parseFloat(val) > parseFloat(cmp);
case ‘lessthan': return parseFloat(val) < parseFloat(cmp);
case 'contains': return val.indexOf(cmp) !== -1;
case 'startswith': return val.indexOf(cmp) === 0;
case 'endswith': return val.slice(-cmp.length) === cmp;
default: return false; // fail closed — mirror the CRM shared matcher
}
}
function applyConditionals() {
Object.keys(condMap).forEach(function(fieldId) {
var cond = condMap[fieldId];
var rules = cond.rules || [];
var match = cond.logicType === 'any'
? rules.some(evalRule)
: rules.every(evalRule);
var show = cond.actionType === 'show' ? match : !match;
var wrapper = form.querySelector('[data-field-id="' + fieldId + '"]');
if (!wrapper) {
var el = form.querySelector('[name="' + fieldId + '"], [name="' + fieldId + '[]"]');
if (el) wrapper = el.closest('.crm-field, .crm-half');
}
if (wrapper) wrapper.style.display = show ? '' : 'none';
});
}
form.addEventListener('change', applyConditionals);
form.addEventListener('input', applyConditionals);
applyConditionals();
// ── Multi-page navigation ────────────────────────────────────────────
// ── Submit ────────────────────────────────────────────────────────────
var submitBtn = form.querySelector('button[type=submit]');
var btnText = submitBtn ? submitBtn.textContent : 'Submit';
var crmApiUrl = "https://p118-crm-api.accent.sh";
function collectFormData() {
var data = {};
for (var j = 0; j < form.elements.length; j++) {
var el = form.elements[j];
if (!el.name) continue;
if (el.type === 'file') continue; // handled by uploadFiles()
if (el.type === 'radio' && !el.checked) continue;
if (el.type === 'checkbox') {
if (!el.checked) continue;
var k = el.name.replace('[]','');
data[k] = data[k] ? data[k].concat([el.value]) : [el.value];
} else {
data[el.name] = el.value;
}
}
// GF auto-substituted {user_agent} / {referer} on hidden fields
// at render time. We do the equivalent right before submit so
// fields whose default value carries these placeholders
// resolve to the browser's actual values rather than being
// stored as literal "{user_agent}" / "{referer}" strings.
// The last ARTICLE the visitor read (set client-side on post views by
// P118_Article_Views). Used to attribute the enquiry to the article
// even after navigating away or with a stripped/absent referer.
var lastPost = '';
try {
var lpm = document.cookie.match(/(?:^|;s*)p118_last_post=([^;]+)/);
if (lpm) lastPost = decodeURIComponent(lpm[1]);
} catch (e) {}
var subs = {
'{user_agent}': navigator.userAgent || '',
// Prefer the last article read; fall back to the (lossy) HTTP referer.
'{referer}': lastPost || document.referrer || '',
'{last_post}': lastPost || '',
'{embed_url}': window.location.href || '',
};
for (var name in data) {
if (!data.hasOwnProperty(name)) continue;
var v = data[name];
if (typeof v !== 'string') continue;
for (var tag in subs) {
if (v.indexOf(tag) !== -1) v = v.split(tag).join(subs[tag]);
}
data[name] = v;
}
// Agent/BDM attribution — read LIVE so it works even on a fully cached
// page (the browser always sees the real URL + cookie). URL ?ataid=/?cid=
// first, then the 30-day agent_id/cid cookies set by atat-tracking.php.
var _qp = new URLSearchParams(window.location.search);
var _ataid = _qp.get('ataid') || (document.cookie.match(/(?:^|;s*)agent_id=([^;]+)/) || [])[1] || '';
var _cid = _qp.get('cid') || (document.cookie.match(/(?:^|;s*)cid=([^;]+)/) || [])[1] || '';
if (_ataid) data.agent_id = decodeURIComponent(_ataid);
if (_cid) data.bdm_id = decodeURIComponent(_cid);
return data;
}
function uploadFiles(data) {
var fileInputs = form.querySelectorAll('input[type=file][data-crm-file-field]');
var uploads = [];
fileInputs.forEach(function(el) {
if (!el.files || !el.files[0]) return;
var fd = new FormData();
fd.append('file', el.files[0]);
var fieldName = el.name;
uploads.push(
fetch(crmApiUrl + '/public/forms/' + "08ceeaae-4809-444e-ba0f-88da5836c463" + '/upload', { method: 'POST', body: fd })
.then(function(r) {
if (!r.ok) throw new Error('File upload failed (' + r.status + ')');
return r.json();
})
.then(function(res) {
if (res.path) data[fieldName] = res.path;
else throw new Error(res.error || 'File upload failed');
})
);
});
return Promise.all(uploads).then(function() { return data; });
}
function submitFormData(data) {
var body = new FormData();
body.append('action', 'p118_crm_submit');
body.append('form_id', "08ceeaae-4809-444e-ba0f-88da5836c463");
body.append('data', JSON.stringify(data));
// Embed-page context for GF-style merge tags ({embed_url},
// {embed_post:post_title}, {embed_post:ID}). Captured PHP-side
// at render time, then echoed to JS so the submit fetch can
// forward to V2 as request headers.
body.append('embed_url', "");
body.append('embed_post_id', "0");
body.append('embed_post_title', "");
return fetch("https://www.property118.com/wp-admin/admin-ajax.php", { method: 'POST', body: body, credentials: 'same-origin' })
.then(function(r){ return r.json(); })
.then(function(res){
var p = res.data || res;
if (p && p.success) {
if (p.confirmationType === 'redirect' && p.confirmationRedirectUrl) {
window.location.href = p.confirmationRedirectUrl;
} else {
form.style.display = 'none';
msg.className = 'crm-message success';
msg.innerHTML = p.confirmationMessage || 'Thank you for your submission.';
msg.style.display = 'block';
}
} else {
throw new Error((p && p.error) || 'Submission failed.');
}
});
}
form.addEventListener('submit', function(e){
e.preventDefault();
var data = collectFormData();
if (submitBtn) { submitBtn.disabled = true; submitBtn.textContent = 'Processing…'; }
msg.style.display = 'none';
// Standard form (no payment)
uploadFiles(data)
.then(function(d) { return submitFormData(d); })
.catch(function(err){
if (submitBtn) { submitBtn.disabled = false; submitBtn.textContent = btnText; }
msg.className = 'crm-message error';
msg.textContent = err.message;
msg.style.display = 'block';
});
});
})();
The post The biggest obstacle stopping landlords from selling isn’t what you think appeared first on Property118.
View Full Article: The biggest obstacle stopping landlords from selling isn’t what you think
Has your holiday home become your most expensive luxury?
Property118

Has your holiday home become your most expensive luxury?
Last year, I sold my holiday home in Florida.
The property had been part of our lives for over 20 years. We had enjoyed countless holidays there, created wonderful memories and, like many people who buy overseas property, always assumed it would remain part of our long-term plans.
So what changed?
The reality was that I eventually sat down and did the maths. Not just the obvious ownership costs such as insurance, maintenance, utilities, local property taxes, pool care, gardening, utlity bills, flights and maintenance, but the wider financial picture as well.
What many people never calculate is the opportunity cost of ownership and the income that the equity tied up in the property could potentially generate if it were invested elsewhere. Once I looked at the numbers through that lens, the decision became much easier.
The sale proceeds generated capital that enabled me to reinvest to provide a level of investment income that far exceeded the net benefit we were receiving from holidays in Florida. More importantly, that income now arrives without any of the ongoing concerns that come with property ownership, from roof repairs and storm damage to insurance renewals, property management and exchange rate fluctuations.
Interestingly, I’m not alone.
Two close friends have recently reached similar conclusions.
One purchased a holiday home in Spain around 20 years ago. The original plan was to enjoy family holidays and eventually retire there. Over time, however, circumstances changed. Brexit altered the landscape, visa requirements became more complicated, tax considerations grew in importance and family priorities evolved. The retirement dream that once seemed inevitable no longer reflected reality, so after reviewing the numbers, he also decided to sell.
Another friend owned a property in Thailand with his wife. They had originally planned to spend increasing amounts of time there in the future, but their circumstances changed, and they ultimately settled permanently in the UK. That led them to ask whether the property was still serving a meaningful purpose or simply tying up a substantial amount of capital that could be working harder elsewhere.
Once they laid out the numbers, the answer became clear, and the property was sold.
None of us regrets owning our holiday homes. The memories were real, the enjoyment was genuine, and the lifestyle benefits were significant.
Our thought processes were not about whether buying a holiday home was the right decision at the time. The more important consideration was whether they still served the purpose they were originally intended to fulfil.
Many people bought holiday homes based on plans they made 10, 20 or even 30 years ago. Since then, children have grown up, relationships have changed, retirement plans have evolved, tax rules have shifted, and travel habits have often moved in a different direction, yet the property remains because few people stop to reassess whether the original objective still exists.
I’ve noticed the same phenomenon amongst UK landlords.
A portfolio that made perfect sense at age 40 may look very different at age 60, so the question isn’t whether you should sell, it’s whether your assets are still aligned with your objectives. If they are, that’s excellent. If they aren’t, continuing to hold them could be costing far more than you realise.
Consider loss of income from tied up capital, taxation, hassle factor, inheritance tax … and so the list goes on.
Sometimes the most profitable investment decision is recognising when an existing asset no longer deserves a place in your portfolio.
If you’ve accumulated significant wealth through property and would like a second opinion on whether your current structure, financing and asset mix remain aligned with your long-term objectives, book a consultation with Property118.
If you’ve already started selling, you may also want to discuss ideas on where to get the best returns on investment going forwards. We don’t claim to have a monopoly on good ideas, or to give investment advice, but an initial peer-to-peer discussion often helps, especially when the only cost is a bit of time.
PS – Thank you for the Trustpilot reviews.
Last week, I mentioned in my Sunday Supplement newsletter that we’d like to close the gap between the number of Trustpilot reviews for Property118 and those for the NRLA.
The response has been fantastic. Thank you to everyone who has taken a few minutes out of their day to share their experience. Every review helps us build credibility, reach more landlords and continue our mission of facilitating the sharing of best practice within the UK private rented sector.
If you haven’t yet had a chance to leave a review, or would simply like to read what other members have said, you can do so via the link below:
https://www.trustpilot.com/review/www.property118.com
The post Has your holiday home become your most expensive luxury? appeared first on Property118.
View Full Article: Has your holiday home become your most expensive luxury?
Buy to let mortgage searches fall again
Property118

Buy to let mortgage searches fall again
Mortgage searches fell again in May, with 1,590,911 being carried out, down 7% on April’s figure and 15% below May 2025.
The data from Twenty7tec reveals that buy to let followed the same direction, with total BTL searches falling 9% to 249,403.
BTL purchase searches were 22% lower than the same month last year.
Residential searches stood at 1,341,508, a 7% monthly fall and 16% lower year on year.
Residential purchase searches dropped 5% to 626,029, while first-time buyer searches slipped 4% to 152,355.
Mortgage market adjusting
The firm’s chief customer officer, Nathan Reilly, said: “After the heightened levels of activity seen earlier in the year, May’s data suggests the market has entered a more cautious phase.
“One of the most interesting aspects of this month’s report is the continued demand for complex lending criteria.
“Joint borrower sole proprietor enquiries returned to the top of the rankings, alongside searches relating to visas, foreign nationals, adverse credit and self-employed applicants.”
He added: “These remain some of the most common questions advisers are seeking answers to, reinforcing the increasingly specialist nature of mortgage advice with a human touch.
“May’s figures do not necessarily point to a market in decline, but rather one that is continuing to adjust following the heightened activity seen earlier in the year.”
BTL remortgage search
Remortgage searches saw some of May’s steepest falls with residential remortgage searches dropping to 563,124, down 9% on April and 21% below May 2025.
Buy to let remortgage searches also fell by 9% month on month.
However, product availability increased during May after falling in April, with lenders continuing to alter product ranges while adviser activity eased.
The criteria search figures also point to more complex borrower cases being handled by advisers.
The post Buy to let mortgage searches fall again appeared first on Property118.
View Full Article: Buy to let mortgage searches fall again
Categories
- Landlords (19)
- Real Estate (9)
- Renewables & Green Issues (1)
- Rental Property Investment (1)
- Tenants (21)
- Uncategorized (12,825)
Archives
- July 2026 (32)
- June 2026 (70)
- May 2026 (70)
- April 2026 (78)
- March 2026 (72)
- February 2026 (55)
- January 2026 (52)
- December 2025 (62)
- August 2025 (51)
- July 2025 (51)
- June 2025 (49)
- May 2025 (50)
- April 2025 (48)
- March 2025 (54)
- February 2025 (51)
- January 2025 (52)
- December 2024 (55)
- November 2024 (64)
- October 2024 (82)
- September 2024 (69)
- August 2024 (55)
- July 2024 (64)
- June 2024 (54)
- May 2024 (73)
- April 2024 (59)
- March 2024 (49)
- February 2024 (57)
- January 2024 (58)
- December 2023 (56)
- November 2023 (59)
- October 2023 (67)
- September 2023 (136)
- August 2023 (131)
- July 2023 (129)
- June 2023 (128)
- May 2023 (140)
- April 2023 (121)
- March 2023 (168)
- February 2023 (155)
- January 2023 (152)
- December 2022 (136)
- November 2022 (158)
- October 2022 (146)
- September 2022 (148)
- August 2022 (169)
- July 2022 (124)
- June 2022 (124)
- May 2022 (130)
- April 2022 (116)
- March 2022 (155)
- February 2022 (124)
- January 2022 (120)
- December 2021 (117)
- November 2021 (139)
- October 2021 (130)
- September 2021 (138)
- August 2021 (110)
- July 2021 (110)
- June 2021 (60)
- May 2021 (127)
- April 2021 (122)
- March 2021 (156)
- February 2021 (154)
- January 2021 (133)
- December 2020 (126)
- November 2020 (159)
- October 2020 (169)
- September 2020 (181)
- August 2020 (147)
- July 2020 (172)
- June 2020 (158)
- May 2020 (177)
- April 2020 (188)
- March 2020 (234)
- February 2020 (212)
- January 2020 (164)
- December 2019 (107)
- November 2019 (131)
- October 2019 (145)
- September 2019 (123)
- August 2019 (112)
- July 2019 (93)
- June 2019 (82)
- May 2019 (94)
- April 2019 (88)
- March 2019 (78)
- February 2019 (77)
- January 2019 (71)
- December 2018 (37)
- November 2018 (85)
- October 2018 (108)
- September 2018 (110)
- August 2018 (135)
- July 2018 (140)
- June 2018 (118)
- May 2018 (113)
- April 2018 (64)
- March 2018 (96)
- February 2018 (82)
- January 2018 (92)
- December 2017 (62)
- November 2017 (100)
- October 2017 (105)
- September 2017 (97)
- August 2017 (101)
- July 2017 (104)
- June 2017 (155)
- May 2017 (135)
- April 2017 (113)
- March 2017 (138)
- February 2017 (150)
- January 2017 (127)
- December 2016 (90)
- November 2016 (135)
- October 2016 (149)
- September 2016 (135)
- August 2016 (48)
- July 2016 (52)
- June 2016 (54)
- May 2016 (52)
- April 2016 (24)
- October 2014 (8)
- April 2012 (2)
- December 2011 (2)
- November 2011 (10)
- October 2011 (9)
- September 2011 (9)
- August 2011 (3)
Calendar
Recent Posts
- Councils collect just a quarter of landlord fines – NRLA
- Selling your property portfolio doesn’t need to be a headache
- Rents hit record high as property supply falls
- Landlords could face monthly HMRC tax bills
- Government expands Awaab’s law for social housing landlords

admin