add image thumbnails in order list back end?

  • Posts: 17
  • Thank you received: 2
11 years 10 months ago #57559

how to add another column in order summary for image?

Attachments:

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

  • Posts: 81677
  • Thank you received: 13099
  • MODERATOR
11 years 10 months ago #57631

The images data is not loaded there.
So you can't just add a line of code to have the images displayed. You would first have to have a query to the database in order to load the images, add the images for each of the product objects and then display them.
You can do that in the file "show" of the view "order" of the back end via the menu Display->Views, but it will be difficult if you're not a developer...

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

  • Posts: 17
  • Thank you received: 2
11 years 10 months ago #57652

can i know how to quuery the image from the database?
i'm using hikashop business edition~ our client requested to add that image for ease of processing the orders

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

  • Posts: 81677
  • Thank you received: 13099
  • MODERATOR
11 years 9 months ago #57717

It should be something like that:

SELECT * FROM #__hikashop_file WHERE file_ref_id =XXX AND file_type='product' ORDER BY file_ref_id ASC, file_ordering ASC, file_id ASC

That would return you all the images data of the product with the id XXX.
Then, you would have to load the image helper: $imageHelper = hikashop_get('helper.image');
And finally use it to display the image based on the data from the query, as we do in the file "show_block_img" that you can see via the menu Display->Views.

Note that this is a development project which is outside the support contract included in the Business edition. I already gave you more than enough information so that a developer could do it by himself, but if you want us to do it for you, then we would ask that you request a quote for that via our contact form:
www.hikashop.com/en/contact-us.html

The following user(s) said Thank You: Yuji

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

Time to create page: 0.058 seconds
Powered by Kunena Forum