opencredit / badgeos

BadgeOS is a plugin to WordPress that allows you to easily create badges and set up the steps and achievements users take to earn them. Badges are Mozilla OBI compatible and sharable via Credly.
http://www.badgeos.org
GNU Affero General Public License v3.0
93 stars 64 forks source link

No option to upload "Achievement Image" #528

Open Leonbp10 opened 8 years ago

Leonbp10 commented 8 years ago

I cannot upload my own badges. Please see attached screenshot. screen shot 2016-05-02 at 2 43 49 pm

tw2113 commented 8 years ago

Can you see if the featured image metabox shows up with all plugins except BadgeOS deactivated? Possible that there's a conflict going on somewhere.

Leonbp10 commented 8 years ago

I tried that with no success. I finally found a post from the theme author (LMS | Responsive Learning Management System WordPress Theme). Here is how I had to fix it:

For that go to your site folder in server / wp-content / themes / lms / framework / open theme_features.php file and locate the below code

add_theme_support(‘post-thumbnails’, array( ‘post’, ‘page’, ‘product’, ‘tribe_events’, ‘dt_teachers’, ‘course’, ‘lesson’, ‘dt_courses’ ));

and replace it with

add_theme_support(‘post-thumbnails’, array( ‘post’, ‘page’, ‘product’, ‘tribe_events’, ‘dt_teachers’, ‘course’, ‘lesson’, ‘dt_courses’, ‘level’ ));

on line number 57 approximately

tw2113 commented 8 years ago

Odd that that would be nulling out our thumbnail support, but if it works, it works I suppose.