Code Monkey home page Code Monkey logo

Comments (3)

JustinSainton avatar JustinSainton commented on August 27, 2024

Hi @kzap,

I wonder, couldn't you modify this behavior via the segment_get_current_page_track filter?

from analytics-wordpress.

kzap avatar kzap commented on August 27, 2024

Yes you're right, here's what i did in functions.php

// track pages properly
add_filter('segment_get_current_page_track', function ($track, $settings, $this) {
    if ( $settings['track_pages'] ) {

        if (!is_front_page()) {
            if ( ! Segment_Analytics_WordPress::is_excluded_post_type() ) {
                $categories = implode( ', ', wp_list_pluck( get_the_category( get_the_ID() ), 'name' ) );
                $track = array(
                    'event'      => sprintf( __( 'Viewed %s', 'segment' ), ucfirst( get_post_type() ) ),
                    'properties' => array(
                        'title'      => single_post_title( '', false ),
                        'category'   => $categories
                    )
                );
            }
        }

    }

    // set extra properties
    if ($track) {
        if (!is_front_page()) {
            $newProperties = array(
                'Page ID' => get_the_ID(),
                'Page Title' => addslashes(the_title('', '', false)),
                'Page Slug' => get_the_slug(),
                'Page Template' => strtolower(basename(get_page_template())),
            );
            $track['properties'] = array_merge((array) $track['properties'], $newProperties);
        }
    }

    return $track;
}, 10, 3);

from analytics-wordpress.

JustinSainton avatar JustinSainton commented on August 27, 2024

👍

from analytics-wordpress.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.