Change Order Design Document

Change order design document

How we can change size of "{{ p.image }}" from order summary ?

Thanks

It depends on the "Admin panel: product mini-icon thumbnail width" and "Admin panel: product mini-icon thumbnail height" settings (Settings -> Thumbnails)

It depends on the "Admin panel: product mini-icon thumbnail width" and "Admin panel: product mini-icon thumbnail height" settings (Settings -> Thumbnails)

I see this

But we can change size separate ?

Admin panel to remain small, and i want on order summary to be more big

one css or html tweak ?!

Yes, it can be changed directly in the code

app/Tygh/Template/Snippet/Table/ProductVariable.php

replace

Registry::get('settings.Thumbnails.product_admin_mini_icon_width'),
Registry::get('settings.Thumbnails.product_admin_mini_icon_height')

with

200,
200

and clear cache

(!) Not tested

Yes !

Works

Thanks

You are welcome!