Hi,
1. Edit the file plugins/hikashoppayment/stripe/stripe.php and add the line:
before the line:
return $this->showPage('end');
Then, in the file plugins/hikashoppayment/stripe/stripe_end.php you can add such PHP code:
<?php echo "Amount to pay, ".round($this->order->cart->full_total->prices[0]->price_value_with_tax)." kr including freight"; ?>
2. In that same plugins/hikashoppayment/stripe/stripe_end.php file, you can add the HTML you want to add such element. For example, you can use such code if you want to use the automatic tooltip system of joomla:
<?php echo JHTML::tooltip(JText::_('CVC_TOOLTIP_TEXT'), JText::_('CVC_TOOLTIP_TITLE'),
'', 'What is CVV?'); ?>