2016-09-08 9:29:19 - PHP Notice: Undefined variable: username in /home/sitename/public_html/storename/admin/view/template/common/column_left.tpl on line 5
Anyone know how to fix it?

Code: Select all
<img src="<?php echo $image; ?>" alt="<?php echo $firstname; ?> <?php echo $lastname; ?>" title="<?php echo $firstname; ?> <?php echo $lastname; ?>" class="img-circle" />
HuntBee OpenCart Services
https://www.huntbee.com
i was getting the same error in my 2.3.0.2 site and replaced the code as suggested by you.huntbee wrote:Your understanding in PHP is correct, however in this case, the issue needs to be fixed by updating the code Line no. 5 in admin/view/template/common/column_left.tpl as given below
The reason is variable $username is not defined in the controller file. Instead you can use the firstname lastname.Code: Select all
<img src="<?php echo $image; ?>" alt="<?php echo $firstname; ?> <?php echo $lastname; ?>" title="<?php echo $firstname; ?> <?php echo $lastname; ?>" class="img-circle" />
I had exactly the same problem, this fixed it, thankshuntbee wrote:Your understanding in PHP is correct, however in this case, the issue needs to be fixed by updating the code Line no. 5 in admin/view/template/common/column_left.tpl as given below
The reason is variable $username is not defined in the controller file. Instead you can use the firstname lastname.Code: Select all
<img src="<?php echo $image; ?>" alt="<?php echo $firstname; ?> <?php echo $lastname; ?>" title="<?php echo $firstname; ?> <?php echo $lastname; ?>" class="img-circle" />
Users browsing this forum: CD-Nico and 13 guests