- Posts: 1184
- Thank you received: 13
Different ship methods per vendor
12 years 1 day ago #172929
by verzevoul
Replied by verzevoul on topic Different ship methods per vendor
I know its the first time ok. I ll open a new thread,
I ll extend hikamarket. I would it but you make me do it faster.
I ll extend hikamarket. I would it but you make me do it faster.
Please Log in or Create an account to join the conversation.
12 years 1 day ago #172930
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Different ship methods per vendor
Hi,
Thanks,
Regards
Thanks,
Regards
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
12 years 1 day ago #172935
by verzevoul
Replied by verzevoul on topic Different ship methods per vendor
Payments are fine, but I shipment arent after the update.
Please Log in or Create an account to join the conversation.
12 years 1 day ago #172939
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Different ship methods per vendor
Hi,
If you updated HikaShop to his latest version, I guess that you lost the modification I made.
So please edit the file "administrator/components/com_hikashop/classes/shipping.php" and replace
By
And also
By
Regards,
If you updated HikaShop to his latest version, I guess that you lost the modification I made.
So please edit the file "administrator/components/com_hikashop/classes/shipping.php" and replace
Code:
foreach($rates as $k => $rate) {
$rem_rate = false;
Code:
foreach($rates as $i => $rate) {
$rem_rate = false;
Code:
if($rem_rate) {
$rates[$k] = null;
unset($rates[$k]);
}
Code:
if($rem_rate) {
$rates[$i] = null;
unset($rates[$i]);
}
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
12 years 1 day ago #172941
by verzevoul
Replied by verzevoul on topic Different ship methods per vendor
unset($rates[$k]);
still exist in other lines. Should I replace too?
also
foreach($rates as $k => $rate)
still exist in other lines. Should I replace too?
also
foreach($rates as $k => $rate)
Please Log in or Create an account to join the conversation.
12 years 1 day ago #172943
by verzevoul
Replied by verzevoul on topic Different ship methods per vendor
in the same file
Please Log in or Create an account to join the conversation.
12 years 1 day ago #172944
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Different ship methods per vendor
Hi,
Please just replace the blocks I wrote in my previous message.
Only where you will find the full block (all lines together) with the $rem_rate variable.
Regards,
Please just replace the blocks I wrote in my previous message.
Only where you will find the full block (all lines together) with the $rem_rate variable.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
Moderators: Obsidev
Time to create page: 0.274 seconds