Skip to content

Commit

Permalink
docs: Improve documentation when conversion goal is selected
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeelaudibert committed Dec 6, 2024
1 parent bb88cec commit 2b1917b
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions frontend/src/scenes/web-analytics/webAnalyticsLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -775,14 +775,21 @@ export const webAnalyticsLogic = kea<webAnalyticsLogicType>([
accessed in your application, regardless of when they were
accessed through the lifetime of a user session.
</p>
<p>
The{' '}
<Link to="https://posthog.com/docs/web-analytics/dashboard#bounce-rate">
bounce rate
</Link>{' '}
indicates the percentage of users who left your page immediately
after visiting without capturing any event.
</p>
{conversionGoal ? (
<p>
The conversion rate is the percentage of users who completed
the conversion goal in this specific path.
</p>
) : (
<p>
The{' '}
<Link to="https://posthog.com/docs/web-analytics/dashboard#bounce-rate">
bounce rate
</Link>{' '}
indicates the percentage of users who left your page
immediately after visiting without capturing any event.
</p>
)}
</div>
),
},
Expand All @@ -806,8 +813,17 @@ export const webAnalyticsLogic = kea<webAnalyticsLogicType>([
title: 'Entry Path',
description: (
<div>
Entry paths are the paths a user session started, i.e. the first
path they saw when they opened your website.
<p>
Entry paths are the paths a user session started, i.e. the first
path they saw when they opened your website.
</p>
{conversionGoal && (
<p>
The conversion rate is the percentage of users who completed
the conversion goal after the first path in their session
being this path.
</p>
)}
</div>
),
},
Expand Down

0 comments on commit 2b1917b

Please sign in to comment.