Fatal Error with another plugin S3 Uploads – Fix provided in description
-
Hi,
I am using a plugin called s3 uploads this plugin is conflicting with that one creating fatal error. I have also contacted with that plugin author as well. Meanwhile there is a small fix if you could do that makes life easier.
lib/class-categoryfeaturedimage.php
on line 183
$featured_image_id = get_term_meta( $term_id, 'featured_image_id', true );
to
$featured_image_id = (int) get_term_meta( $term_id, 'featured_image_id', true );
A simple typecasting to fix the issue. If you maintain a git repo let me know I can make a PR if needed.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Fatal Error with another plugin S3 Uploads – Fix provided in description’ is closed to new replies.