-- HikaShop version -- : 3.5.0
-- Joomla version -- : 3.8.12
-- PHP version -- : 7.1
How would I add custom html to the PayPal thank you page (i.e., "/checkout/after_end.php")? I've looked in the plugin and see where this can be changed, but my website is defaulting to displaying the info as a system message.
$app = JFactory::getApplication();
$app->enqueueMessage( JText::_('THANK_YOU_FOR_PURCHASE') );
if(!empty($this->url))
$app->enqueueMessage(JText::sprintf('YOU_CAN_NOW_ACCESS_YOUR_ORDER_HERE',$this->url));
A few of the other payment plugins have their own dedicated thank you message that you can change inside the plugin files (.e.g, First Data). Ideally, I would like to do this without another redirect to a custom thank you page.