How to access Magento order ‘visible_on_front’ property?
I’ve tried the following bits:
$order = $this->getOrder();
$order->setStatus('processing');
$order->setData('visible_on_front', 1);
or
$history = $this->getOrder()->addStatusHistoryComment('msg');
$history->setStatus('processing');
$history->setData('state', 'visible');
or
$history = $this->getOrder()->addStatusHistoryComment('msg');
$history->setStatus('processing');
$history->setData('visible_on_front', 1);
Thanks in advance.
try this and see if it has changed after you changed the data