Hello @maxkabechani ,
This is an interesting idea.
Dokan adds the vendor name along with the ordered items. So, you can follow that procedure to show other information as well.
First, check how Dokan adds the vendor name to the ordered item here –
Path: \dokan-lite\includes\wc-template.php
Function: dokan_attach_vendor_name
You can notice that the vendor name & URL is accessed using these –
$vendor->get_shop_url()
$vendor->get_shop_name()
Following these structures, you can also get vendor’s other information like –
get_name()
get_phone()
get_address()
You can copy the mentioned function and include this new information from your theme’s functions.php file. If you are not comfortable with writing codes, please consult with an expert.
Thank you ??