• Resolved cortexlinux

    (@cortexlinux)


    Thank you for this awesome plugin,

    I am currently using wordpress 3.5.1, and the thumbnails are not generated in the circle. I saw a previous question to this matter that proposes to use “featured image” option after uploading the image.

    The problem is that (maybe) due to the new media uploading feature of wordpress I can’t seem to find where is the “featured image” option when adding a portfolio item.

    Any ideas ?

    http://wordpress.org/extend/plugins/nimble-portfolio/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter cortexlinux

    (@cortexlinux)

    I have found the solution. I am adding it here for anyone with the same problem:

    I am using the InfoWay theme.
    Go to Appearance –> Editor. Select from the right the infoway-functions.php. find the following code:

    // activate support for thumbnails
        // added in 2.9
        add_theme_support('menus');
        add_theme_support('post-thumbnails', array('post', 'game_listing'));
        set_post_thumbnail_size(250, 250, false);

    and add ‘portfolio’ in the array() like this:

    // activate support for thumbnails
        // added in 2.9
        add_theme_support('menus');
        add_theme_support('post-thumbnails', array('post', 'game_listing', 'portfolio'));
        set_post_thumbnail_size(250, 250, false);

    Hope it helps.

    source : http://wordpress.org/support/topic/plugin-nimble-portfolio-featured-image-box-not-showing

    carldavidturner

    (@carldavidturner)

    Hi, I am having the same problem but with the Poloray theme. I have tried looking for the code you mentioned but can’t find it in the poloray-functions.php file.

    Any help would be greatly appreciated!

    Thread Starter cortexlinux

    (@cortexlinux)

    It is right there in line 399

    // activate support for thumbnails
    if (function_exists('add_theme_support')) { // added in 2.9
        add_theme_support('menus');
        add_theme_support('post-thumbnails', array('post', 'game_listing'));

    you may missed it 😉

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Missing "Add featured image" to add tumbnails’ is closed to new replies.