Not, to it my me does not work.
Is it necessary setup something?
administrator/components/com_virtuemart/html/order.order_list.php
and replace
if (!$display_print_label) {
$listObj->addCell("");
} else {
with
if (!$display_print_label) {
require("order.order_label_generic_print_icon.php");
// $listObj->addCell("");
} else {
3. fix frontend administration
--------------------------------------
Edit
components/com_virtuemart/virtuemart.php
and replace
replace
echo PSHOP_OFFLINE_MESSAGE;
} else {
with
echo PSHOP_OFFLINE_MESSAGE;
} elseif (vmRequest::getVar('format', 'html' )=='raw') {
require('order.order_label_generic_print_icon_fe.php');
} else {