rodrift13 Posted November 17, 2015 Share Posted November 17, 2015 Ola a todos estou com um problemas ao tentar adicionar categorias ao top menu. Quando tento adicionar, me aparece a sequinte tela. [PrestaShopException]Property WtMegamenuClass->position is emptyat line 909 in file classes/ObjectModel.php 904. }905.906. $message = $this->validateField($field, $this->$field);907. if ($message !== true) {908. if ($die) {909. throw new PrestaShopException($message);910. }911. return $error_return ? $message : false;912. }913. }914. Alguém tem ideia do que poderia ser? Link to comment Share on other sites More sharing options...
Perenus Posted February 1, 2016 Share Posted February 1, 2016 I've got the same problem. Were you able to fix it? If so would you be so kind to let us know how to solve it. Many thanks in advance Kind regards DAVID Link to comment Share on other sites More sharing options...
tuk66 Posted February 1, 2016 Share Posted February 1, 2016 Esse módulo WtMegamenu provavelmente não é compatível com a sua versão. O atributo position está disponível apenas em versões mais recentes. That WtMegamenu module is not probably compatible with your version. The position attribute is available in newer versions only. Link to comment Share on other sites More sharing options...
psahd_soares Posted February 5, 2016 Share Posted February 5, 2016 Olá a todos. Estou com o mesmo problema do rodrift13. Ao adicionar uma categoria me dá o erro: [PrestaShopException] Property WtMegamenuClass->position is emptyat line 909 in file classes/ObjectModel.php 904. }905.906. $message = $this->validateField($field, $this->$field);907. if ($message !== true) {908. if ($die) {909. throw new PrestaShopException($message);910. }911. return $error_return ? $message : false;912. }913. }914. Nota que descarreguei agora em Fevereiro a versão que está disponível no prestashop e o tema que comprei também é a última versão. Agradeço se puderem me dar alguma orientação. Obrigado. Paulo Link to comment Share on other sites More sharing options...
dungdn19 Posted February 27, 2016 Share Posted February 27, 2016 Find code in class module, changed - 'position' => array('type' => self::TYPE_INT, 'shop' => true, 'validate' => 'isunsignedInt', 'required' => true), + 'position' => array('type' => self::TYPE_INT, 'shop' => true, 'validate' => 'isunsignedInt', 'default' => 0), Link to comment Share on other sites More sharing options...
Recommended Posts