I'm trying to fire a pageview trigger whenever the manage staff page of my website is viewed. I tried to do it using the PageView trigger and using Page URL equals https://workex.jobs/manage-staff. The manage staff page can be opened from the home screen by clicking on Manager Staff button on the header. Link to the home page - https://workex.jobs/ Link to the page I'm trying to monitor - https://workex.jobs/manage-staff The pageview trigger is not fired when I click on manage staff button on the header which opens the page I'm tracking (https://workex.jobs/manage-staff). But, the trigger is only fired when I refresh the manage staff page. I want to know why the pageview trigger does not fire when I click on the button that opens the page whose URL I'm tracking? [enter image description here][1]
Pageview trigger not firing in Google Tag Manager
2.5k Views Asked by Shikha At
2
There are 2 best solutions below
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in GOOGLE-TAG-MANAGER
- Google Analytics doesnt register events when redirected in a second page
- Google Analytics 4 does not show data (realtime/debugview)
- Load dataLayer Variables prior to gtag configuration in GTM
- Google Task Manager with Goole Consent with custom Consent Popup
- GTM GA4 Custom HTML tag to new Google Tag - possible?
- Share link preview on whatsapp contain google tag manager code
- more_than_30_sec event in GA4 strange behavior
- How do I track use of google translate widget in GTM?
- Retrieve visitor's Google query, pass it to the URL parameters and collect it for analytics purposes
- How do I create a GA4 report showing event count when the events have unique/custom names?
- Cookiebot via GTM / no conversions in Google ADS
- Events transmitted through the Measurement Protocol with the user_id are not received in GA4
- How can I track quiz answers width GTM?
- How to setup signup tracking for Googles oauth2 signup cross-domain with google tag manager
- GA4 doesn't collect my event parameter but GTM collects
Related Questions in PAGEVIEWS
- How to find page views by URL in Google Analytics
- Cost of user session who viewed a specific page or event in GA4
- PageView and BottomNavigationBar lagging
- Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other laravel google/apiclient
- How to show a cumulative chart of page views in GA4?
- What reasons are behind the firing of many pageview events on a Data Layer?
- How to stop one page from firing a page view?
- SwiftUI - TabView - PageView Fullscreen Problem
- Pass scrollview offset value from View through Page View Controller Swiftui
- GA4 Vs UA basic stats comparison - page views , users
- adding form with globalKey inside PageView.Builder
- Flutter BottomNavigationBar Animation not functioning
- In Google Analytics 4 (GA4) how can I see page views by path and querystring when only "Page path and screen class" is available?
- flutter - PageView Builder & Card - displaying different info on each card
- Issue when I try creating Sliver app bar and pageview in the same widget
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

The pageview trigger doesn't work on navigations because your site is an SPA. A single page application. It implies that there are no real pageloads on navigations. On a hard refresh or when you navigate to that page directly and not as a result of site navigation, a pageview is issued.
You just want to add a history change trigger to your existing pageview trigger. This one:
And apply your additional trigger page filters or it will fire on every navigation.