News:

Support the VirtueMart project and become a member

Main Menu

Add/edit shipment button in cart is missing

Started by toad78, November 21, 2012, 04:31:26 AM

Previous topic - Next topic

toad78

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?

bytelord

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
Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!

toad78

Hello, bytelord:

Here's a demo. 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.

bytelord

#3
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
Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!

toad78

A very fine catch and great eye, bytelord!

Excellent! I shall be more careful with my elements!

bytelord

Production: Joomla 2.5.8 | VM 2.0.14 | PHP 5.3.13
Testing     : Joomla 2.5.8 | VM 2.0.16 | PHP 5.3.8
Testing     : Joomla 2.5.8 |    VM 2.1   | PHP 5.3.8

- Don't Forget to mark thread as solved when it is solved!
- Please do not PM with support questions, use the forum!