Hi,
I have additional order statuses for partly completed orders where customers should be able to already download their files.
In Joomla 3 I was advised to make a core override in this file:
administrator/components/com_j2store/models/orderdownloads.php
starting line 462
public function getValidOrderStatuses()
{
//$statuses = array( 1 );
// my additional order statuses
$statuses = array( 1,7,8 );
J2Store::plugin()->event('GetValidOrderStatuses', array(&$statuses));
return $statuses;
}
I see there is a plugin trigger.
Is there a plugin for the download status? to add additional status?
It should be the same as "Confirmed".
Otherwise the customers can only download files when the status is on "confirmed".
For example we have in almost all J2Commerce shops a status that is called "completed", which means even more than "confirmed" to us.
Thanks
Sigrid