Advertisement:

Author Topic: (Fix) Twitter Bootstrap theme 1.3 still not displaying custom fields.  (Read 1082 times)

Haioken

  • Newbie
  • *
  • Posts: 3
Hi Guys,

On a fresh install of Twitter BootStrap theme 1.3.3, I noticed I was still unable to show custom fields. The Ajax request was never being called on category change.
I noticed that the category select field contained no id, nor name.

The problem exists on line 49 of oc-content/themes/twitter/item-post.php.

The line currently reflects:
Code: [Select]
<?php item_category_select__('Select a category...''twitter') ) ; ?>
This should be changed to:
Code: [Select]
<?php ItemForm::category_select(nullnull__('Select a category''twitter')); ?>
After this modification, custom fields are inserted correctly into the "plugin-hook" div.

Kind Regards,

Haioken