Show customer name in order overview

  • Posts: 27
  • Thank you received: 0
9 years 5 months ago #205513

-- url of the page with the problem -- : nature2u.co.nz/
-- HikaShop version -- : 2.4.0
-- Joomla version -- : 3.2.2
-- PHP version -- : 5.3.29
-- Browser(s) name and version -- : Mozilla/5.0
-- Error-message(debug-mod must be tuned on) -- : Not show name on order view

Hi,

Currently the order history only show the Serial number Order Number Date Order Status Total in the order overview.
I am wondering whether we can add the customer name to the order view, so the customers can tell the orders from the overview rather than click the order number to check the details. For example Show the shipping addressee.

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 82868
  • Thank you received: 13376
  • MODERATOR
9 years 5 months ago #205516

Hi,

There is no option for that.
You would have to edit the file "listing" of the view "order" via the menu Display>Views and add custom code to the view for that.

Please Log in or Create an account to join the conversation.

  • Posts: 27
  • Thank you received: 0
9 years 5 months ago #205660

Thank you Nicolas,

I have added a column into the orders, but this column is not what I need. I want to add the name of who this product is shipping to. I don't know how to get it from the database. Could you tell me please? Thank you very much.

Attachments:
Last edit: 9 years 5 months ago by rouben618.

Please Log in or Create an account to join the conversation.

  • Posts: 13201
  • Thank you received: 2322
9 years 5 months ago #205731

Hi,

You can use that code in the foreach:

$addressClass = hikashop_get('class.address');
$address = $addressClass->get($row->order_shipping_address_id);
if(isset($address->address_lastname)){
	echo $address->address_lastname." ".$address->address_firstname;
}

The following user(s) said Thank You: rouben618

Please Log in or Create an account to join the conversation.

  • Posts: 27
  • Thank you received: 0
9 years 5 months ago #205814

Thank you so much! All sorted! you are a star!!

Please Log in or Create an account to join the conversation.

Time to create page: 0.078 seconds
Powered by Kunena Forum