0
There are issues in Affiliate Tracker with some of the layouts on the frontend. Fields are overlapping. I already tested disabling bootstrap and jquery to see if those were the issues, but there was no change.
Responses (3)
-
Accepted Answer
0I needed to take this live ASAP, so I did some editing to the views (I'm a novice/intermediate J! Extension developer).
What I ended up doing that resolved the layout issue was edited the date_in and date_out PHP to the following
<?php echo JHTML::calendar($this->lists['date_in'], "date_in", "date_in", "%Y-%m-%d", array("class" => "input-small", "placeholder" => JText::_( 'FROM' ))); ?><?php echo str_repeat(' ', 30); // adds 30 spaces ?>
<?php echo JHTML::calendar($this->lists['date_out'], "date_out", "date_out", "%Y-%m-%d", array("class" => "input-small", "placeholder" => JText::_( 'TO' ))); ?><?php echo str_repeat(' ', 30); // adds 30 spaces ?>
There may be something better, but this seemed to work in a "crunch". If you would still like to test, I can clone the site and remove the PHP I added so you could test it. I personally know that coding for every environment is a nightmare. -
Accepted Answer
0That didn't turn out very good with the code option, so here it is in text. Hopefully it will display:
lists['date_in'], "date_in", "date_in", "%Y-%m-%d", array("class" => "input-small", "placeholder" => JText::_( 'FROM' ))); ?>
lists['date_out'], "date_out", "date_out", "%Y-%m-%d", array("class" => "input-small", "placeholder" => JText::_( 'TO' ))); ?>
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 »