Well many times i get this error – Notice: Undefined variable: direction
after using code like this
if ($direction == 'rtl') { echo 'أخبار الموقع'; } else { echo 'News'; }
the soultion is go to here in your opencart site:
catalog/controller/common
open page:
footer.php
add this line :
$this->data['direction'] = $this->language->get('direction');
and your are done
Advertisements