Jump to content

SublimeVizion

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Location
    United States
  • Activity
    Freelancer

SublimeVizion's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello all! So i'm having trouble getting these two things to work and was hoping I could find some help. First off I have several carriers set up but when purchasing different items with different carrier options the shipping options upon checkout end up being blank. For example: One item only offers drop shipping and the second item offers USPS Priority. If purchased one at a time the shipping options in checkout displays and reads correctly but if both items are put into the shopping cart at the same time the shipping options become blank. *Sample pic attached. Second problem, I have a wholesale group set up that I need the tax rate to be different then the standard state tax rate. I found this discussion and have tried all the codes offered by it but none seem to work for me... https://www.prestashop.com/forums/topic/332293-v1606-different-tax-rates-for-different-user-groups-is-it-possible/ This is my Info and thank you all in advance! Website: http://www.heatpresshawaii.com/ Prestashop: v1.6.1.13
  2. Hi all. I've set up a "wholesale" customer group with its own .5% sales tax. I've noticed that sometimes paypal will not include the tax. It's funny but it's usually when there are 3 items in the shopping cart. When i have 2 or 4 items paypal will show and include the tax. It only happens with my customers under the wholesale group, paypal works fine with the regular customers tax. This is the code i used and put the Tax.php file into override/classes/tax... public static function getProductTaxRate($id_product, $id_address = null, Context $context = null) { if ($context == null) $context = Context::getContext(); $address = Address::initialize($id_address); $groups = Customer::getGroupsStatic((int)($address->id_customer)); $taxratenew = null; foreach ($groups as $g) { if ($g == 5) { $taxratenew = .5; [spam-filter] if (!$taxratenew) { $id_tax_rules = (int)Product::getIdTaxRulesGroupByIdProduct($id_product, $context); $tax_manager = TaxManagerFactory::getManager($address, $id_tax_rules); $tax_calculator = $tax_manager->getTaxCalculator(); $taxratenew = $tax_calculator->getTotalRate(); } return $taxratenew; } Anybody know why paypal sometimes excludes the tax for wholesalers??? Thanks in advance.
  3. Hi. First off thank you very much for this code. It works awesome except i noticed that sometimes paypal won't include the wholesale tax. It's funny but it's usually when i have 3 items in the shopping cart. If i have 2 or 4 items paypal will show and include the tax. Any ideas???
  4. I have it set to a fixed amount because i only want the shipping of the decal to be free. The customer still needs to pay for the shirt shipping of $4. If i set it to "free shipping" it will make the entire order free shipping right?
  5. Thanks for the replys nemo. I appreciate the help. Right now the shirts have shipping set to $4ea and the decals have shipping of $1ea. What i'm trying to do is figure out a way that when a customer buys a shirt they pay the $4 shipping for the shirt but if they add decals to their order the decals will have free shipping because they can fit into the box that the shirt is going into and since the customer is already paying the $4 shipping for the shirt they shouldn't have to pay the addition $1 shipping per decal. Setting up a Cart Rule works when it's only one decal because it will deduct the $1 when a customer buys a shirt and decal together but if the customer buys a shirt and multiple decals it still deducts just $1 but i need it to deduct the shipping for all the decals not just one. The work around i did is set up rules for one decal ($1), two decals ($2), three decals ($3), etc... But is there an easier way?
  6. Sorry here's a follow up question. So everything works fine when it's just one decal because the rule is set up to deduct the shipping amount for just one but when someone buys a shirt and multiple decals the rule still just deducts the shipping amount for one decal and not multiple. Is there an easy way to set up a rule that will give free shipping for multiple decals when a customer buys a shirt? because multiple decals can fit in the same box. or do i have to set up individual rules for 1 decal, 2 decals, 3 decals, and so on...?
  7. Hi all! Just started using Prestashop to create my clients shopping carts. I had a question about setting up specific shipping rules. For instance i have a client that sells shirts and decals. Shipping is set up for both but he wants free shipping for the decals if the customer buys a shirt because he can fit the decal in the box that the shirt will be shipped in. Is there any way to do something like this? Thank you in advance for the help.
×
×
  • Create New...