Hi there,
You can do customisation here
.../components/com_payplans/themes/wireframe/thanks/default/default.php and follow steps prompted here
https://stackideas.com/docs/payplans/administrators/customization/template-override
Remove code below.
[gist type="php"]
<div class="pp-result__desc">
<?php echo JText::_('COM_PP_THANK_YOU_NOTE');?>
</div>
<?php if (!$this->my->id) { ?>
<div class="pp-result__desc">
<div class="t-lg-mt--xl t-lg-mb--xl">
<span class="o-label o-label--warning o-label--lg"><?php echo JText::_('COM_PP_NOTE');?></span>
</div>
<?php echo JText::_('COM_PP_ACTIVATE_ACCOUNT_NOTE');?>
</div>
<?php } ?>
<div class="pp-result__action t-lg-mt--xl">
<a href="<?php echo PPR::_('index.php?option=com_payplans&view=dashboard');?>" class="btn btn-pp-primary btn--lg t-lg-mt--xl">
<?php echo JText::_('COM_PP_PROCEED_TO_DASHBOARD_BUTTON'); ?>
</a>
</div>
[/gist]
Previously there was an option to have the user logged in upon purchase completion. Is that no longer available? How can I place a login form into the thank you page
We have remove them on this version. If you wanted to add them, do add codes below on above files
[gist type="php"]
<?php echo $this->output('site/checkout/default/login'); ?>
[/gist]
P/S: In the future, please start a new ticket for any new questions rather than posting on your existing thread as it would be more difficult for us to manage in the future.