LogoLogo
Product TourResourcesLog InBook a Demo
  • Welcome to Crobox
  • What's New
  • GETTING STARTED
    • First Steps
      • Crobox Snippet Implementation
        • Manual Snippet Implementation
        • GTM Snippet Implementation
      • Event Tracking Implementation
        • Pushing Events to Crobox
        • Content Security Policy Header
      • Cookie Wall Settings
    • Launch Your First Product Advisor
      • Choosing the Right Product Category
  • How to guides
    • Product Finders
      • Setup your Advisor
      • Manage the Question Flow
      • Finder Editor
        • Page Settings
        • Question Editor
        • Answer Editor
      • Translations
      • Create Activations
      • Activations: Best Practices
      • Product Quality Assurance
      • A/B Testing
      • Publishing & Versions
    • Campaigns
      • Create a Campaign
      • Testing
      • Campaign Performance
      • Adding a Campaign Category
      • What are the differences between Campaign Types?
    • Product Data
      • Setting up a Product Feed
      • Manage and Transform Product Properties
      • Product Data Enrichment
      • How to Create and Edit Product Tags
      • Adding a Property Category
    • Analytics Dashboard
      • Data Confidence
    • Product Recommenders
      • Creating a Recommender
    • FAQ
      • Performance & Security
      • Data & GDPR
      • How do I track the performance of my campaigns?
      • How do I create segments?
      • What are Smart Filters?
      • What's the difference between CTR impact and relative impact?
      • What's the difference between A/B testing, multivariate testing, and AI?
  • TECHNICAL DOCUMENTATION
    • Setting Custom Visitor Properties with Pageview API
    • Product Advisor Event Tracking Integration
    • Pre-selecting Advisor Questions
    • Custom Themes and CSS
  • Security & Compliance
    • Security Managment
    • Data Security
    • Legal
      • Cookie Policy
      • Developer Mode
      • General Terms and Conditions
  • ADMINISTRATION
    • User Management
    • Accounts and Billing
    • Troubleshooting and Support
Powered by GitBook
LogoLogo

Crobox

  • Product Tour
  • Crobox vs. The Competition

About

  • About Crobox
  • Partners
  • Careers
  • Ambassador Program

Resources

  • Trust Center
  • Blog
  • Resources
  • Privacy Policy
On this page
  • Configuring Custom Properties in the Crobox App
  • Utilizing Custom Properties in Crobox

Was this helpful?

  1. TECHNICAL DOCUMENTATION

Setting Custom Visitor Properties with Pageview API

You can set visitor properties directly using the Pageview API. This allows you to send custom visitor attributes through to Crobox as part of your pageview events.

Here's how you can use this feature:

crobox.push(function(crobox) {
  // The Crobox API is now initialized and methods are available
  crobox.pageview({
    pt: crobox.PAGE_INDEX,
    lc: "en-AA", 
    // The cp (custom property) field lets you send any custom visitor property
    cp: {
      cuddles: "yes"
    }
  });
});

Configuring Custom Properties in the Crobox App

After implementing the above code, follow these steps to complete the setup in the Crobox app:

  1. Navigate to Settings: Open the Crobox app and go to the settings.

  2. Select Visitor Properties: Find the "Visitor Properties" section under settings.

  3. Create a New Property: Click on "Create New Property."

  4. Name and Configure the Property: Use the key of the custom property you included in the pageview event (e.g., cuddles), these need to match. Set the property type accordingly, such as boolean if the pageview value is a yes/no function.

Utilizing Custom Properties in Crobox

Once configured, you can use the custom property in-app to:

  • Target Visitors: Apply this property to target specific visitors within your Crobox experiences.

  • Filter in Analytics: Leverage the custom property as a filter within your analytics for more detailed insights.

Contact your Account Manager for additional assistance.

PreviousWhat's the difference between A/B testing, multivariate testing, and AI?NextProduct Advisor Event Tracking Integration

Last updated 9 months ago

Was this helpful?