Good Evening:
I try to export an HTML and locally works OK, but on a web server can not see the cover pictures because the program introduced a backslash in the path of the image.
I use this variable ITEM_PICTURE and exported the images into a subdirectory.
How I can specify that use "/" instead of "\"?
Thanks a lot
Export HTML picture without Backslash
I have this line in Template:
To open Exported HTML document:
I cant change a variable parameter in the program to specify $$ITEM_PICTURE with "/".
If I use $$ITEM_PICTUREFILENAME shows: Catalogo_Peliculas.html_pics\catalogo_peliculas_4.jpg
If Export an HTML with the pictures in same folder of HTMLs works OK.
In Catalog, I store the pictures in a:
pictures folder of catalog, and link it to catalog
(checked Creates relative link if possible)
Code: Select all
<div id="caratula">
$$ITEM_PICTURE
</div>
Code: Select all
<div id="caratula">
<img alt="poster" src="Catalogo_Peliculas.html_pics\catalogo_peliculas_4.jpg">
</div>
If I use $$ITEM_PICTUREFILENAME shows: Catalogo_Peliculas.html_pics\catalogo_peliculas_4.jpg
If Export an HTML with the pictures in same folder of HTMLs works OK.
In Catalog, I store the pictures in a:
pictures folder of catalog, and link it to catalog
(checked Creates relative link if possible)