By Jacob on Thursday, 23 July 2015
Posted in General Issues
Replies 3
Likes 0
Views 515
Votes 0
How can I make the content field requirement optional for quick post images?
Hey Jacob,

I have tested in my locally, it should require for the content in quick image post. Check my screenshot below.

May i know when you submit with empty content, the system still allow you to submit?

If yes, can you provide us with your Joomla backend and FTP access so we can better have a look?
·
Thursday, 23 July 2015 17:50
·
0 Likes
·
0 Votes
·
0 Comments
·
I am trying to make that content field optional instead of required. I would like the user to just put a title and upload an image. Perhaps I just need to comment out some code, if you can point me in the right direction to the right files that would be great, thank you.
·
Friday, 24 July 2015 13:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Currently the content cannot be empty. If you need to hack this, you can edit the file /components/com_easyblog/views/quickpost/view.ajax.php and at line 110 locate the codes below,


$data['intro'] = '';


Replace it with,


$data['intro'] = '';
·
Friday, 24 July 2015 16:12
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post