Draško
Draško

Reputation: 2221

How to get small popup with information when moving mouse over product picture in virtuemart?

I have a list of product in virtuemart as presented in screenshot

Screenshot

My client wants to have the following effect: while doing hovering over picture with mouse, he wants popup with full description of product.

How can I do that? Thanks in advance.

Upvotes: 0

Views: 1118

Answers (1)

Mike
Mike

Reputation: 5818

You can include some javascript

JHTML::script( 'mytitle.js', 'path/to/my/js' );

in the flypage.php

components/com_virtuemart/themes/default/templates/product_details/flypage.tpl.php

and replace

<h1><?php echo $product_name ?> <?php echo $edit_link ?></h1> 

with something like

<h1 title="Produkt Title::Product Description"><?php echo $product_name ?> <?php echo $edit_link ?></h1> 

Upvotes: 1

Related Questions