VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: jydelort on November 01, 2011, 21:55:59 PM

Title: Module class suffix (moduleclass_sfx) missing in mod_virtuemart_cart
Post by: jydelort on November 01, 2011, 21:55:59 PM
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
Title: Re: Module class suffix (moduleclass_sfx) missing in mod_virtuemart_cart
Post by: Stannite on May 18, 2012, 18:04:42 PM
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.