Sight Scotland Veterans
Charity Number: SC047192
Address: 50 Gillespie Crescent, Edinburgh
Postcode: EH10 4JB
Phone: 0800 035 6409
Website: www.sightscotland.org.uk/veterans
Email: Contact form on their website
Summary: The charity provides support to empower ex-service men and women in Scotland (including Merchant Navy personnel who served under British military command) affected by sight loss to regain confidence, restore independence and make new connections.
The visual impairment does not have to be related to your service.
We offer information & advice, practical support and social connections.
Related Articles
Blind Veterans UK (MN veterans served in conflict)
Charity Number: 216227 Address: 3 Queen Street , London Postcode: WC1N 3AR Phone: 0300 111 22 33 Website: www.blindveterans.org.uk Email: information@blindveterans.org.uk Summary: Blind Veterans UK helps ex-Service men and women of every generation ...
The Not Forgotten (MN veterans served in conflict)
Charity Number: 1150541 Contact: Brigadier James Stopford Address: 1st Floor, 14 Buckingham Palace Road , London Postcode: SW1W 0QP Phone: 0207 7302400 Website: www.thenotforgotten.org Email: info@thenotforgotten.org Summary: We organise a diverse ...
Sight Scotland Veterans
Website: https://sightscotland.org.uk/veterans Support Line: 0800 035 6409 (Freephone) Opening hours: Monday to Thursday, 10:00am to 4:00pm; Friday, 10:00am to 3:00pm. Professional referral form: https://sightscotland.org.uk/form/ssv-support-somone ...
BLESMA (MN served in conflict)
Charity Number: 1084189 Contact: Blesma Chelmsford Address: 115 New London Road, Chelmsford, Postcode: CM2 0QT Phone: 0208 590 1124 Website: www.blesma.org Email: info@blesma.org Summary: Blesma, The Limbless Veterans is one of only around ten ...
Legion Scotland (MN veterans served in conflict)
Charity Number: SC003323 (Scotland) Contact: Switchboard Address: New Haig House, Logie Green Road, Edinburgh Postcode: EH7 4HQ Phone: 0131 550 1583 Website: www.legionscotland.org.uk Email: Contact enquiry form on website Summary: Legion Scotland ...
(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);
})();