-1

我想从 prestashop 中获取客户信息到 wordpress 中themes/functions.php。我有 serach,prestashop 以这种方法提供用户信息

$id = $this->context->customer->id_customer; 

config/settings.inc.php我在我的主题/functions.php 中包含了 prestahsop 。

4

2 回答 2

0

要访问 Prestashop 的功能和上下文,您只需添加config.inc.php文件。您将在此处找到该文件

配置/config.inc.php

您可以将此文件添加到 Wordpress 的主配置文件中,即wp-load.php

于 2016-06-04T16:14:35.067 回答
0

如果您已包含配置文件并且您有客户 ID,请执行以下操作:

$customer = new Customer((int)$id);

你有所有的信息。但请记住,如果您需要有关客户地址的信息 - 您必须获取客户送货地址 ID 或发票地址 ID 并使用相同的: $address = new Address((int)$id_address_invoice);

于 2016-06-03T15:51:09.173 回答