在wordpress中获取prestashop的用户信息

时间:2016-06-03 12:56:29

标签: php wordpress prestashop-1.6 prestashop-1.7

我希望在themes/functions.php中将客户信息从prestashop获取到wordpress。 我知道prestashop在这个方法中提供了用户信息

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

我在theme / functions.php中添加了带config/settings.inc.php的prestahsop。

2 个答案:

答案 0 :(得分:0)

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

 @GET
    @Produces("text/html")
    public String getHtml() {
        return "Your Hardcoded response";
    }

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

答案 1 :(得分:0)

要访问Prestashop的功能和上下文,您只需添加config.inc.php文件即可。你会在这里找到那个文件

  

配置/ config.inc.php文件

您可以在Wordpress的主要配置文件wp-load.php

中添加此文件