GeoDirectory SupportImage Size (MB) Limit? – GeoDirectory Support https://wpgeodirectory.com/support/topic/image-size-mb-limit/feed Sun, 08 Feb 2026 17:30:36 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/image-size-mb-limit/#post-9941 <![CDATA[Image Size (MB) Limit?]]> https://wpgeodirectory.com/support/topic/image-size-mb-limit/#post-9941 Fri, 25 Jul 2014 13:52:57 +0000 identity Is there a setting to adjust the file size limit for uploads?

I went to add a test image and got the message:

File size error. : You tried to upload a image over 2mb

My server is configured for much larger uploads and I was able to add the same image in a blog post without any issues, so I’m assuming there is a limit set somewhere within GD.

Where can this be changed?

If it isn’t a setting in the admin UI, could it be added?

Cheers,
Brian

]]>
https://wpgeodirectory.com/support/topic/image-size-mb-limit/#post-9949 <![CDATA[Reply To: Image Size (MB) Limit?]]> https://wpgeodirectory.com/support/topic/image-size-mb-limit/#post-9949 Fri, 25 Jul 2014 14:08:10 +0000 Vikas Hi,

I have added a hook on that limit now, so u can easily add a filter in ur child theme functions.php, it will be available in next release.
After next release, plz add this code in your theme’s functions.php to change upload limit.



add_filter('geodir_default_image_upload_size_limit', 'geodir_change_default_image_upload_size_limit') ;
function geodir_change_default_image_upload_size_limit($limit)
{
   $limit = '10mb'; // change it as per ur need.
   return $limit;
}

Thanks

]]>
https://wpgeodirectory.com/support/topic/image-size-mb-limit/#post-9957 <![CDATA[Reply To: Image Size (MB) Limit?]]> https://wpgeodirectory.com/support/topic/image-size-mb-limit/#post-9957 Fri, 25 Jul 2014 15:02:42 +0000 identity Thanks. I think it would be better if this could be added to the UI, like under the General tab, but otherwise at least this helps.

Cheers,
Brian

]]>