News:

Support the VirtueMart project and become a member

Main Menu

BTP Pro Shipping Plugin

Started by PRO, April 02, 2012, 17:06:08 PM

Previous topic - Next topic

PRO

Quote from: techmodule on August 01, 2012, 17:10:49 PM
hello
i check the code of plugin
$values['order_weight'] = $this->getOrderWeight($cart, $method->weight_unit);
i think that line is not right

that is correct, its the same as the "weight countries" plugin

techmodule

Quote from: BanquetTables.pro on August 01, 2012, 21:15:28 PM
Quote from: techmodule on August 01, 2012, 17:10:49 PM
hello
i check the code of plugin
$values['order_weight'] = $this->getOrderWeight($cart, $method->weight_unit);
i think that line is not right

that is correct, its the same as the "weight countries" plugin
i have tryed to change the unit weight, nothing change.
I think you should test carefully

techmodule

Quote from: BanquetTables.pro on August 01, 2012, 21:15:28 PM
Quote from: techmodule on August 01, 2012, 17:10:49 PM
hello
i check the code of plugin
$values['order_weight'] = $this->getOrderWeight($cart, $method->weight_unit);
i think that line is not right

that is correct, its the same as the "weight countries" plugin
http://forum.virtuemart.net/index.php?board=127.0

don4timbs

Please I need a payment plugin that would allow me accept payment on my virtuemart 2 thru GTPay/Interswitch Webpay ( DOCUMENTATION AVAILABLE ON: https://gtpay.gtbank.com/public/? ).

Please I need someone that can help soon.

leahRae

Great Plugin! It works great!


I was wondering if there was some way to configure it or comment out a line of code to get it to just do 1 flat rate shipping cost for an entire order (like overstock dot com - everything ships for $2.95).


Thanks  :)
Dipping my toes into Virtuemart.

PRO

Quote from: leahRae on August 26, 2012, 02:13:09 AM
Great Plugin! It works great!


I was wondering if there was some way to configure it or comment out a line of code to get it to just do 1 flat rate shipping cost for an entire order (like overstock dot com - everything ships for $2.95).


Thanks  :)

Thats the "else cost"

You might have to fill in the other rates first though. Just make them very high in weight or something


muddauber

Using Joomla 2.5.6 and VM 2.0.10
I installed the Pro Shipping Plugin and was able to set some parameters
on various levels of shipping rates by weight.

Now when I go back to review the settings, I no longer have access to
the method parameters, rather I see the same settings as the
standard VM shipping configuration.

I have tried to delete and reinstall Pro Shipping Plugin with
negative results. Any suggests to getting the plugin to work?

PRO

Quote from: muddauber on September 15, 2012, 05:05:58 AM
Using Joomla 2.5.6 and VM 2.0.10
I installed the Pro Shipping Plugin and was able to set some parameters
on various levels of shipping rates by weight.

Now when I go back to review the settings, I no longer have access to
the method parameters, rather I see the same settings as the
standard VM shipping configuration.

I have tried to delete and reinstall Pro Shipping Plugin with
negative results. Any suggests to getting the plugin to work?

are you using the standard? if not, try disabling the plugin

muddauber

Thanks, I disabled the standard and it still did not change, then
I went into the Extensions Manager (not plugin manger) and
disabled it there and it fixed it. I'm back to the BTP Pro Shipping Plugin
options.

Your plugin offers the best options for me, but I need a
fixed rate for a range of weights, not a multiple We have
this shipping rate:

  up to 55  - $7
  up to 110 - $14
  up to 22  - $28
  up to 500 - $55

So from 1 lb to 55 it would be $7

I need a fixed shipping rate for a range of weights.

Is there a way to modify  the BTP Pro Shipping Plugin
to provide that?

Also, can you give any guidance on how to modify an older VM 1 plugin
to work with VM2? There are several out there that I used but now
they won't load, and there has been no other updates.

thank you for your work and providing the BTP Pro Shipping Plugin.

muddauber

#69
I see the  BTP plugin line item title, but see no shipping fees.

I only have the BTP Pluging showing up in shipping section and it
now does allow to enter rate, min weight etc.

Could you tell me where the BTP and Standard plugin is located on
the site directory and I'll see if I can remove it from there.

PRO

Quote from: muddauber on September 17, 2012, 04:27:29 AM
I see the  BTP plugin line item title, but see no shipping fees.

I only have the BTP Pluging showing up in shipping section and it
now does allow to enter rate, min weight etc.

Could you tell me where the BTP and Standard plugin is located on
the site directory and I'll see if I can remove it from there.



plugins/vmshipment

computerguy

#71
I need one simple addition - even if just adding a bit of code to the script -
I want a base shipping fee added to each order - for example after your script calculates shipping - I want to add $11.00 to the total.
If you can just point me to what code need's to be added in the script...

Or if someone decides to modify the shipping module:
More specifically, my need is to calculate shipping based on a flat fee plus a dollar amount per item.
Example: Flat fee $11.00 plus $1.00 for each item. 10 items ordered would equal $21 shipping.



Thanks

PRO

Quote from: computerguy on November 28, 2012, 03:37:13 AM
I need one simple addition - even if just adding a bit of code to the script -
I want a base shipping fee added to each order - for example after your script calculates shipping - I want to add $11.00 to the total.
If you can just point me to what code need's to be added in the script...

Or if someone decides to modify the shipping module:
More specifically, my need is to calculate shipping based on a flat fee plus a dollar amount per item.
Example: Flat fee $11.00 plus $1.00 for each item. 10 items ordered would equal $21 shipping.



Thanks

I might can add this later

computerguy

In the mean-while, I've got it to work as I need by changing line #113 in pro_ship.php from:

elseif ($nbproducts >=$method->nbproducts_quantity && $orderWeight >=1){return $method->nbproducts_fee * $nbproducts;}

to

elseif ($nbproducts >=$method->nbproducts_quantity && $orderWeight >=1){return $method->nbproducts_fee * $nbproducts + 11.0 ;}

where the last part of the code   + 11.0   is the amount ($11.00) that I want added to each order. So total shipping is $11.00 plus $1 for each item in the cart.

In the Shipment Method Configuration, I left all fields blank except under "Quantity Based" where I put quantity over to 1 and Fee to 1
Of course, all products have to have a weight (don't leave a blank weight) or calculations don't work.

Thanks.

PRO

updated:
For quantity based.
Now you can set 1 price for the 1st product.
THEN: a separate price foreach additional product