Page 65 of 66 FirstFirst ... 155563646566 LastLast
Results 641 to 650 of 657
  1. #641
    Join Date
    Aug 2007
    Posts
    277
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Thanks for the patience. I got confused which forum i am on due the the back and fourth integrating the two together. either way, it would not pose a big problem if that one specific flag is there or not.

    You have been a great help thruoght out the entire process while i tried to correct a problem i made long time ago and had to suffer without the edit orders functions.


  2. #642
    Join Date
    Apr 2005
    Posts
    63
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    I just installed Edit orders v3.0. but when I click at the edit-button, then I see a blank page.
    What did I do wrong?

  3. #643
    Join Date
    Apr 2005
    Posts
    63
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    In the installation was written that I had to delete the edit_orders_functions.php-file. When I put it back I did not see a blank page anymore..

  4. #644
    Join Date
    Dec 2010
    Location
    UK
    Posts
    1,771
    Plugin Contributions
    3

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Quote Originally Posted by Princess View Post
    I just installed Edit orders v3.0. but when I click at the edit-button, then I see a blank page.
    What did I do wrong?
    you will have an error log in your cache folder giving an indication of why you got a blank page.

  5. #645
    Join Date
    Apr 2005
    Posts
    63
    Plugin Contributions
    0

    Default PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    I have a problem with VAT,
    if I change something in an order with the Edit orders v3.0 module, then the subtotal shows afterwards the price ex VAT instead of including VAT. What can I do about this?

  6. #646
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Quote Originally Posted by Princess View Post
    I have a problem with VAT,
    if I change something in an order with the Edit orders v3.0 module, then the subtotal shows afterwards the price ex VAT instead of including VAT. What can I do about this?
    Using the thread tools, search this thread for the two posts which include the the subject "KNOWN ISSUES". It covers the known issues with Edit Orders and taxes..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #647
    Join Date
    Apr 2005
    Posts
    63
    Plugin Contributions
    0

    Default Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Quote Originally Posted by DivaVocals View Post
    Using the thread tools, search this thread for the two posts which include the the subject "KNOWN ISSUES". It covers the known issues with Edit Orders and taxes..
    Hi thank you for your reply If I search for known issues, then I see more then 40 posts, do you happen to know which one I have to read?

  8. #648
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Quote Originally Posted by Princess View Post
    Hi thank you for your reply If I search for known issues, then I see more then 40 posts, do you happen to know which one I have to read?
    Not off the top of my head.. I'd have to search for the thread myself.. But I included the words "known issues" in the subject to make it easy for folks to find later..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #649
    Join Date
    Apr 2005
    Posts
    63
    Plugin Contributions
    0

    Default Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Hi Diva,

    I have found the right topic: KNOWN ISSUES: Edit Orders and taxes
    I have read all the linked topics, but only one seemed the one that I was looking for.


    I followed his instructions in the edit_orders.php file,

    ................................................................................ ........
    89c89

    < $AddShippingTax = "0.0"; // e.g. shipping tax of 17.5% is "17.5"

    ---

    > $AddShippingTax = "17.5"; // e.g. shipping tax of 17.5% is "17.5"

    593c593,596

    < $RunningTaxTotalChanges += (($_POST[shippingtaxrate] / 100) * $ot_value);

    ---

    > $ot_value = $ot_value / (1 + ($_POST[shippingtaxrate]/100));

    > $RunningTotalShippingTax = (($_POST[shippingtaxrate] / 100) * $ot_value);

    > $RunningTaxTotalChanges += $RunningTotalShippingTax;

    > $RunningTaxTotalShipping = $ot_value;

    636c639

    < $ot_value = $RunningSubTotal;

    ---

    > $ot_value = (($RunningSubTotal + $RunningTax) - $RunningTotalShippingTax);

    644a648,653

    > if($ot_class == "ot_shipping")

    > {

    > $ot_value = $RunningTaxTotalShipping + $RunningTotalShippingTax;

    > // $sendtotaltoorders = 2;

    > }

    >

    647c656,659

    < $ot_value = $RunningTotal; }

    ---

    > $ot_value = $RunningTotal - $RunningTax;

    > //$ot_value = $ot_value + $RunningTotalShippingTax;

    > }

    ................................................................................ ....
    but... nothing happened after changing this file. The subtotal is still excluding vat. How can I add VAT to the subtotal just like original orders?

  10. #650
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: PROBLEM WITH VAT: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Quote Originally Posted by Princess View Post
    Hi Diva,

    I have found the right topic: KNOWN ISSUES: Edit Orders and taxes
    I have read all the linked topics, but only one seemed the one that I was looking for.


    I followed his instructions in the edit_orders.php file,

    ................................................................................ ........
    89c89

    < $AddShippingTax = "0.0"; // e.g. shipping tax of 17.5% is "17.5"

    ---

    > $AddShippingTax = "17.5"; // e.g. shipping tax of 17.5% is "17.5"

    593c593,596

    < $RunningTaxTotalChanges += (($_POST[shippingtaxrate] / 100) * $ot_value);

    ---

    > $ot_value = $ot_value / (1 + ($_POST[shippingtaxrate]/100));

    > $RunningTotalShippingTax = (($_POST[shippingtaxrate] / 100) * $ot_value);

    > $RunningTaxTotalChanges += $RunningTotalShippingTax;

    > $RunningTaxTotalShipping = $ot_value;

    636c639

    < $ot_value = $RunningSubTotal;

    ---

    > $ot_value = (($RunningSubTotal + $RunningTax) - $RunningTotalShippingTax);

    644a648,653

    > if($ot_class == "ot_shipping")

    > {

    > $ot_value = $RunningTaxTotalShipping + $RunningTotalShippingTax;

    > // $sendtotaltoorders = 2;

    > }

    >

    647c656,659

    < $ot_value = $RunningTotal; }

    ---

    > $ot_value = $RunningTotal - $RunningTax;

    > //$ot_value = $ot_value + $RunningTotalShippingTax;

    > }

    ................................................................................ ....
    but... nothing happened after changing this file. The subtotal is still excluding vat. How can I add VAT to the subtotal just like original orders?
    The known issues post was a place to document all the known issues with Edit Orders not a place to catalogue fixes for these issues. To date these are still known issues that have not been resolved.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 
Page 65 of 66 FirstFirst ... 155563646566 LastLast

Similar Threads

  1. v150 Edit Orders v4.0 Support Thread
    By DivaVocals in forum Addon Admin Tools
    Replies: 1877
    Last Post: 6 May 2025, 05:10 PM
  2. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 AM
  3. v150 Orders Status History -- Updated By [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 34
    Last Post: 29 Jul 2019, 07:05 PM
  4. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  5. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR