Support » Plugin: Simple Image Sizes » Messes up dashboard woocommerce product page thumbnail column

  • Resolved ModManMatt

    (@camaro350)


    plugin works great for most part but i have small issue.. for some reason this messes up my dashboard woocommerce product page thumbnail column…
    the thumbnail column of products page makes header image icon dissapear then the thumbnail image area gets oversized and moves every other column over 1 ill include a screen shot to see what i mean its odd and does it to a all sites of mine …

    screenshot
    http://calicotek.com/wp-content/uploads/2014/06/error-screenshot1.png

Viewing 4 replies - 1 through 4 (of 4 total)
  • Same thing here.

    It’s because of this stupid line of CSS in the Simple Image Sizes stylesheet:

    #regenerate_message, #time, #thumb {
    	display: none;
    }

    It’s so generic and so unspecific, that it fits almost everywhere; #thumb does in this case. All this wouldn’t happen if the author followed best practice and only included his stylsheet on pages where it is needed – not polluting everyones admin interface.

    For now as a workaround, you could:

    1) Hide the picuture column on the products page by using the settings under Screen Options
    2) Comment out this line in Simple Images Sizes stylesheet
    3) With something like this add the following line of CSS to your WordPress, that should catch the tables in the admin area:

    /* Fix display bug caused by simple image sizes */
    table.posts th#thumb { display: table-cell !important; }

    Hope it helps for now
    and hope there will be an update soon!

    Thank you! I also vote for this update to Simple Image Sizes! I have the same problem showing up in WooCommerce making the products really unreadable.

    It’s fixed in the Simple Image Sizes plugin update! Thank you!!

    Plugin Author Nicolas Juen

    (@rahe)

    You’re welcome 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Messes up dashboard woocommerce product page thumbnail column’ is closed to new replies.