By Greg on Tuesday, 03 October 2017
Posted in General Issues
Replies 3
Likes 0
Views 484
Votes 0
Is there a way to add modules to the PayPlans checkout pages? If you look at the attached image of my "Confirm Invoice" page, I would like to add modules to the sidebars so it doesn't look so spaced out.
Unfortunately that was not possible add module on Payplans page now.
·
Tuesday, 03 October 2017 13:19
·
0 Likes
·
0 Votes
·
0 Comments
·
So I can’t add them to any module positions within PayPlans but is it possible to publish modules to my normal template positions on this particular page? I’m not sure what page the confirm invoice is associated with.

Thanks!
·
Tuesday, 03 October 2017 21:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Greg,

Hm, generally modules are associated with menu items and it becomes tricky since PayPlans doesn't render it's own module positions on their pages.

Perhaps you would need to add a hack in your template to render a special module position when it is on PayPlans page. It could be something like this,

[gist]
<?php if (JRequest::getVar('option') == 'com_payplans') { ?>
<jdoc:include type="modules" name="position-payplans" style="none" />
<?php } ?>
[/gist]

We will try to add our own module positions in the upcoming major release of PayPlans 3.7
·
Tuesday, 03 October 2017 22:17
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post