Tab label: When selecting a tab, in “General” the tab label will affect the name of the tab, the label of the menu item and the page title (only if page title in “Options” is empty)
Page Title: This is found in “Options”. It overrides tab label for the page title only, not for the name of the tab nor for the label of the menu item
Slug: This is found in “Options”. Allows to clean up the URL of a tab (top-level screen).
I’m a little confused as to how to use these in practice, maybe someone could share how they use these:
Is “Page title” useful if we want the page title and label of the menu item to be different?
Is “Slug” useful presumably to make URL readable, but for humans and analytics? If so, why is the slug option only available at the tab level and not on every single screen?
I’ve been using the PostHog integration and the paths report in PostHog, but the way URLs are structured in Glide and then passed on to PostHog make the paths report cumbersome to exploit.
Hi Nicolas,
Session replay is what I mean - it looks like the glide posthog integration only allows tracking of events, rather than recording sessions - or am I missing something?
thanks
This integration is active on one of my apps - I wanted to test it out and explore its features and potential value in my case.
So yes, I can confirm that Session replay is available
That’s actualy why I said if feels a bit scary - you can see exactly where users click, which pages they visit, how they move the mousen and more
Very useful though, especially to check how effective your screen visibility settings are. For instance, I noticed that some users have access to tabs or components they weren’t supposed to see… because I hadn’t set things up properly
EDIT: If I remember correctly, you need to go to your PostHog dashboard and enable the feature manually: Session Replay → Settings → toggle Record user sessions to ON.
Wow, Posthog sounds amazing - can’t wait to try it out @Nicolas_Joseph!
Does it track basic stats also, in particular ‘Last Login’ and ‘Number of Logins’ for each User?
Are there also counts at the User level, and at total audience level, for actions / workflows, or do we need to watch back the Session Replays to figure those stats out?
I’m not a PostHog expert, but from what I’ve seen, this kind of analysis isn’t available natively.
That’s said, it’s fairly easy to build your own using SQL (technically HogQL cf. Introducing HogQL: Direct SQL access for PostHog - PostHog). You can query the latest event captured for each user, which givs you a solid last seen timestamp. It’s not the exact login time, but it’s clide enought for most needs.
-- Basic example: get the latest activity timestamp per user
SELECT
person_id,
max(timestamp) AS last_activity
FROM events
GROUP BY person_id
ORDER BY last_activity DESC
LIMIT 100
Glide also offers several built-in ito track user behaviour which might better match your needs depending on your context. You might want to explore:
@Nicolas_Joseph thanks very much - ‘Last Seen’ is perfect. Will check out PostHog first as seems a good solution given we can query the events for each Use (I haven’t used any of the options before e.g. PH, GA, Mixpanel etc).