Jump to content

Multi-Shipping


Recommended Posts

Is multi-shipping disabled in PS 1.6 intentionally?  The option does not appear in the preferences -> order menu, and looking at the controller it is obvious why it does not show up

 

The menu option is there

'PS_ALLOW_MULTISHIPPING' => array(
    'title' => $this->l('Allow multishipping'),
    'hint' => $this->l('Allow the customer to ship orders to multiple addresses. This option will convert the customer\'s cart into one or more orders.'),
    'validation' => 'isBool',
    'cast' => 'intval',
    'type' => 'bool'
),

But then at the bottom of the __construct function, it is removed

if (!Configuration::get('PS_ALLOW_MULTISHIPPING'))
    unset($this->fields_options['general']['fields']['PS_ALLOW_MULTISHIPPING']);

So unless PS_ALLOW_MULTISHIPPING is already active in the database, it will be removed from the menu.  There is no way to actually enable it without manually updating the database.

 

Then further more, if you do manually enable it in the database, it doesn't even have an effect during checkout. 

 

So I am wondering if this functionality has been disabled, removed or just not implemented in PS v1.6?

Edited by bellini13 (see edit history)
Link to comment
Share on other sites

  • 5 months later...
×
×
  • Create New...