• Resolved ilyapokrov

    (@ilyapokrov)


    I want to clarify about the compatibility of the Vantage theme and the Woocommerce plugin. If you install the StoreFront theme, several product photos are displayed on the category page. I didn’t find this setting in the Vantage theme. I had to do it myself through functions.php:

    function woocommerce_feature_gallery() {
    global $product;
    $attachment_ids = $product->get_gallery_attachment_ids();
    if (!empty($attachment_ids)) {  
    echo '<img class="dop-image" src="'.wp_get_attachment_image_src( $attachment_ids[0], 'shop_catalog' )[0].'">';
    }
    }

    But I didn’t do it correctly and got some problems.

    Based on this, I want to ask You a question: Is there such a setting (Multiple images with the ability to flip) in the Vantage theme? If not, do you plan to do it in the update?

    Thank you for the beautiful theme!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Ilya

    Thanks for reaching out.

    Vantage is using the standard WooCommerce functionality. Themes can add additional functionality like quick-view, a mini-cart, and many other features. At the moment, there isn’t a plan to add this as a feature.

    What problems are you having?

    Thread Starter ilyapokrov

    (@ilyapokrov)

    @misplon,
    Don’t get me wrong. I have no complaints against you)) On the contrary, I want to clarify how to implement such functionality.

    Example: https://www.avito.ru/moskva/transport?cd=1

    When you hover over the product card, it displays not just one image, but several images in the form of a simple slider.
    And my clumsy code doesn’t load the alt and title attributes to images. In addition, you need to connect the slider, etc. All this will have a bad effect on the site’s loading speed.

    If your topic had such an opportunity , it would be priceless!

    Thanks for your support and feedback, I’ll pass this idea on to the team.

    A plugin would be an ideal solution for the moment. I’ve looked around a bit but haven’t been able to find one so far.

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

The topic ‘Woocommerce + Vantage’ is closed to new replies.