this error lines: 2015-04-01T07:08:14+00:00 ERR (3): Notice: Undefined variable: store in /app/code/local/Apptha/Timer/Helper/Data.php on line 49
2015-04-01T07:08:14+00:00 ERR (3): Notice: Undefined variable: store in /app/code/local/Apptha/Timer/Helper/Data.php on line 49
2015-04-01T07:08:14+00:00 ERR (3): Notice: Undefined variable: store in /app/code/local/Apptha/Timer/Helper/Data.php on line 57
2015-04-01T07:08:14+00:00 ERR (3): Notice: Undefined variable: store in /app/code/local/Apptha/Timer/Helper/Data.php on line 53
2015-04-01T07:08:14+00:00 ERR (3): Notice: Undefined variable: store in /app/code/local/Apptha/Timer/Helper/Data.php on line 53
will get solved by eding Data.php and changing this lines:
public function isTimerHeading(){ return $this->conf(self::XML_PATH_TIMER_HEADING, $store); } public function isTimerCaption(){ return $this->conf(self::XML_PATH_TIMER_CAPTION, $store); } public function getTimerTitle(){ return $this->conf(self::XML_PATH_TITLE, $store); }
to this:
public function isTimerHeading($store = null){ return $this->conf(self::XML_PATH_TIMER_HEADING, $store); } public function isTimerCaption($store = null){ return $this->conf(self::XML_PATH_TIMER_CAPTION, $store); } public function getTimerTitle($store = null){ return $this->conf(self::XML_PATH_TITLE, $store); }
but i steel have my product page problem! can any body help me?
|
|