Add selection of client roles: fix indentation
This commit is contained in:
parent
70a1ebd84c
commit
9bc00eb782
2 changed files with 3 additions and 2 deletions
|
@ -623,6 +623,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
|
|||
public function isCustomer($user)
|
||||
{
|
||||
$retailcrmSettings = array();
|
||||
|
||||
if (!empty($this->retailcrm_settings) && array_key_exists('client_roles', $this->retailcrm_settings)) {
|
||||
$retailcrmSettings = $this->retailcrm_settings['client_roles'];
|
||||
}
|
||||
|
|
|
@ -171,7 +171,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
}
|
||||
|
||||
if ($wpUser instanceof WP_User) {
|
||||
if(!$this->customers->isCustomer($wpUser)){
|
||||
if (!$this->customers->isCustomer($wpUser)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -369,7 +369,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
$order_data = $this->orders->build($order)->get_data();
|
||||
|
||||
if ($order->get_items('shipping')) {
|
||||
$shippings = $order->get_items( 'shipping' );
|
||||
$shippings = $order->get_items('shipping');
|
||||
$shipping = reset($shippings);
|
||||
$shipping_code = explode(':', $shipping['method_id']);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue