Hi,
If you want to display the download links, you have to load the full order in the thank you page.
At this moment, you would have the access to the downloadable files like it is done in the "order | show" view.
$orderClass = hikashop_get('class.order');
$order = $orderClass->get( $order_id );
foreach($order->products as $product){
// Find the next line in the view "order | show".
if(!empty($product->files) && ($this->order_status_download_ok || bccomp($product->order_product_price,0,5)==0)){
/* ... */
}
}
Regards,