bellini13 Posted April 30, 2014 Share Posted April 30, 2014 (edited) 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 April 30, 2014 by bellini13 (see edit history) Link to comment Share on other sites More sharing options...
w3bsolutions Posted April 30, 2014 Share Posted April 30, 2014 According to this report, this feature is not supported anymore. 1 Link to comment Share on other sites More sharing options...
bellini13 Posted April 30, 2014 Author Share Posted April 30, 2014 thanks for a reference to the bug report. interesting that they would remove support but leave the code in place. Link to comment Share on other sites More sharing options...
Petter B Posted October 2, 2014 Share Posted October 2, 2014 Can someone confirm multishipping is not supported anymore? Link to comment Share on other sites More sharing options...
Recommended Posts