Skip to content

Commit 7cf93a4

Browse files
authored
update: learn more link for accessibility statement page (#168)
1 parent c5b59b4 commit 7cf93a4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

modules/settings/assets/js/constants/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
export const HELP_LINK = 'https://go.elementor.com/';
22
export const UPGRADE_LINK = 'https://go.elementor.com/';
3+
export const LEARN_MORE_LINK =
4+
'https://go.elementor.com/acc-statement-learn-more/';
35

46
export const SKELETON_OPTIONS = Object.freeze({
57
SPEED: 2,

modules/settings/assets/js/pages/accessibility-statement.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import { StatementLink } from '@ea11y/layouts';
2020
import { mixpanelService } from '@ea11y/services';
2121
import { useEffect, useState } from '@wordpress/element';
2222
import { __ } from '@wordpress/i18n';
23+
import { LEARN_MORE_LINK } from '../constants/index';
2324
import { injectTemplateVars } from '../utils';
2425

2526
const StyledPaper = styled(Paper)`
@@ -124,7 +125,7 @@ const AccessibilityStatement = () => {
124125
{
125126
link: ({ children }) => (
126127
<Link
127-
href={'https://example.com/'}
128+
href={LEARN_MORE_LINK}
128129
target="_blank"
129130
rel="noopener noreferrer"
130131
color="secondary"

0 commit comments

Comments
 (0)