@Nemo module "Ask a question" works with tb 1.0.3
http://store.nemops.com/free-modules/32-ask-a-question.html#.WrLdsHARb
for themes with tabs i changed the
/ modules / prestaqna / prestaqna.php
it is not perfect with tabs, but at the moment i changed
```
public function hookProductTab($params)
{
if(versioncompare(PSVERSION, '1.6', '<'))
return $this->display(FILE, 'prestaqna_tab.tpl');
}
to
public function hookProductTab($params)
{
if(versioncompare(PSVERSION, '2.6', '<'))
return $this->display(FILE, 'prestaqna_tab.tpl');
}
and this
if(versioncompare(PSVERSION, '1.6', '>'))
return $this->display(FILE, 'prestaqnatabcontent.tpl');
else return $this->display(FILE, 'prestaqnatabcontent15.tpl');
to
if(versioncompare(PSVERSION, '2.6', '>'))
return $this->display(FILE, 'prestaqnatabcontent.tpl');
else return $this->display(FILE, 'prestaqnatabcontent15.tpl');
```
result