Out of stock bug

Hi, there is a small bug .. I think or adjustment to make
When a product is out of stock The add to favorites, email buttons are going over the availability section.

here is the link : http://jolipanda.com/cras-ut-lorem-u…t-volutpa.html

Let me know what you think.

Thank you.

10 answers

Profile photo of Qiang Wu 0.00 $tone September 15, 2014
Public

Everybody in this forum has the problem, can you share the solution? File and line number and what to fix? It will save a lot times from your and others.

Fixed the problem by adjusting add-to-box in styles.css height to 123px.

#9
Profile photo of Ziven Staff 100280.00 $tone September 16, 2014
Public

on the file "app\design\frontend\default\jm_kidslandtemplate\ catalog\product\view\addto.phtml" line 31

Code:

<ul class="add-to-links">

change to

<ul class="add-to-links <?php if (!$_product->isAvailable()): ?>out-of-stock<?php endif; ?>">

and in the end of file "style.css" add new rule,

Code:

.product-view .product-shop .add-to-links.out-of-stock {
position: static;
margin: 20px 0 20px -5px;
}
#10

Please login or Register to Submit Answer

Written By

Comments