News:

Looking for documentation? Take a look on our wiki

Main Menu

Two issues with products : Menu and Pictures

Started by Benjamin, October 16, 2013, 17:29:47 PM

Previous topic - Next topic

Benjamin

Hello everyone,

I have two issues with VM, and I hope that you will be able to help me.

I have a local website, and everything is OK.

Now, I try to install everything on the real website, and here are the two issues :

- I want to put a link in my main menu to show all categories. I have this kind of link in my local website, but it doesn't appear in the final website. (there is "Show A categorie" but not "Show categorIES")

- I put several pictures for a product. In the local website, I've got this :



I put for this product 4 pictures. The first one (which is in big in the product description) is not the same that the second one (the first in the three more pictures available). So, in backend, I upload 4 pictures, and in the description, I have 1 + 3 = 4. That's correct. Moreover, I can change pictures directly with the arrow when I see them in big size.

That is what I would like to have in my final website, but here is what I have :



I did the same thing in backend, and I don't have the same result.
Here I have in the description 1 + 4 = 5 pictures instead of 4, and there isn't any arrow to change big size pictures...
In this website, to see little picture in big size, I have to click on it, then it appears next to product details, and I have to click on this "medium" size picture to get the big one.

Do you know what can I do to solve those two issues?

I'm on PHP Version 5.3.2-1ubuntu4.21, Joomla 2.5.14, and VM 2.0.24
My website : http://www.theobald-trucks.com/index.php/vehicules-occasion/tracteurs/volvofh480-tvi1000-detail

And please excuse-me for my English, it' not my native language.

Thank you!

Benjamin

Hello,

May you need more information to help me?

Benjamin

I'm looking at the code of each page, and there is a difference between the two.

Local :
<div class="additional-images">
            <div class="floatleft">
            <a  rel='vm-additional-images' href="http://localhost/theobaldtrucks/images/stories/virtuemart/product/739bvb57---av-d.jpg"><img src="/theobaldtrucks/images/stories/virtuemart/product/739bvb57---av-d.jpg" alt=""  /></a>            </div>
            <div class="floatleft">
            <a  rel='vm-additional-images' href="http://localhost/theobaldtrucks/images/stories/virtuemart/product/739bvb57---ar-d.jpg"><img src="/theobaldtrucks/images/stories/virtuemart/product/739bvb57---ar-d.jpg" alt=""  /></a>            </div>
            <div class="floatleft">
            <a  rel='vm-additional-images' href="http://localhost/theobaldtrucks/images/stories/virtuemart/product/739bvb57---av-d2.jpg"><img src="/theobaldtrucks/images/stories/virtuemart/product/739bvb57---av-d2.jpg" alt=""  /></a>            </div>
        <div class="clear"></div>
    </div>


Web :
<div class="additional-images">
            <div class="floatleft">
            <img src="/images/stories/virtuemart/product/739bvb57---av-d(dev).jpg" alt="" class="product-image" style="cursor: pointer" />            </div>
            <div class="floatleft">
            <img src="/images/stories/virtuemart/product/739bvb57---av-d.jpg" alt="" class="product-image" style="cursor: pointer" />            </div>
            <div class="floatleft">
            <img src="/images/stories/virtuemart/product/739bvb57---ar-d.jpg" alt="" class="product-image" style="cursor: pointer" />            </div>
            <div class="floatleft">
            <img src="/images/stories/virtuemart/product/739bvb57---av-d2.jpg" alt="" class="product-image" style="cursor: pointer" />            </div>
        <div class="clear"></div>
    </div>