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:
<?php item_category_select( __('Select a category...', 'twitter') ) ; ?>
This should be changed to:
<?php ItemForm::category_select(null, null, __('Select a category', 'twitter')); ?>
After this modification, custom fields are inserted correctly into the "plugin-hook" div.
Kind Regards,
Haioken