If this line isn’t working for you:
=$this->getThemePath()?>
Use this:
getThemePath()?>
Why does this work? If you’re running versions of php earlier than say, 5.4, the shorthand
=
- won't work for you by default.
If this line isn’t working for you:
=$this->getThemePath()?>
Use this:
getThemePath()?>
Why does this work? If you’re running versions of php earlier than say, 5.4, the shorthand
=
- won't work for you by default.