Government support
Government factsheet: Please click here.
Summary: The government understands that many people are worried about the impact of rising prices, with many of the most vulnerable households struggling to make their incomes stretch to cover the basics. That’s why we are providing £37 billion of support this year, targeted at those who are most in need. The package will see millions of the most vulnerable households receive at least £1,200 of support in total this year to help with the cost of living, with all domestic electricity customers receiving at least £400 to help with their bills.
Related Articles
Health & Welfare Financial Grants
Provided by Seafarers Hospital Society (SHS) Telephone: 020 8858 3696 Email: admin@seahospital.org.uk Website: www.seahospital.org.uk Address: 29 King William Walk, Greenwich, London, SE10 9HJ, United Kingdom The Seafarers Hospital Society (SHS) is a ...
Energy Support and Advice UK - Facebook group
Website: www.facebook.com/groups/966754150512356/ Summary: This Facebook group is run by consumers for consumers. Originally created by Gemma Hatvani in 2020 it aims to educate, support and advise as many people as possible - using consumers own ...
Turn2us
Contact details Website: https://www.turn2us.org.uk/ Benefits Calculator: https://benefits-calculator.turn2us.org.uk/ Grants Search: https://grants-search.turn2us.org.uk/ PIP Helper: https://pip.turn2us.org.uk/ Contact page: Available through the ...
Energy Savings Trust
Website: www.energysavingstrust.org.uk Summary: A respected and trusted voice on energy efficiency and clean energy solutions, we continue to work towards a smart, decarbonised, decentralised energy system. We empower millions of householders every ...
Guild of Benevolence (IMarEST)
What this organisation does The Guild of Benevolence is the partner charity of IMarEST. It provides financial assistance and welfare support to people in need within the marine community and to their dependants worldwide. Support is tailored to ...
(function () {
'use strict';
// Only run on the KB root page
if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return;
var CATEGORY_ID = '233149000000358041';
var MAX_WAIT_MS = 10000;
var POLL_INTERVAL_MS = 200;
var elapsed = 0;
function getStore() {
if (window.reduxStore) return window.reduxStore;
if (window._store) return window._store;
var all = document.querySelectorAll('*');
for (var i = 0; i < all.length; i++) {
var keys = Object.keys(all[i]);
for (var j = 0; j < keys.length; j++) {
if (keys[j].indexOf('__reactContainer') === 0) {
try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {}
}
}
}
return null;
}
function getPortalId() {
var resources = window.performance.getEntriesByType('resource');
for (var i = 0; i < resources.length; i++) {
var m = resources[i].name.match(/portalId=([^&]+)/);
if (m) return m[1];
}
return null;
}
var timer = setInterval(function () {
elapsed += POLL_INTERVAL_MS;
if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; }
var store = getStore();
if (!store) return;
var kb = store.getState().KBUIState;
if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return;
if (!kb.isNext) { clearInterval(timer); return; }
clearInterval(timer);
var portalId = getPortalId();
if (!portalId) return;
var base = window.location.origin + '/portal/api/kbCategory/' +
CATEGORY_ID + '/articles?portalId=' + portalId;
Promise.all([
fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }),
fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); })
]).then(function (results) {
var sections = Object.values(results[0].data).concat(Object.values(results[1].data));
if (!sections.length) return;
store.dispatch({
type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS',
data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 }
});
}).catch(function () {});
}, POLL_INTERVAL_MS);
})();