0
Hi,
as you can see in attached image, the modal for the Terms and Conditions has a wrong backdrop: it is covering everything including the modal. I have this issue since last update on multiple sites.
as you can see in attached image, the modal for the Terms and Conditions has a wrong backdrop: it is covering everything including the modal. I have this issue since last update on multiple sites.
Accepted Answer
0
Hi, just figured it out.
The problem has to do with the positioning of the parent containers.
the solution is to change in file: ./components/com_affiliatetracker/views/account/tmpl/form.php
the following line:
into:
Hope this helps
The problem has to do with the positioning of the parent containers.
the solution is to change in file: ./components/com_affiliatetracker/views/account/tmpl/form.php
the following line:
<?php echo JText::_('ACCEPT'); ?> <a href="#" onclick="jQuery('#termsmodal').modal('show')"><?php echo JText::_('TERMS_AND_CONDITIONS'); ?></a>
into:
<?php echo JText::_('ACCEPT'); ?> <a href="#" onclick="jQuery('#termsmodal').appendTo('body').modal('show')"><?php echo JText::_('TERMS_AND_CONDITIONS'); ?></a>
Hope this helps
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »