Update Size Limit Message to provide MB & GB if size is large enough.
-
Note: Actually am WP 4.1 but that’s not available in the dropdown.
Hello,
This is an enhancement I’m hoping can be added to the plugin so it’s not overwritten in the next update.
If you want to have the size limit notice to be more granular providing sizes in MB and GB if the limit is large enough you can update line 100 in gd-bbpress-toolbox/modules/attachments/front.php to be:
if ($this->file_size >= 1000000) { echo '<div class="bbp-template-notice"><p>'.__("Maximum file size allowed is", "gd-bbpress-toolbox").' <strong>'.($this->file_size/1000000).' GB</strong>.</p></div>'; elseif ($this->file_size >= 1000) { echo '<div class="bbp-template-notice"><p>'.__("Maximum file size allowed is", "gd-bbpress-toolbox").' <strong>'.($this->file_size/1000).' MB</strong>.</p></div>'; } else { echo '<div class="bbp-template-notice"><p>'.__("Maximum file size allowed is", "gd-bbpress-toolbox").' <strong>'.$this->file_size.' KB</strong>.</p></div>'; }
So the message will now read something like:
MAXIMUM FILE SIZE ALLOWED IS 64 MB.Hope this can get into the plugin or help someone else.
Cheers
- The topic ‘Update Size Limit Message to provide MB & GB if size is large enough.’ is closed to new replies.