GREAT IDEAHello,
How can I add the ePacket amount to the final price ? Something like : cost * 1.75+ePacket.
My shop is restricted to sale to only one country
Thanks
Yes, would love to see the same.Some dropship software does this. Example ShopMaster. Please update the pricing method as soon as possible.
Thank you.
Kind of a must feature, I thinkI think it is not the first time this is suggested and I agree too
Basically, isn't going to be implemented yet. Welcome to this plugin's support.No reaction from AliDropship so I think we can wait this for long ! :-(
Without shipping costs in the calculations the pricing rules are pointless unless using only items with free shipping.
I agreeWithout shipping costs in the calculations the pricing rules are pointless unless using only items with free shipping.
NexusFred mentions epacket but I think any shipping including, for instance, shipping from and to specific countries.
Really love to see this.
AgreeAnd as we all know free shipping do not exist ;*) It's just a final price who include the shipping price.
If all ePacket prices was stored in a table, it should be possible to apply the formula based on the IP geolocalization.
cost * 1.75+ePacket(for Canada).
cost * 1.75+ePacket(for Germany).
...
There is no option to add the exact epacket cost to the formula.Hello,
How can I add the ePacket amount to the final price ? Something like : cost * 1.75+ePacket.
My shop is restricted to sale to only one country
Thanks
There is no option to add the exact epacket cost to the formula.
epacket can be different for different countries, I don't know how it can be done. You should know the average price for epacket to a particular country, so just add necessary amount to all prices. And note that we do not collect and store shipping options.We realized it , but in a near future did you go to add this option ?
Like this :
When the product is imported it possible to store in a table all ePacket price.
When a customer call a product page it's possible with the geolocation +/or the browser language to detect from which country this page is called.
So :
$i = geolocation();
switch ($i) {
case "fr-FR": // France
$price = ($cost * 1.75) + $fr-FR_ePacket;
break;
case "en-US": // USA
$price = ($cost * 1.75) + $en-US_ePacket;
break;
case "ru-RU": // Russia
$price = ($cost * 1.75) + $ru-RU_ePacket;
break;
default:
$price = ($cost * 1.75) + $default_ePacket; // set by the admin in an option panel
break;
}
It's a plugin that someone else than AliDropShip could have built, but impossible to do as AliDropShip is encoded