Step-by-step instructions to add the Axto.ai Accessibility Widget to your website
Website admin access or ability to edit template files
A text editor or built-in CMS editor
Access to your Axto.ai Web Admin Panel for the script snippet
Ideal if your site uses a shared header or footer template.
Common names: header.php, footer.php, theme.liquid, layout.html
In your CMS, look for "Theme Editor," "Layout," or "Templates"
Insert the script tag just before the closing head tag for best performance
Alternatively, place it right before the body closing tag if you prefer loading after content
Save changes in your editor
Clear any caches if applicable
Open your site in a browser and look for the widget icon
Use Developer Tools Console to confirm the script loaded without errors
function add_axto_widget() {
echo '<!-- Paste your Axto.ai script snippet here -->';
}
add_action('wp_head', 'add_axto_widget');Look for a Global Header/Footer or Custom Code section in site settings
Paste the snippet into the header area
Save and clear caches
If your website doesn't have a global template (e.g., hand-coded pages without includes), you can manually insert the snippet on each page:
Open every HTML file and paste the snippet in the head section
Quick for small sites (under ~10 pages)
Tip: If you're not comfortable editing many pages, consider using a simple site builder or ask your hosting support for a basic include mechanism.