Error Notification & compination of 2 fields in one.
-
Hello,
Thank you for the great effort for this plugin. I installed and set up the image field by changing the limit size upload for the image:
function change_allowed_file_size( $sizes ) { $sizes = array( 'file' => 8, 'image' => 0.6, // Limit is set to 600Kb ); return $sizes; } add_filter( 'bpxcftr_allowed_sizes', 'change_allowed_file_size' );
However i have noticed that user doesn’t get an error notification from buddypress when attempt to upload bigger images. Is there any workaround to get the bp default msg, for example
Sorry, uploading the file failed.
?Another issue that i have been trying to solve is about the profile fields. I need to create a profile field that user can choose beetween date and time of the week multiply times. For example Monday 16:00-18:00 , Friday 10:00-12:00 (Lets assume the 7 days of the week and times values every 2 hours) .
Any ideas with that would be greatly appreciated.
Thank you
- The topic ‘Error Notification & compination of 2 fields in one.’ is closed to new replies.