poppyscotland (MN veterans served in conflict)
Charity Number: SC014096
Contact: Welfare Services
Address: New Haig House, Logie Green Road, Edinburgh
Postcode: EH7 4HQ
Phone: 0131 550 1557
Website: www.poppyscotland.org.uk
Email: gethelp@poppyscotland.org.uk
Summary: poppyscotland provides life-changing support to our Armed Forces community. We support current and former Servicemen and women from the Royal Navy, British Army and Royal Air Force, both regular and reserve, and members of the Merchant Navy who have served in a commercial vessel in support of UK military operations. We reach out to those who have served, those still serving, and their families at times of crisis and need by offering vital, practical advice, assistance and funding. We provide tailored support and funding to thousands of ex-Servicemen and women as well as other vital services in advice, employment, mobility, respite, housing and mental health support.
Note/Restrictions: Formally known as Earl Haig Fund Scotland.
Related Articles
MN Veterans & Armed Forces Covenant
UK MERCHANT SEAFARING VETERANS AGREED DEFINITION Introduction The Merchant Navy and UK fishing fleets have always been called upon to provide support to both the UK Armed Forces and the Nation during wartime, other hostilities and military ...
SSAFA, the Armed Forces Charity
Contact details Website: https://www.ssafa.org.uk Get Help: https://www.ssafa.org.uk/get-help Main telephone: 0800 260 6780 Forcesline (free and confidential support): 0800 260 6780 Main office address: SSAFA, the Armed Forces Charity, Queen ...
RFEA - The Forces Employment Charity (MN veterans who have served in conflict)
Charity Number: 1061212 Contact: The Central Employment Team Address: RFEA Limited, 1st Floor, Mountbarrow House, 6-20 Elizabeth Street, London Postcode: SW1W 9RB Phone: 0121 262 3058 Website: www.rfea.org.uk Email: info@rfea.org.uk Summary: The RFEA ...
Stoll Foundation ( Merchant Navy & Fishers who served under Admiralty Charter)
Contact details Website: https://www.stoll.org.uk/ Main telephone: 020 7385 2110 Email: info@stoll.org.uk Housing applications email: applications@stoll.org.uk Address: Stoll Foundation 446 Fulham Road London SW6 1DT Contact page: ...
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 ...
(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);
})();