top of page

Ensuring equal access for all is our priority at My Soul Connector. We are committed to providing a website that is accessible to people with disabilities. We strive to adhere to the Web Content Accessibility Guidelines (WCAG) and make continuous improvements to ensure our site is user-friendly for everyone.

​ACCESSIBILITY STATEMENT

This statement was last updated on [enter relevant date].
We at My Soul Connector are dedicated to making our website accessible to all individuals, including those with disabilities.

What web accessibility is

Web accessibility means creating an inclusive online environment that enables people with disabilities to perceive, understand, navigate, and interact with the web. It encompasses various disabilities including visual, auditory, physical, speech, cognitive, and neurological disabilities.

Accessibility adjustments on this site

We have taken steps to align our website with the WCAG [2.1 / 2.2] guidelines and are committed to achieving [AA / AAA] level conformance. Our efforts include:

  • Used the Accessibility Wizard to find and fix potential accessibility issues

  • Set the language of the site 

  • Set the content order of the site’s pages

  • Defined clear heading structures on all of the site’s pages

  • Added alternative text to images

  • Implemented color combinations that meet the required color contrast

  • Reduced the use of motion on the site

  • Ensured all videos, audio, and files on the site are accessible

Declaration of partial compliance with the standard due to third-party content [only add if relevant]

The accessibility of certain pages on the site depend on contents that do not belong to the organization, and instead belong to [enter relevant third-party name]. The following pages are affected by this: [list the URLs of the pages]. We therefore declare partial compliance with the standard for these pages.

Accessibility arrangements in the organization [only add if relevant]

[Enter a description of the accessibility arrangements in the physical offices / branches of your site's organization or business. The description can include all current accessibility arrangements  - starting from the beginning of the service (e.g., the parking lot and / or  public transportation stations) to the end (such as the service desk, restaurant table, classroom etc.). It is also required to specify any additional accessibility arrangements, such as disabled services and their location, and accessibility accessories (e.g. in audio inductions and elevators) available for use]

Requests, issues, and suggestions

If you find an accessibility issue on the site, or if you require further assistance, you are welcome to contact us through the organization's accessibility coordinator:

  • [Name of the accessibility coordinator]

  • [Telephone number of the accessibility coordinator]

  • [Email address of the accessibility coordinator]

  • [Enter any additional contact details if relevant / available]

bottom of page
import wixUsers from 'wix-users'; import wixData from 'wix-data'; $w.onReady(function () { const user = wixUsers.currentUser; // Only run if user is logged in if (user.loggedIn) { const userId = user.id; // Generate a short User ID: usr + last 4 chars of Wix user ID const shortId = "usr" + userId.slice(-4); // Update member profile if User ID is empty wixData.query("Members/PrivateMembersData") .eq("_id", userId) .find() .then((results) => { if (results.items.length > 0) { const member = results.items[0]; if (!member.userID) { // only assign if empty member.userID = shortId; wixData.update("Members/PrivateMembersData", member) .catch((err) => console.error("Error updating User ID:", err)); } } }); } });