Can you create a custom page in Shopify-hosted Customer Accounts? 🔐

### Explanation You can create custom pages in Customer Accounts using full-page app extensions: ```typescript // shopify.extension.toml [[extensions.targeting]] target = "customer-account.page.render" module = "./src/FullPageExtension" // FullPageExtension.tsx export default function FullPage() { return ( {/* Custom content using Customer Account UI components */} ); } ``` Reference: [Build full-page extensions](https://shopify.dev/docs/apps/build/customer-accounts/full-page-extensions/build-new-pages)

Answer Options:

  • No, only predefined pages are available
  • Yes, using liquid templates
  • Yes, but only in legacy customer accounts
  • Yes, using full-page app extensions
Shopify Free Test
← PreviousQuestion 1 of 1Finish →
00
← PreviousFinish →
Copyright ©Michael Bollin. Found some mistake?[email protected]