Module class suffix (moduleclass_sfx) missing in mod_virtuemart_cart

Started by jydelort, November 01, 2011, 21:55:59 PM

Previous topic - Next topic

jydelort

Hi,

This feature is visible in the admin interface (and, of course, the mod_virtuemart_cart.xml file), but it is not handled in mod_virtuemart_cart.php and tmpl/default.php

It could either be removed or put in the default.php file with sthg like:

<div class="vmCartModule<?php echo $params->get('moduleclass_sfx'); ?>">

Cheers

Stannite

Hi all,

i am using vm 2.0.6, what i found is that there is a space in the line: <div class="vmCartModule <?php echo $params->get('moduleclass_sfx'); ?>" id="vmCartModule">

this should be: <div class="vmCartModule<?php echo $params->get('moduleclass_sfx'); ?>" id="vmCartModule">

(without the space after: "vmCartModule)

This will solve the issue.