```/** * @return bool|false */ public function getLoaderImage() { $url = $this->getScrollConfig('design/loading_img'); if (!empty($url)) { $url = strpos($url, 'http') === 0 ? $url : $this->getSkinUrl($url); } return empty($url) ? false : $url; } ``` You should use `$this->getViewFileUrl($url)` instead of `$this->getSkinUrl($url)`. Pierre-Louis