In the cart, there is a reference to Add/edit shipment address button below, but there is no button on the cart page.
Is this. Bug? Or did I miss something in configuration?
Hello,
Do you use template overrides? Did you try without template overrides and with joomla 2.5 beez20 as default template?
Any live url?
Regards
Hello, bytelord:
Here's a demo (http://rewebbed.net/demo/vps/shopping-cart.html). I've tried to be very careful with the template overrides and I've never seen a button for adding/editing ship to when I first began this project.
Thank you.
Hello,
Yes because this is caused by your joomla template as i told (try to use beez20).
So the problem is inside main.css around line 311 you have display:none attribute for the following
#container .display-number, .browse-view h1, a.product-details, a.details, div.details {
display: none;
}
the a.product-details, a.details, div.details need to be showed because some buttons and links are created there, if you want to hide pagination, product details button use
Those button is hided by a.details ... is better to use more specific attributes, like .browse-view a.details { display:none;}
You wasn't as careful as you think :) heh
Use firebug to examine your site code and css styling: http://forum.virtuemart.net/index.php?topic=102850.0
Regards
A very fine catch and great eye, bytelord!
Excellent! I shall be more careful with my elements!
;)