Tagged: buddyblog, Custom fields, Image
Hello there,
First of all I want to thank for this wonderful plugin, for sure it has made our life easier.
I’m using BuddyBlog and Simple Front End Post plugins, and everything works ok.
However, there is something that I would like to achieve and I am hoping to get some of your help.In the New Post and Edit Posts forms I’m displaying custom fields but I can’t find the way to enable or display an image type (I have textbox, textarea and select types working fine).
Here is the code I use in bp-custom to display my custom fields
add_filter('buddyblog_post_form_settings','buddyblog_my_postform_settings');
function buddyblog_my_postform_settings($settings){
$settings=array(
'post_type'=> 'recipes',
'post_status'=>'publish',//'publish'|'draft' etc
'custom_fields'=>array(
'title'=>array(
'label'=>'Title',
'required'=>true,
'type'=>'textbox'),
'picture'=>array(
'label'=>'Picture',
'required'=>true,
'type'=>'image'), // THIS SHOULD BE AN IMAGE
'ingredients'=>array(
'label'=>'Ingredients',
'required'=>true,
'type'=>'textarea'),
'type_recipe'=>array(
'label'=>'Type',
'required'=>true,
'type'=>'select'),
'preparation'=>array(
'label'=>'Preparation',
'required'=>true,
'type'=>'textarea')
)
);return $settings;
}
I’d deeply appreciate any kind of help on this.
Best Regards!
Hi Mike,
I am sorry but the BuddyBlog does not implement image custom field type.
It integrates the Media uploader like in the backend. The Image upload field will need to be either implement as custom field type or you may provide a text box and user can copy//paste the url of the uploaded image like they do in the dashboard.Hope that helps.
You must be logged in to reply to this topic.