Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 31
  1. #21
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,696
    Plugin Contributions
    9

    Default Re: TaxJar Issue - Composer Related?



    @chuckPhillips, i would suggest updating the plugin if you are still maintaining it. i believe those countable warnings in php 7.x turn into fatal errors in php 8.x.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  2. #22
    Join Date
    Jun 2015
    Posts
    36
    Plugin Contributions
    0

    Default Re: TaxJar Issue - Composer Related?

    I'm seeing transaction in taxjar interface, so I guess everything going ok.

    Didn't realize transactions wouldn't populate there until marked as shipped.

    No php warnings since changes.


    ATM the only thing I'm not understanding is how to remove transactions from taxjar (test transactions).

    I marked transaction as pending in zen.

    Then I clicked the Delete From Taxjar button, which sends me to the admin home screen.

    Transaction still in taxjar. Based on what I'm reading on their site, I may have to submit a request to have those records removed.

    This plugin is nice.

  3. #23
    Join Date
    Sep 2012
    Location
    Upstate South Carolina
    Posts
    96
    Plugin Contributions
    2

    Default Re: TaxJar Issue - Composer Related?

    The orders are submitted to TaxJar at completion of checkout. They take a while to appear in the Taxjar interface. Its independent of order status.

    You can remove a transaction from the TaxJar admin. No need for support. I don't remember how to do it, since I don't manage that.

    If the "delete from taxjar' button in the admin is taking you back to the home page, then its broken, it should re-load the same page. Double check the install, check error logs.

  4. #24
    Join Date
    Sep 2012
    Location
    Upstate South Carolina
    Posts
    96
    Plugin Contributions
    2

    Default Re: TaxJar Issue - Composer Related?

    Update, looks like Taxjar has changed this a bit, you do need to contact them to remove a transaction if the transaction was produced by the API. API transactions can only be removed by the API.

    So, best to figure out why your delete button isn't working.

  5. #25
    Join Date
    Jun 2015
    Posts
    36
    Plugin Contributions
    0

    Default Re: TaxJar Issue - Composer Related?

    Double checked the single taxjar file that is located in the admin directory.

    Just copied the link address on the delete from taxjar button and compared it to current page url:

    /admin/index.php?page=1&oID=99999&action=edit&tj=2 (taxjar)

    /admin/index.php?/index.php?cmd=orders&status=1&page=1&oID=99999&action=edit (current)

    If I remove the cmd parameter from the current url, I also redirect to the admin home page.

  6. #26
    Join Date
    Jun 2015
    Posts
    36
    Plugin Contributions
    0

    Default Re: TaxJar Issue - Composer Related?

    I could be wrong (I probably am)

    Don't need it fixed/resolved.

    I can delete direct from taxjar.

    Not trying to make work for u.

    Plugin looks a lot more reasonable than the taxcloud plugin I'm using on another site

  7. #27
    Join Date
    Jun 2015
    Posts
    36
    Plugin Contributions
    0

    Default Re: TaxJar Issue - Composer Related?

    think I figured out what was happening re: optional taxjar buttons to add/delete taxjar

    I changed 2 lines of code from the readme.txt file (OPTIONAL - Admin section) - that add the buttons to the admin/orders.php file

    Changed:

    <a type="submit" class="btn btn-sm bg-success" href="<?php echo $_SERVER['PHP_SELF']."?page=1&oID=".$oID."&action=edit&tj=1";?>">Add to Taxjar</a>

    <a type="submit" class="btn btn-sm bg-danger" href="<?php echo $_SERVER['PHP_SELF']."?page=1&oID=".$oID."&action=edit&tj=2";?>">Delete from TaxJar</a>

    TO:

    <a type="submit" class="btn btn-sm bg-success" href="<?php echo $_SERVER['PHP_SELF']."?cmd=orders&page=1&oID=".$oID."&action=edit&tj=1";?>">Add to Taxjar</a>

    <a type="submit" class="btn btn-sm bg-danger" href="<?php echo $_SERVER['PHP_SELF']."?cmd=orders&page=1&oID=".$oID."&action=edit&tj=2";?>">Delete from TaxJar</a>

    I just hard coded what I believe if known as the basename??? into the url so that it would return to the same page.

    I tested the Delete button only. Got the message indicating transaction was removed under the buttons and verified records was deleted in taxjar.
    Last edited by fravac; 13 Dec 2022 at 10:01 PM.

  8. #28
    Join Date
    Sep 2012
    Location
    Upstate South Carolina
    Posts
    96
    Plugin Contributions
    2

    Default Re: TaxJar Issue - Composer Related?

    I have submitted an updated plugin to address the above issues. Also added to the readme.txt for more clarity and details, particularly for using Composer.

  9. #29
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,712
    Plugin Contributions
    123

    Default Re: TaxJar Issue - Composer Related?

    The addition of

    define('MODULE_ORDER_TOTAL_TAXJAR_SORT_ORDER', 'TaxJar Sort Order');

    in the file
    ./includes/languages/english/modules/order_total/ot_taxjar.php:

    looks wrong to me. It's not a text string to be used as a label, it's a database config parameter (a number like 400), which is created when you install the module.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #30
    Join Date
    Sep 2012
    Location
    Upstate South Carolina
    Posts
    96
    Plugin Contributions
    2

    Default Re: TaxJar Issue - Composer Related?

    Thanks, please comment that out or I can send an update.

 

 
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. v157 Taxjar for ZC 1.57c - works
    By travbacon in forum Built-in Shipping and Payment Modules
    Replies: 17
    Last Post: 1 Oct 2021, 05:00 PM
  2. v156 TaxCloud, TaxJar installations - successes, comments?
    By RacingAddiction in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 8
    Last Post: 18 Aug 2019, 10:05 PM
  3. Urgent gift certificate issue, not ZenCart related
    By edadk in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 16
    Last Post: 28 Sep 2011, 10:34 PM
  4. Admin Payment Modules Issue Language Related
    By naturalintegrators in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 3 Mar 2010, 10:59 AM
  5. VERY weird timing related issue
    By RGME in forum General Questions
    Replies: 2
    Last Post: 30 Nov 2009, 08:41 PM

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