0

I fix /administrator/components/com_content/models/forms/article.xml

with

<field name="turbobit" type="text"
label="Turbobit" description="Turbobit"
class="inputbox" size="60" />

and /administrator/components/com_content/views/article/tmpl/edit.php

with

<li><?php echo $this->form->getLabel('turbobit'); ?>
<?php echo $this->form->getInput('turbobit'); ?></li>

but when I press save this field doesn't store in database

Where I must fix code more?

Vyacheslav Loginov
  • 3,136
  • 5
  • 33
  • 49

1 Answers1

1

in short, you need to add a column named "turbobit" in jos_content table in the database

take a look at my other answer: Add new image field to Joomla 1.7 com_content , which might be helpfull

Community
  • 1
  • 1
WooDzu
  • 4,771
  • 6
  • 31
  • 61