├── .browserslistrc ├── .buildignore ├── .cursor └── rules │ └── github-workflows.mdc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── actions │ ├── build-theme-release │ │ └── action.yml │ ├── bump-theme-version-release │ │ └── action.yml │ ├── create-pr-with-bumped-theme-version-release │ │ └── action.yml │ ├── create-theme-release-release │ │ └── action.yml │ ├── get-changelog-from-readme-release │ │ └── action.yml │ ├── install-dependencies-release │ │ └── action.yml │ ├── theme-slack-notification-daily-tests │ │ └── action.yml │ ├── theme-slack-notification-release │ │ └── action.yml │ └── update-main-branch-version-release │ │ └── action.yml ├── scripts │ ├── build-wp-env.js │ ├── cherry-picking │ │ ├── generate-branch-name.sh │ │ └── generate-pr-title.sh │ ├── commit-push-bump.sh │ ├── create-git-tag.sh │ ├── daily-report.js │ ├── generate-upload-instructions-release.sh │ ├── get-changelog-from-readme-release.js │ ├── get-changelog-from-readme-txt.js │ ├── get-release-branch-name.sh │ ├── publish-theme-to-wordpress-org-dry-run.sh │ ├── publish-theme-to-wordpress-org.sh │ ├── send-slack-message.js │ ├── set-git-user.sh │ ├── sync-branches.sh │ ├── update-prerelease-beta-version.js │ ├── update-version-in-files.js │ ├── validate-changelog.sh │ ├── validate-versions-release.sh │ ├── workflow-reporting.js │ └── workflow-trigger.js └── workflows │ ├── build-theme │ └── action.yml │ ├── build.yml │ ├── cherry-pick-pr.yml │ ├── cherry-pick-validation.yml │ ├── daily-test-matrix.yml │ ├── deploy.yml │ ├── lint.yml │ ├── phpunit.yml │ ├── playwright-with-specific-elementor-version.yml │ ├── playwright-with-specific-hello-plus-version.yml │ ├── playwright.yml │ ├── publish-beta.yml │ ├── publish-patch.yml │ └── publish-release.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── .wp-env.json ├── README.md ├── bin ├── install-wp-tests-local.sh └── install-wp-tests.sh ├── comments.php ├── composer.json ├── composer.lock ├── dev ├── images │ ├── ai.png │ ├── elementor-notice-icon.svg │ ├── elementor.svg │ ├── go-pro.svg │ ├── image-optimization-bg.svg │ ├── image-optimizer.svg │ ├── install-elementor.png │ └── send-logo.gif ├── js │ ├── editor │ │ ├── component.js │ │ ├── hello-editor.js │ │ └── hooks │ │ │ └── ui │ │ │ └── controls-hook.js │ └── frontend │ │ └── hello-frontend.js └── scss │ ├── customizer.scss │ ├── editor-styles.scss │ ├── editor.scss │ ├── header-footer.scss │ ├── reset.scss │ ├── reset │ ├── _forms.scss │ ├── _list.scss │ ├── _reset.scss │ ├── _table.scss │ └── _variables.scss │ ├── theme.scss │ └── theme │ ├── _archive.scss │ ├── _comments.scss │ ├── _footer.scss │ ├── _general.scss │ ├── _header.scss │ ├── _layout.scss │ ├── _navigation.scss │ └── _utilities.scss ├── footer.php ├── functions.php ├── header.php ├── includes ├── customizer-functions.php ├── customizer │ ├── customizer-action-links.php │ └── customizer-upsell.php ├── elementor-functions.php ├── module-base.php ├── script.php ├── settings-functions.php ├── settings │ ├── settings-footer.php │ └── settings-header.php └── utils.php ├── index.php ├── modules └── admin-home │ ├── assets │ ├── images │ │ ├── BrandYoutube.svg │ │ ├── ElementorLogo.svg │ │ ├── elementor-notice-icon.svg │ │ └── plus.svg │ └── js │ │ ├── components │ │ ├── dynamic-icon.js │ │ ├── link │ │ │ ├── link-or-title.js │ │ │ ├── link-with-icon-and-title.js │ │ │ ├── promotion-link.js │ │ │ └── sub-links-list.js │ │ ├── linkGroup │ │ │ └── column-link-group.js │ │ ├── paper │ │ │ ├── base-admin-paper.js │ │ │ ├── quick-links.js │ │ │ ├── resources.js │ │ │ ├── site-parts.js │ │ │ └── welcome.js │ │ ├── promotions │ │ │ ├── feature.js │ │ │ └── list.js │ │ ├── settings │ │ │ ├── changelog.js │ │ │ ├── plus-icon.js │ │ │ ├── seo.js │ │ │ ├── setting.js │ │ │ ├── settings-page.js │ │ │ ├── settings-provider.js │ │ │ ├── structure.js │ │ │ ├── theme.js │ │ │ ├── update.js │ │ │ └── use-settings-context.js │ │ ├── spinner │ │ │ └── spinner.js │ │ └── top-bar │ │ │ ├── top-bar-content.js │ │ │ └── top-bar.js │ │ ├── hello-elementor-admin.js │ │ ├── hello-elementor-conversion-banner.js │ │ ├── hello-elementor-menu.js │ │ ├── hello-elementor-settings.js │ │ ├── hello-elementor-topbar.js │ │ ├── hooks │ │ └── use-admin-context.js │ │ ├── icons │ │ ├── elementor.tsx │ │ └── youtube.tsx │ │ ├── layouts │ │ └── grids │ │ │ └── grid-with-action-links.js │ │ ├── pages │ │ └── admin-page.js │ │ └── providers │ │ └── admin-provider.js │ ├── components │ ├── admin-menu-controller.php │ ├── admin-top-bar.php │ ├── ajax-handler.php │ ├── api-controller.php │ ├── conversion-banner.php │ ├── finder.php │ ├── notificator.php │ ├── scripts-controller.php │ └── settings-controller.php │ ├── module.php │ └── rest │ ├── admin-config.php │ ├── promotions.php │ ├── rest-base.php │ ├── theme-settings.php │ └── whats-new.php ├── package.json ├── phpcs.xml ├── phpunit.xml ├── readme.txt ├── screenshot.png ├── sidebar.php ├── style.css ├── template-parts ├── 404.php ├── archive.php ├── dynamic-footer.php ├── dynamic-header.php ├── footer.php ├── header.php ├── search.php └── single.php ├── tests ├── bootstrap.php ├── phpunit │ └── hello-elementor │ │ └── test-first.php ├── playwright │ ├── assets │ │ ├── api-requests.ts │ │ ├── breakpoints.ts │ │ ├── elements-utils.ts │ │ └── wp-cli.ts │ ├── config │ │ └── timeouts.ts │ ├── pages │ │ ├── base-page.ts │ │ ├── editor-page.ts │ │ ├── settings-page.ts │ │ └── wp-admin-page.ts │ ├── parallelTest.ts │ ├── playwright.config.ts │ ├── selectors │ │ ├── editor-selectors.ts │ │ └── top-bar-selectors.ts │ ├── temp-form-page-url.txt │ ├── tests │ │ ├── admin │ │ │ ├── hello-theme-admin-home.test.ts │ │ │ └── hello-theme-admin-home.test.ts-snapshots │ │ │ │ └── welcome-section-linux.png │ │ ├── settings │ │ │ ├── description-meta-tag.test.ts │ │ │ ├── header-footer.test.ts │ │ │ ├── page-title.test.ts │ │ │ ├── reset-css.test .ts │ │ │ ├── settings-suite.test.ts │ │ │ ├── skip-links.test.ts │ │ │ └── theme-css.test.ts │ │ └── theme-settings.test.ts │ ├── types │ │ └── types.ts │ ├── utils │ │ └── test-page-url.ts │ └── wp-authentication.ts └── wp-env │ └── config │ ├── activate_plugin.sh │ ├── setup.sh │ └── wp-cli.yml ├── theme.json ├── theme.php ├── tsconfig.json └── webpack.config.js /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.buildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.buildignore -------------------------------------------------------------------------------- /.cursor/rules/github-workflows.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.cursor/rules/github-workflows.mdc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/actions/build-theme-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/build-theme-release/action.yml -------------------------------------------------------------------------------- /.github/actions/bump-theme-version-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/bump-theme-version-release/action.yml -------------------------------------------------------------------------------- /.github/actions/create-pr-with-bumped-theme-version-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/create-pr-with-bumped-theme-version-release/action.yml -------------------------------------------------------------------------------- /.github/actions/create-theme-release-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/create-theme-release-release/action.yml -------------------------------------------------------------------------------- /.github/actions/get-changelog-from-readme-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/get-changelog-from-readme-release/action.yml -------------------------------------------------------------------------------- /.github/actions/install-dependencies-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/install-dependencies-release/action.yml -------------------------------------------------------------------------------- /.github/actions/theme-slack-notification-daily-tests/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/theme-slack-notification-daily-tests/action.yml -------------------------------------------------------------------------------- /.github/actions/theme-slack-notification-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/theme-slack-notification-release/action.yml -------------------------------------------------------------------------------- /.github/actions/update-main-branch-version-release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/actions/update-main-branch-version-release/action.yml -------------------------------------------------------------------------------- /.github/scripts/build-wp-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/build-wp-env.js -------------------------------------------------------------------------------- /.github/scripts/cherry-picking/generate-branch-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/cherry-picking/generate-branch-name.sh -------------------------------------------------------------------------------- /.github/scripts/cherry-picking/generate-pr-title.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/cherry-picking/generate-pr-title.sh -------------------------------------------------------------------------------- /.github/scripts/commit-push-bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/commit-push-bump.sh -------------------------------------------------------------------------------- /.github/scripts/create-git-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/create-git-tag.sh -------------------------------------------------------------------------------- /.github/scripts/daily-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/daily-report.js -------------------------------------------------------------------------------- /.github/scripts/generate-upload-instructions-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/generate-upload-instructions-release.sh -------------------------------------------------------------------------------- /.github/scripts/get-changelog-from-readme-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/get-changelog-from-readme-release.js -------------------------------------------------------------------------------- /.github/scripts/get-changelog-from-readme-txt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/get-changelog-from-readme-txt.js -------------------------------------------------------------------------------- /.github/scripts/get-release-branch-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/get-release-branch-name.sh -------------------------------------------------------------------------------- /.github/scripts/publish-theme-to-wordpress-org-dry-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/publish-theme-to-wordpress-org-dry-run.sh -------------------------------------------------------------------------------- /.github/scripts/publish-theme-to-wordpress-org.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/publish-theme-to-wordpress-org.sh -------------------------------------------------------------------------------- /.github/scripts/send-slack-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/send-slack-message.js -------------------------------------------------------------------------------- /.github/scripts/set-git-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/set-git-user.sh -------------------------------------------------------------------------------- /.github/scripts/sync-branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/sync-branches.sh -------------------------------------------------------------------------------- /.github/scripts/update-prerelease-beta-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/update-prerelease-beta-version.js -------------------------------------------------------------------------------- /.github/scripts/update-version-in-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/update-version-in-files.js -------------------------------------------------------------------------------- /.github/scripts/validate-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/validate-changelog.sh -------------------------------------------------------------------------------- /.github/scripts/validate-versions-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/validate-versions-release.sh -------------------------------------------------------------------------------- /.github/scripts/workflow-reporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/workflow-reporting.js -------------------------------------------------------------------------------- /.github/scripts/workflow-trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/scripts/workflow-trigger.js -------------------------------------------------------------------------------- /.github/workflows/build-theme/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/build-theme/action.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cherry-pick-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/cherry-pick-pr.yml -------------------------------------------------------------------------------- /.github/workflows/cherry-pick-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/cherry-pick-validation.yml -------------------------------------------------------------------------------- /.github/workflows/daily-test-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/daily-test-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.github/workflows/playwright-with-specific-elementor-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/playwright-with-specific-elementor-version.yml -------------------------------------------------------------------------------- /.github/workflows/playwright-with-specific-hello-plus-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/playwright-with-specific-hello-plus-version.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/publish-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/publish-beta.yml -------------------------------------------------------------------------------- /.github/workflows/publish-patch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/publish-patch.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.wp-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/.wp-env.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-wp-tests-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/bin/install-wp-tests-local.sh -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/comments.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/composer.lock -------------------------------------------------------------------------------- /dev/images/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/images/ai.png -------------------------------------------------------------------------------- /dev/images/elementor-notice-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/images/elementor-notice-icon.svg -------------------------------------------------------------------------------- /dev/images/elementor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/images/elementor.svg -------------------------------------------------------------------------------- /dev/images/go-pro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/images/go-pro.svg -------------------------------------------------------------------------------- /dev/images/image-optimization-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/images/image-optimization-bg.svg -------------------------------------------------------------------------------- /dev/images/image-optimizer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/images/image-optimizer.svg -------------------------------------------------------------------------------- /dev/images/install-elementor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/images/install-elementor.png -------------------------------------------------------------------------------- /dev/images/send-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/images/send-logo.gif -------------------------------------------------------------------------------- /dev/js/editor/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/js/editor/component.js -------------------------------------------------------------------------------- /dev/js/editor/hello-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/js/editor/hello-editor.js -------------------------------------------------------------------------------- /dev/js/editor/hooks/ui/controls-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/js/editor/hooks/ui/controls-hook.js -------------------------------------------------------------------------------- /dev/js/frontend/hello-frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/js/frontend/hello-frontend.js -------------------------------------------------------------------------------- /dev/scss/customizer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/customizer.scss -------------------------------------------------------------------------------- /dev/scss/editor-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/editor-styles.scss -------------------------------------------------------------------------------- /dev/scss/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/editor.scss -------------------------------------------------------------------------------- /dev/scss/header-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/header-footer.scss -------------------------------------------------------------------------------- /dev/scss/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/reset.scss -------------------------------------------------------------------------------- /dev/scss/reset/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/reset/_forms.scss -------------------------------------------------------------------------------- /dev/scss/reset/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/reset/_list.scss -------------------------------------------------------------------------------- /dev/scss/reset/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/reset/_reset.scss -------------------------------------------------------------------------------- /dev/scss/reset/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/reset/_table.scss -------------------------------------------------------------------------------- /dev/scss/reset/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/reset/_variables.scss -------------------------------------------------------------------------------- /dev/scss/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme.scss -------------------------------------------------------------------------------- /dev/scss/theme/_archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme/_archive.scss -------------------------------------------------------------------------------- /dev/scss/theme/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme/_comments.scss -------------------------------------------------------------------------------- /dev/scss/theme/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme/_footer.scss -------------------------------------------------------------------------------- /dev/scss/theme/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme/_general.scss -------------------------------------------------------------------------------- /dev/scss/theme/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme/_header.scss -------------------------------------------------------------------------------- /dev/scss/theme/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme/_layout.scss -------------------------------------------------------------------------------- /dev/scss/theme/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme/_navigation.scss -------------------------------------------------------------------------------- /dev/scss/theme/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/dev/scss/theme/_utilities.scss -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/header.php -------------------------------------------------------------------------------- /includes/customizer-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/customizer-functions.php -------------------------------------------------------------------------------- /includes/customizer/customizer-action-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/customizer/customizer-action-links.php -------------------------------------------------------------------------------- /includes/customizer/customizer-upsell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/customizer/customizer-upsell.php -------------------------------------------------------------------------------- /includes/elementor-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/elementor-functions.php -------------------------------------------------------------------------------- /includes/module-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/module-base.php -------------------------------------------------------------------------------- /includes/script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/script.php -------------------------------------------------------------------------------- /includes/settings-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/settings-functions.php -------------------------------------------------------------------------------- /includes/settings/settings-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/settings/settings-footer.php -------------------------------------------------------------------------------- /includes/settings/settings-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/settings/settings-header.php -------------------------------------------------------------------------------- /includes/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/includes/utils.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/index.php -------------------------------------------------------------------------------- /modules/admin-home/assets/images/BrandYoutube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/images/BrandYoutube.svg -------------------------------------------------------------------------------- /modules/admin-home/assets/images/ElementorLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/images/ElementorLogo.svg -------------------------------------------------------------------------------- /modules/admin-home/assets/images/elementor-notice-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/images/elementor-notice-icon.svg -------------------------------------------------------------------------------- /modules/admin-home/assets/images/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/images/plus.svg -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/dynamic-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/dynamic-icon.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/link/link-or-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/link/link-or-title.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/link/link-with-icon-and-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/link/link-with-icon-and-title.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/link/promotion-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/link/promotion-link.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/link/sub-links-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/link/sub-links-list.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/linkGroup/column-link-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/linkGroup/column-link-group.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/paper/base-admin-paper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/paper/base-admin-paper.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/paper/quick-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/paper/quick-links.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/paper/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/paper/resources.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/paper/site-parts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/paper/site-parts.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/paper/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/paper/welcome.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/promotions/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/promotions/feature.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/promotions/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/promotions/list.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/changelog.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/plus-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/plus-icon.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/seo.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/setting.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/settings-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/settings-page.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/settings-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/settings-provider.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/structure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/structure.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/theme.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/update.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/settings/use-settings-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/settings/use-settings-context.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/spinner/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/spinner/spinner.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/top-bar/top-bar-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/top-bar/top-bar-content.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/components/top-bar/top-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/components/top-bar/top-bar.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/hello-elementor-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/hello-elementor-admin.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/hello-elementor-conversion-banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/hello-elementor-conversion-banner.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/hello-elementor-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/hello-elementor-menu.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/hello-elementor-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/hello-elementor-settings.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/hello-elementor-topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/hello-elementor-topbar.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/hooks/use-admin-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/hooks/use-admin-context.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/icons/elementor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/icons/elementor.tsx -------------------------------------------------------------------------------- /modules/admin-home/assets/js/icons/youtube.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/icons/youtube.tsx -------------------------------------------------------------------------------- /modules/admin-home/assets/js/layouts/grids/grid-with-action-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/layouts/grids/grid-with-action-links.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/pages/admin-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/pages/admin-page.js -------------------------------------------------------------------------------- /modules/admin-home/assets/js/providers/admin-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/assets/js/providers/admin-provider.js -------------------------------------------------------------------------------- /modules/admin-home/components/admin-menu-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/admin-menu-controller.php -------------------------------------------------------------------------------- /modules/admin-home/components/admin-top-bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/admin-top-bar.php -------------------------------------------------------------------------------- /modules/admin-home/components/ajax-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/ajax-handler.php -------------------------------------------------------------------------------- /modules/admin-home/components/api-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/api-controller.php -------------------------------------------------------------------------------- /modules/admin-home/components/conversion-banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/conversion-banner.php -------------------------------------------------------------------------------- /modules/admin-home/components/finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/finder.php -------------------------------------------------------------------------------- /modules/admin-home/components/notificator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/notificator.php -------------------------------------------------------------------------------- /modules/admin-home/components/scripts-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/scripts-controller.php -------------------------------------------------------------------------------- /modules/admin-home/components/settings-controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/components/settings-controller.php -------------------------------------------------------------------------------- /modules/admin-home/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/module.php -------------------------------------------------------------------------------- /modules/admin-home/rest/admin-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/rest/admin-config.php -------------------------------------------------------------------------------- /modules/admin-home/rest/promotions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/rest/promotions.php -------------------------------------------------------------------------------- /modules/admin-home/rest/rest-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/rest/rest-base.php -------------------------------------------------------------------------------- /modules/admin-home/rest/theme-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/rest/theme-settings.php -------------------------------------------------------------------------------- /modules/admin-home/rest/whats-new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/modules/admin-home/rest/whats-new.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/screenshot.png -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/sidebar.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/style.css -------------------------------------------------------------------------------- /template-parts/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/template-parts/404.php -------------------------------------------------------------------------------- /template-parts/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/template-parts/archive.php -------------------------------------------------------------------------------- /template-parts/dynamic-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/template-parts/dynamic-footer.php -------------------------------------------------------------------------------- /template-parts/dynamic-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/template-parts/dynamic-header.php -------------------------------------------------------------------------------- /template-parts/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/template-parts/footer.php -------------------------------------------------------------------------------- /template-parts/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/template-parts/header.php -------------------------------------------------------------------------------- /template-parts/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/template-parts/search.php -------------------------------------------------------------------------------- /template-parts/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/template-parts/single.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit/hello-elementor/test-first.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/phpunit/hello-elementor/test-first.php -------------------------------------------------------------------------------- /tests/playwright/assets/api-requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/assets/api-requests.ts -------------------------------------------------------------------------------- /tests/playwright/assets/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/assets/breakpoints.ts -------------------------------------------------------------------------------- /tests/playwright/assets/elements-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/assets/elements-utils.ts -------------------------------------------------------------------------------- /tests/playwright/assets/wp-cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/assets/wp-cli.ts -------------------------------------------------------------------------------- /tests/playwright/config/timeouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/config/timeouts.ts -------------------------------------------------------------------------------- /tests/playwright/pages/base-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/pages/base-page.ts -------------------------------------------------------------------------------- /tests/playwright/pages/editor-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/pages/editor-page.ts -------------------------------------------------------------------------------- /tests/playwright/pages/settings-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/pages/settings-page.ts -------------------------------------------------------------------------------- /tests/playwright/pages/wp-admin-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/pages/wp-admin-page.ts -------------------------------------------------------------------------------- /tests/playwright/parallelTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/parallelTest.ts -------------------------------------------------------------------------------- /tests/playwright/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/playwright.config.ts -------------------------------------------------------------------------------- /tests/playwright/selectors/editor-selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/selectors/editor-selectors.ts -------------------------------------------------------------------------------- /tests/playwright/selectors/top-bar-selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/selectors/top-bar-selectors.ts -------------------------------------------------------------------------------- /tests/playwright/temp-form-page-url.txt: -------------------------------------------------------------------------------- 1 | /?p=564 -------------------------------------------------------------------------------- /tests/playwright/tests/admin/hello-theme-admin-home.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/admin/hello-theme-admin-home.test.ts -------------------------------------------------------------------------------- /tests/playwright/tests/admin/hello-theme-admin-home.test.ts-snapshots/welcome-section-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/admin/hello-theme-admin-home.test.ts-snapshots/welcome-section-linux.png -------------------------------------------------------------------------------- /tests/playwright/tests/settings/description-meta-tag.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/settings/description-meta-tag.test.ts -------------------------------------------------------------------------------- /tests/playwright/tests/settings/header-footer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/settings/header-footer.test.ts -------------------------------------------------------------------------------- /tests/playwright/tests/settings/page-title.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/settings/page-title.test.ts -------------------------------------------------------------------------------- /tests/playwright/tests/settings/reset-css.test .ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/settings/reset-css.test .ts -------------------------------------------------------------------------------- /tests/playwright/tests/settings/settings-suite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/settings/settings-suite.test.ts -------------------------------------------------------------------------------- /tests/playwright/tests/settings/skip-links.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/settings/skip-links.test.ts -------------------------------------------------------------------------------- /tests/playwright/tests/settings/theme-css.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/settings/theme-css.test.ts -------------------------------------------------------------------------------- /tests/playwright/tests/theme-settings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/tests/theme-settings.test.ts -------------------------------------------------------------------------------- /tests/playwright/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/types/types.ts -------------------------------------------------------------------------------- /tests/playwright/utils/test-page-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/utils/test-page-url.ts -------------------------------------------------------------------------------- /tests/playwright/wp-authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/playwright/wp-authentication.ts -------------------------------------------------------------------------------- /tests/wp-env/config/activate_plugin.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -eox pipefail 3 | WP_CLI_CACHE_DIR=/tmp wp plugin install "$1" --activate 4 | -------------------------------------------------------------------------------- /tests/wp-env/config/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tests/wp-env/config/setup.sh -------------------------------------------------------------------------------- /tests/wp-env/config/wp-cli.yml: -------------------------------------------------------------------------------- 1 | apache_modules: 2 | - mod_rewrite 3 | -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/theme.json -------------------------------------------------------------------------------- /theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/theme.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementor/hello-theme/HEAD/webpack.config.js --------------------------------------------------------------------------------