Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author ndre

    (@ndre)

    This is a theme integration problem. We will add an adjustment to avoid it in next version.

    In the meantime you can use the following CSS rule to fix it:

    .al_product div.entry-thumbnail.product-image img, #content .al_product div.entry-thumbnail.product-image img {
    height: auto;
    }
    Thread Starter mangomonkey

    (@mangomonkey)

    Perfect, that was great, thanks so much. Just another quick question, is there any way for me to add +VAT after the price whilst keeping the “£” before it? Thanks so much.

    Plugin Author ndre

    (@ndre)

    You’re Welcome!

    The only way to achieve this is to add the following code to your theme functions.php:

    add_filter('price_format', 'my_price_format');
    /**
    * Custom Price Format for EPC
    */
    function my_price_format($price) {
     return $price.' +VAT';
    }

    Next time please post new question in new topic so the other users can easily find it 🙂

    Thread Starter mangomonkey

    (@mangomonkey)

    Thanks, that works perfectly. Thanks again for all your help.

    Thread Starter mangomonkey

    (@mangomonkey)

    Hi there, sorry to bother you again but is there any way to set the prices to show only on the product information page and not on the product list pages?

    Thread Starter mangomonkey

    (@mangomonkey)

    Sorry please ignore the last comment, I figured it out 🙂

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Product image stretching.’ is closed to new replies.