Skip to content

Commit c0ada01

Browse files
committed
Fix broken internal links and stale anchors
1 parent 6cdbd72 commit c0ada01

9 files changed

Lines changed: 15 additions & 17 deletions

src/content/docs/guides/flow-builder/builder-elements.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ This section describes foreground media elements. Change the [screen background]
7171

7272
### List
7373

74-
List elements organize content into rows and columns to display uniformly formatted data. Under the hood, a list is a [stack](manage-paywall-ui-elements#auto-layout-and-wrapping).
74+
List elements organize content into rows and columns to display uniformly formatted data. Under the hood, a list is a [stack](manage-paywall-ui-elements#layout).
7575

7676
- **Icon List**: rows with a leading icon and text label
7777
- **Timeline**: vertical sequence with connected step indicators
@@ -86,7 +86,7 @@ List elements organize content into rows and columns to display uniformly format
8686

8787
<ZoomImage id="badge-template.webp" width="200px" alt="Badge templates" float="right"/>
8888

89-
A small overlay label to highlight an element — typically used to promote discounts or specific plans (e.g., "Save 5%"). Use [absolute positioning](manage-paywall-ui-elements#absolute-position) to place a badge over a different element.
89+
A small overlay label to highlight an element — typically used to promote discounts or specific plans (e.g., "Save 5%"). Use [absolute positioning](manage-paywall-ui-elements#absolute) to place a badge over a different element.
9090

9191
### Checkmarks
9292

src/content/docs/guides/flow-builder/builder-navigation-actions.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ metadataTitle: "Navigation | Flow Builder | Adapty Docs"
88

99
The Flow Builder gives you full control over how users move through your flow and how your app exchanges data with it — all without writing code.
1010

11-
- **[Navigation](onboarding-navigation-branching.md)**: Guide users through screens with static routes or dynamic branching based on their choices
12-
- **[Actions](onboarding-actions.md)**: Define what happens when users tap buttons or interact with elements
13-
- **[Loaders and progress bars](builder-loaders-and-progress-bars.md)**: Show loading indicators and progress tracking between screens
14-
- **[Variables](onboarding-variables.md)**: Display dynamic content by referencing data collected during the flow
15-
- **[Selectable elements and groups](flow-selectable-elements.md)**: Make elements selectable, organize them into groups, and use their state in conditions
16-
- **[Conditional visibility](onboarding-element-visibility.md)**: Show or hide elements and screens based on user responses or conditions
11+
- **[Navigation](onboarding-navigation-branching)**: Guide users through screens with static routes or dynamic branching based on their choices
12+
- **[Actions](onboarding-actions)**: Define what happens when users tap buttons or interact with elements
13+
- **[Loaders and progress bars](builder-loaders-and-progress-bars)**: Show loading indicators and progress tracking between screens
14+
- **[Variables](onboarding-variables)**: Display dynamic content by referencing data collected during the flow
15+
- **[Selectable elements and groups](flow-selectable-elements)**: Make elements selectable, organize them into groups, and use their state in conditions
16+
- **[Conditional visibility](onboarding-element-visibility)**: Show or hide elements and screens based on user responses or conditions

src/content/docs/guides/flow-builder/builder-styling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ The **Styles** <Inline id="styles.svg" alt="Styles" /> panel in the left sidebar
234234
### Text styles
235235

236236
:::link
237-
Main article: [Text content](onboarding-text.md)
237+
Main article: [Text content](onboarding-text)
238238
:::
239239

240240
<ZoomImage id="flow-builder/flow-builder-text-styles.webp" width="250px" float="left" alt="Text styles" />

src/content/docs/release-notes/whats-new.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,6 @@ We'd love to hear from you! Contact us via the [Product feedback board](https://
122122

123123
- **In-app web paywalls**: Display web-based paywalls within your app using an in-app browser, providing a seamless experience without external redirects. [iOS](ios-web-paywall#open-web-paywalls-in-an-in-app-browser) | [Android](android-web-paywall#open-web-paywalls-in-an-in-app-browser) | [React Native](react-native-web-paywall#open-web-paywalls-in-an-in-app-browser) | [Flutter](flutter-web-paywall#open-web-paywalls-in-an-in-app-browser)
124124

125-
- **Line-by-line AI translation in Paywall Builder**: Select specific text elements in your paywall and translate them with AI assistance, making localization more precise and flexible. [Learn more](add-paywall-locale-in-adapty-paywall-builder#translating-paywalls-with-ai)
126-
127125
- **Rolling segments**: Create dynamic audience segments that automatically update based on moving time windows. For example, create a segment for "users who installed the app in the last 7 days" that continuously refreshes to always show your newest customers. [Learn more](segments#available-attributes)
128126

129127
- **Meta and TikTok campaign setup guides**: Step-by-step documentation for creating and tracking campaigns on Meta (Facebook & Instagram) and TikTok, with conversion tracking and analytics integration. [Meta](meta-create-campaign) | [TikTok](tiktok-create-campaign)

src/content/docs/version-3.0/onboarding-actions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Triggers a purchase flow directly from a button or interaction in your onboardin
9898

9999
You can configure two behaviors for this action:
100100
- **In-app store**: Initiates a native purchase. Set **Product** to a specific product, or to `products.selectedProduct` for the user's current selection on the screen.
101-
- **Web payment**: Sends the user to a [web paywall](web-paywall.md) instead of triggering a native purchase. Use this when you want to handle the transaction outside the app, such as for web-based subscription offers.
101+
- **Web payment**: Sends the user to a [web paywall](web-paywall) instead of triggering a native purchase. Use this when you want to handle the transaction outside the app, such as for web-based subscription offers.
102102

103103
<ZoomImage id="onboarding-purchase-action.webp" width="500px" alt="Purchase action configuration in the Edit action window" />
104104

@@ -109,7 +109,7 @@ Fires a named custom action that your app code handles. Use this when you need b
109109
To set up a custom action:
110110

111111
1. In the **Edit action** window, assign an **Action ID** — a string your app will recognize (for example, `show_discount`).
112-
2. In your app code, implement a handler for this action ID. See [Handle paywall actions](handle-paywall-actions.md) for implementation details.
112+
2. In your app code, implement a handler for this action ID. See [Handle paywall actions](handle-paywall-actions) for implementation details.
113113

114114
<ZoomImage id="onboarding-custom-action.webp" width="500px" alt="Custom action configuration with Action ID field in the Edit action window" />
115115

src/content/docs/version-3.0/onboarding-layout.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ To adjust each element individually:
7878
- **Add shadows**: Adds a single drop shadow with configurable offset, blur/spread, and color.
7979

8080
:::note
81-
In addition to these basic element layout settings, you can further customize the appearance of specific elements like [media](onboarding-media#media-customization), [text](onboarding-text#text--list-customization), [buttons](onboarding-buttons#button-customization), [quizzes](onboarding-quizzes#quiz-customization) and others using the **Styles** tab for the element.
81+
In addition to these basic element layout settings, you can further customize the appearance of specific elements like [media](onboarding-media#media-customization), [text](onboarding-text), [buttons](onboarding-buttons#button-customization), [quizzes](onboarding-quizzes) and others using the **Styles** tab for the element.
8282
:::
8383

8484
<Zoom>

src/content/docs/version-3.0/onboarding-quizzes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To route users differently based on their selection, set a conditional action on
3434
See the relevant guides to understand how to use quiz answers:
3535
- [Conditional navigation](onboarding-navigation-branching)
3636
- [Variables](onboarding-variables)
37-
- [Actions](onboarding-actions.md)
37+
- [Actions](onboarding-actions)
3838
:::
3939

4040
<ZoomImage id="conditional-navigation-quiz.webp" width="700px" alt="Add input" />

src/content/docs/version-3.0/paywall-layout-and-products.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Controls overflow behavior. Enable **Vertical scroll** to allow the screen conte
131131
Main article: [Selectable elements and groups](flow-selectable-elements)
132132
:::
133133

134-
The **Selectable groups** section lists all selectable groups on the current screen — from [quizzes](builder-inputs-and-forms#quizzes), [products](paywall-product-block), [tabs](builder-tabs), [trial toggles](builder-toggles), or any [custom selectable element](flow-selectable-elements#make-an-element-selectable).
134+
The **Selectable groups** section lists all selectable groups on the current screen — from [quizzes](onboarding-quizzes), [products](paywall-product-block), [tabs](builder-tabs), [trial toggles](builder-toggles), or any [custom selectable element](flow-selectable-elements#make-an-element-selectable).
135135

136136
Click a group entry to rename it, change its type, view the variables it exposes, or delete it.
137137

src/content/docs/version-3.0/using-custom-fonts-in-legacy-paywall-builder.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Every text you see in Paywall Builder can have its own font and style. You can a
3434
/>
3535
</Zoom>
3636

37-
But in some cases, it'd be more convenient to change the font on the entire paywall. This can be done in the Layout section of Paywall Builder [by adjusting the Paywall Font](paywall-layout-and-products#font-settings-of-your-paywall).
37+
But in some cases, it'd be more convenient to change the font on the entire paywall. This can be done in the Layout section of Paywall Builder [by adjusting the Paywall Font](paywall-layout-and-products).
3838

3939
## Fonts available by default
4040

0 commit comments

Comments
 (0)