从Google跟踪代码管理器中的自定义javascript变量调用woocommerce(php)函数

时间:2018-06-22 11:08:26

标签: javascript php woocommerce google-tag-manager

我正在尝试在Google标记管理器中创建一个自定义变量,以识别页面是否为产品页面,为此,我想使用Woocommerce is_product()函数并将其作为自定义维度传递给GTM / GA。 / p>

我已经尝试过在这里看到的解决方案:How can I call PHP functions by JavaScript?就像这样:

class TestBase {
    @Test
    public void baseTestMethod() {
        System.out.println("TestBase::baseTestMethod()");
    }

    // ...
}

class TestSub extends TestBase {
    @Test(enabled = false) // if you delete this line, it will print "TestSub::baseTestMethod()"
    public void baseTestMethod() {
        System.out.println("TestSub::baseTestMethod()");
    }

    // ... other test methods
}

但是没有成功,因为它总是返回“ Undefined”。

我对javascript和php缺乏经验,所以我担心缺少了未正确调用is_product()或is_product()无法返回其应返回内容的东西。

非常感谢您的帮助。

0 个答案:

没有答案