The Fishermen's Mission

Charity Number: 232822
Contact: Head Office team
Address: Mather House, 4400 Parkway, Solent Business Park, Whiteley, Hampshire
Phone: 0800 634 1020
Website: www.fishermensmission.org.uk
Email: enquiries@fishermensmission.org.uk
Summary: The Fishermen's Mission supports active and retired fishermen and their families throughout the United Kingdom and offers a 24 hour emergency and welfare service. It supports inshore as well as deep sea fishermen and has around 50 staff, as well as many volunteers, placed strategically around the coast for port welfare support. It has the flexibility to respond wherever there is a need.
Note/Restrictions: Also known as the Royal National Mission to Deep Sea Fishermen. (RNMDSF)
Related Articles
Fishermen’s Mission
Contact Details Website: Fishermen’s Mission Get Support: Request Support Contact Us: Contact Fishermen’s Mission Registered Office: Mather House 4400 Parkway Solent Business Park Whiteley Hampshire PO15 7FJ Charity Registration: The Fishermen’s ...
Sailors’ Society
Contact details Website: https://sailors-society.org/ 24/7 support: Seafarers and family members can access free support through Sailors’ Society’s global helpline and instant chat service, available 24 hours a day, 7 days a week. Access is available ...
The Fishermen’s Hospital Charity
Contact details Website: https://fishermenshospital.org.uk/ Contact page: https://fishermenshospital.org.uk/contact/ Postal address: The Clerk The Fishermen’s Hospital Charity No. 8 Fishermen’s Hospital Church Plain Great Yarmouth Norfolk NR30 1ND ...
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 ...
Royal Liverpool Seamen's Orphan Institution
Charity Number: 526379 Contact: Royal Liverpool Seamen's Orphan Institution (RLSOI) Address: Suite 315, Cotton Exchange Building, Old Hall Street, Liverpool Postcode: L3 9LQ Phone: 0151 227 3417 Website: www.rlsoi-uk.org Email: enquiries@rlsoi-uk.org ...
(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);
})();