Jump to content

[SOLVED] Images error


Recommended Posts

I allready did that, but it still isn't working. The strange thing is that i moved the shop on a localhost, using xampp, and the images still don't show up.


try this one solution for you sir
Please disable first your Friendly URL feature on Back Office > Preferences
Friendly URL: set to No

To make sure you have mod_rewrite is working fine or something wrong on your .htaccess files
If that working please check you .htaccess files on root folder / :)

because i'm try to add cart this product http://www.dnl.ro/proiecte7/teocta/product.php?id_product=11
http://www.dnl.ro/proiecte7/teocta/11-53-large/bc-rich-bich-special-edition-archtop.jpg
http://www.dnl.ro/proiecte7/teocta/11-53-small/bc-rich-bich-special-edition-archtop.jpg
http://www.dnl.ro/proiecte7/teocta/img/p/11-53-small.jpg

you can see that and you will know what wrong...
maybe just 2 you must check .htaccess or your template something wrong.
Link to comment
Share on other sites

For some reason, your cart is referencing a non-existent mini size. You should be using the small size instead. Change line 3 of themes/teocta/shopping-cart-product-line.tpl from:

<a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'mini')}" alt="{$product.name|escape:'htmlall':'UTF-8'}" />



to:

<a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'small')}" alt="{$product.name|escape:'htmlall':'UTF-8'}" />



You may be interested to know that there is a Javascript error on your site:

Message: 'cssdropdown' is undefined
Line: 220
Char: 1
Code: 0
URI: http://www.dnl.ro/proiecte7/teocta/

Link to comment
Share on other sites

×
×
  • Create New...