What are page groups?
What are page groups?
- Smart page groups are rule-based. They can be topical, based off page templates from your content management system, divisions of business units, or any theme your rules can capture.
- Custom page groups are made from specific pages that you want to track in a single page group. They can represent any set of pages from your integrated web analytics profile.
Where do I create and manage page groups in Conductor?
Where do I create and manage page groups in Conductor?
What are Conductor's limits for creating and configuring page groups?
What are Conductor's limits for creating and configuring page groups?
What page groups should I create?
What page groups should I create?
- E-commerce sites: Do you have different sections or departments set aside for different product lines or categories? Those different sections or departments can make useful page groups.
- Publishers: Does your site have different sections with articles and posts on different topics or content types? Consider tracking that content together in a page group.
- If you publish different content to buyers in different stages of the buyer’s journey, track and manage how each piece of content in each stage is performing with a page group.
- If you break down the goals of your content based on Informational versus Transactional pages, use page groups to see how those goals are being met.
What criteria can I use in rules I create for smart page groups?
What criteria can I use in rules I create for smart page groups?
- URL
- Title tag
<h>tags- Meta Description
Are the URLs I add to a page group case sensitive?
Are the URLs I add to a page group case sensitive?
What do the URL statuses mean in custom page groups?
What do the URL statuses mean in custom page groups?
- Missing the protocol.
- Not part of the web property you have integrated from your web analytics.
- Not part of the web property you track in Conductor.
- Not structured like a URL.
Why does Conductor say a page in my custom page group is "Not Matched" when I know it's a valid URL?
Why does Conductor say a page in my custom page group is "Not Matched" when I know it's a valid URL?
- Have received at least one session attributed to organic search during the last reporting period.
- Be in the top 10,000 pages (or the top 100,000 pages, if you have upgraded) of pages receiving at least one session from organic traffic.
- Match the URL recorded by your web analytics provider exactly. For example:
- The URL you enter in a page group must include a trailing slash ( / ) if that is what your web analytics provider sends through your Conductor integration.
- The URL you enter in a page group must match the exact case your web analytics provider sends through your Conductor integration.
Why doesn't the smart page group Preview function include any pages?
Why doesn't the smart page group Preview function include any pages?
What is regex?
What is regex?
Example
Imagine you run an e-commerce site. You want a smart page group for all your individual Product Detail Pages, but you want to exclude your main Category pages. Your URLs look like this:- https://www.yoursite.com/products/ (Category page)
- https://www.yoursite.com/products/electronics/ (Category page)
- https://www.yoursite.com/products/green-widget-12345 (Product page)
- https://www.yoursite.com/products/blue-blender-98765 (Product page)
Contains: /products/ rule, Conductor will incorrectly select all four of those pages, mixing your category and product pages together.The Regex Solution: You need a rule that tells Conductor: “Only find pages that start with /products/ AND end with a dash followed by some numbers (like a product ID).”You would use a regex rule like this: /products/.*-\d+$. What this rule tells Conductor:/products/: “Find any URL that starts with the exact text /products/.”.*: This is a wildcard for “followed by any text” (like green-widget).-\d+$: This breaks down as follows:-: It must have a dash.\d+: It must then have one or more digits (0-9).$: And this pattern must be at the very end of the URL.
