These are not easy to hide. The attribute in cart is very hard, to other are more easy.
You can hide the comment in the cart in the file administrator\components\com_virtueupload\classes\output.class.php line 157:
| Code: |
if ( $vu_config['ShowComment'] == 1 ) {
$html .= '<br/>'.JText::_('VULANG_COMMENT').': '.nl2br($upload->comment);
}
|
change that to:
| Code: |
if ( $vu_config['ShowComment'] == 1 && $upload->comment != '-') {
$html .= '<br/>'.JText::_('VULANG_COMMENT').': '.nl2br($upload->comment);
}
|
In the uploadinfo simular:
File modules\mod_virtueupload\tmpl\rounded.php line 34:
| Code: |
if ($vu_config['ShowComment'] == 1) {
|
Make it:
| Code: |
if ($vu_config['ShowComment'] == 1 && $upload->comment != '-') {
|
Untested, so please let me know if it worked