Hi,
The final URL should definitely contain that extra parameter if you added it in the Return URL parameter of the payment method.
However, that might not help you anyway since that's not the URL where PayPal redirects you, but the URL that HikaShop system redirects you after it did some processing.
You might need to add your parameter in the URL of the line:
$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order->order_id . $this->url_itemid;
of the file plugins/hikashoppayment/paypal/paypal.php like that:
$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&utm_nooverride=1&order_id='.$order->order_id . $this->url_itemid;