gabstero - sure. Just change the part that replaces the shipping method and add an if statement for each of your subcontractors. Example:
change line 443-448 of send_pos.php from
Code:
if ($tmpt[0][7] != 'Cheapest Shipping Method') {
$newzawartosc = str_replace("{shipping_method}",$tmpt[0][7],$newzawartosc);
} else {
$newzawartosc = str_replace("{shipping_method}",'Cheapest',$newzawartosc);
}
to
Code:
if ($subcontractor['subcontractors_id'] == 2)
$newzawartosc = str_replace("{shipping_method}","Ship This Via MyWay Express",$newzawartosc);
Add this for every subcontractor. Replace 2 with your subcontrator's id number. Replace Ship This Via My Way Express with their shipping. Of course, all items will go this way for this subcontractor using this method. You can get as fancy as you want to with your if statements to make this do what you want.
Bookmarks