• Closed
  • Lee Wilson
    Spectator
    January 20, 2016 at 2:43 am #23653

    If you’ll please take a look at http://www.marriagehelper.com/store you’ll see that the images are stretched. I’d like to fix that.

    Also, I’d like for the descriptions to show up under the books. They disappeared with the installation of this theme. Thanks!

    Denzel Chia
    Moderator
    Posts: 2656
    January 21, 2016 at 2:17 am #23677

    Hi,

    The product image are set by woocommerce plugin.

    In WordPress admin go to WooCommerce -> Settings

    Click on the Products tab at the top of the page.
    Directly below, click on the Display tab.

    Under the Product Images section, you will find the product image settings.

    Thank you

    Lee Wilson
    Spectator
    Posts: 8
    January 21, 2016 at 6:49 pm #23701

    Thank you. I don’t mean to be a pest, but even after changing those settings (and running the Regenerate Thumbnails plugin) there was no change.

    I think this has something to do with the theme because in the previous theme the images didn’t look this way. I even double checked by switching back to the old theme and the images were fine.

    Imran
    Spectator
    Posts: 402
    January 21, 2016 at 10:56 pm #23714

    Hi Lee,

    Thanks for writing in!

    images are stretched. I’d like to fix that.

    Please add the code below to get along with the actual size of the images under your Theme Options -> Custom CSS

    .woocommerce ul.products li.product a img {
    width: auto !important;
    }

    In order to achieve something like this: http://prntscr.com/9t4gdp, then please use the following code instead:

    .woocommerce ul.products li.product a img {
    width: 55% !important;
    }

    Also, I’d like for the descriptions to show up under the books.

    Upon checking, it seems you haven’t added descriptions under the titles; please confirm.

    Thanks!

    Lee Wilson
    Spectator
    Posts: 8
    January 26, 2016 at 6:52 am #23828

    Thank you. The page is coming together. But the popular articles widget is showing on the store page (http://www.marriagehelper.com/store). Is there a way to disable it just for the store? Thank you!

    Imran
    Spectator
    Posts: 402
    January 26, 2016 at 11:44 am #23835

    Hi Lee,

    Thanks for writing in!

    But the popular articles widget is showing on the store page

    Please add the following code under Appearance -> Customize -> Custom CSS:

    .woocommerce-page #secondary {
    display: none !important;
    }

    Hope this helps!

    Thanks.