Search:

Type: Posts; User: carlvt88

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    I guess the easy answer would be to modify the PAGE_HEADING in admin/includes/languages/english/stats_sales_report.php. Or, to get fancier, you could modify admin/stats_sales_report.php. Search for...
  2. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    While I was looking at it, I found another problem in the csv data - if you're looking at 'timeframe' level of detail, the taxes aren't written to the csv file. In sales_report.php line 992, add...
  3. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    @aalthouse - I can see where the tax column is messed up. In the function output_csv, if there is any tax, the variable $display_tax is set to true. Now, when the columns are printed out an extra...
  4. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Found the error - needs day and date in the mktime command:
    stats_sales_report.php line 532:

    sprintf(SEARCH_DATE_LAST_YEAR, date("Y", mktime(0,0,0,1,1,date("y")-1)));
  5. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    @renz, I'm not familiar with the store credit plugin. If you're looking to show accumulated credits on the report, that'd be a programming task. It might be tough, as the report is order oriented,...
  6. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    @southshorepizza, First, my math doesn't agree anyway - where you said $36.32, I calculated $33.32.

    I suspect there's a discrepancy in the tax - I have a non-profit so I don't deal with tax, so...
  7. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Got it - From your pm it looks like a misalignment of <?php blocks. I PM'd a reply
  8. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    I can't without knowing the exact version you're using, any mods made, etc. My own version is modified, so it might not work with the other files that make up the addon.

    If you PM me that file, I...
  9. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Try this - in admin/stats_sales_report.php, move the table that draws the header to after the table that draws the data. In abstract, this file:
    Calculates stuff
    Prints out the header
    Prints out...
  10. Replies
    82
    Views
    24,500

    Re: Time Zone Fix Support Thread

    Zencart 1.5.1 - since the plugin only goes to 1.3.9, I started to manually make the changes. I see in the query factory on 1.5.1, the following:

    if (getenv('TZ') &&...
  11. Replies
    7
    Views
    3,684

    v151 Re: Admin bouncing to login - session problem?

    Finally found it - Long story short there was an issue in my configure.php file. When I moved from a subdomain to a primary domain, my subdirectory redirection wasn't working the same (no wildcards...
  12. Replies
    7
    Views
    3,684

    v151 Re: Admin bouncing to login - session problem?

    Yes - for the most part, things work well. I can repeatedly reproduce the jump to login when I hit one of the search / submit buttons on one of the superOrders pages (example, fill in the criteria...
  13. Replies
    7
    Views
    3,684

    v151 Re: Admin bouncing to login - session problem?

    Thanks for that, I checked but that directory's empty (except for a single log a couple of months ago)

    Other thoughts?
  14. Replies
    7
    Views
    3,684

    v151 Admin bouncing to login - session problem?

    On my site under admin I can log in, but I frequently get bounced back to the login screen.

    At first I thought this was perhaps a super-orders 3 issue because it would happen when I hit the...
  15. Replies
    858
    Views
    205,714

    Re: Sales report 2.3.0

    deleted
  16. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    @bseller, @southshorepizza -

    Rather than changing the math in the salesreport, try the configuration option:

    Configuration -> My Store -> Display Prices with Tax in Admin

    I don't use taxes,...
  17. Re: template_filename not selecting in functions_email.php

    OK - Thanks!
  18. Re: template_filename not selecting in functions_email.php

    correct
  19. Re: template_filename not selecting in functions_email.php

    (sorry if this is a resend)

    In testing, I wasn't seeing the order_status email template used. Status changes always sent the default template.

    This is on my development system, Win7 / xampp...
  20. [Fixed 1.6.0] template_filename not selecting in functions_email.php

    In functions_email.php, the function zen_build_html_email_from_template() refers to a $current_page_base. In dubugging, this was always null. I changed line 427 to use $module instead of...
  21. Replies
    3
    Views
    412

    v151 Re: EC debugging - is there a problem?

    I don't have a logs directory. Is this new in 1.5.1 (my host's 'simplescripts' doesn't have that upgrade yet). Did I miss a step in installation? Is the location specified in the config files?
    ...
  22. Replies
    3
    Views
    412

    v151 EC debugging - is there a problem?

    I've had several orders successful in the past week (since opening the store). All orders use paypal express checkout. I'm using ZC 5.1.5 with SO4 (Super Orders for 1.5).

    However, I've heard some...
  23. Replies
    198
    Views
    83,168

    Sticky: Re: Discount Coupon Guide?!

    Also, I'm guessing that there's a typo in functions_general.php line 830 - should say '===' instead of '==' in the first if ($allow_for_category) statement
  24. Replies
    198
    Views
    83,168

    Sticky: Re: Discount Coupon Guide?!

    Scott, thanks for taking a look at this.

    I can fix this, that is, make it do what I want by adding a line in ot_coupon.php line 421:

    case 'F':
    $od_amount['total'] =...
  25. Replies
    198
    Views
    83,168

    Sticky: Re: Discount Coupon Guide?!

    That's what I'm trying to do, but it doesn't seem to be working. I've set the top category to deny, the allow the evening shows, except for Friday 10/19 at 8pm:
    11197
    But when I place an order, the...
  26. Replies
    198
    Views
    83,168

    Sticky: Re: Discount Coupon Guide?!

    After lots of hunting and not finding the answer, I'm hoping someone can tell me if I'm doing something wrong, or if what I want to do isn't possible.

    Situation: We give away complementary...
  27. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    I just posted a new version in the addins section. Sales Report 3.1. It's been checked out against ZenCart 1.5, but won't support older versions of zencart (the 'boxes' were removed in favor of the...
  28. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Congratulations!

    As for the paypal fees - it's not a direct configuration change, but could be done with some custom programming.

    To be done right, all payment types should be covered, not...
  29. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Sorry, I can't find that plugin. Have you tried asking the maker of that plugin for help?
  30. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Assuming this is 1.39h zencart - and are you using another plug-in to manage multiple users? Sounds like something isn't quite right to play nice with that plug in.
  31. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Yes, I've done that. Requires some more extensive changes. I never released that though.

    I could send you some files - you could 'diff' them against yours to see what I did, if it's useful.
  32. Re: How to perform bulk import of coupon codes? Getting error code 1054.

    I sent you a copy too. It requires a bit of editing and exploring in the sql tables, so it may not be for those unfamiliar with direct SQL programming, but if it helps - great!
  33. Re: How to perform bulk import of coupon codes? Getting error code 1054.

    I'll send via PM, as it's really a hack...
  34. Replies
    1,018
    Views
    148,652

    v139h Re: Super Orders v3.0 Support Thread

    @DigitalShadow - I believe the current mechanism is: when you view an order in super_orders.php, it'll create the paypal entry. The paypal entries aren't automatically generated so if you look at a...
  35. Replies
    1,018
    Views
    148,652

    v139h Re: Super Orders v3.0 Support Thread

    Ardgouge, your post looks confusing:

    'admin' shouldn't be used as a directory name to your admin area
    FILENAME_EDIT_ORDERS is a macro, not the actual filename

    actually on my system:

    ...
  36. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    I know it's a stretch, but I've also seen problems with extra files in the directories - e.g. .bak files. I usually get a blank screen and not a redirect from this though.
  37. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    We've been using this with 1.3.9h, so I don't think there's a coding issue (not that the coding couldn't be better, but...)

    Have you looked at debug log files? This describes that:...
  38. Thread: groupon api?

    by carlvt88
    Replies
    0
    Views
    658

    groupon api?

    Has anyone thought of or worked towards creating an API that would interface with groupon / dealchicken / jumponit, so that coupon codes would be validated by them instead of taking their codes and...
  39. Re: How to perform bulk import of coupon codes? Getting error code 1054.

    I ended up creating a vbs script file that would generate the necessary sql command. This was because:
    I received a list of ascii string codes from dealChicken
    I already had existing coupons in...
  40. Replies
    1,018
    Views
    148,652

    v139h Re: Super Orders v3.0 Support Thread

    Just my poor communication. I should have said " the ability to support hidden comments". I followed the same code as invoice.php. It prints out all non-hidden comments, whether there was a comment,...
  41. Replies
    1,018
    Views
    148,652

    v139h Re: Super Orders v3.0 Support Thread

    I also modified admin\includes\languages\english\super_batch_status.php as:
    ('ENTRY_NOTIFY_COMMENTS', 'Append Comments to email?');

    I've also taken a pass at #5 on the PDF packing slips, to...
  42. Replies
    1,018
    Views
    148,652

    v139h Re: Super Orders v3.0 Support Thread

    I have the batch status working. I can send you the mods

    super_batch_status.php around line 310:

    <td class="smallText" colspan="2"><?php
    echo...
  43. Replies
    1,018
    Views
    148,652

    v139h Re: Super Orders v3.0 Support Thread

    Sorry if this is already covered. It rings a bell, but I've been searching and can't seem to find it.
    The symptom: using batch status update, I change status and send an email to the customer, but...
  44. Two products for a discounted price - how to set up?

    I have 100 tickets to show A, and 100 tickets to show B. I'd like to sell either show A, show B, or a discounted double feature (both shows for $x).

    Is there a good way to set this up? Can a...
  45. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    You can list all the orders or all the products for a particular customer, but there isn't the option to repeat this for all customers (that is, for each customer, show all their orders or products)....
  46. Replies
    1
    Views
    586

    ShipTo info missing in orders

    Never mind - found that the 'product is virtual' was checked in the product.
  47. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Does nothing, like a dead button? Or do you get a blank page? Could this be an installation issue perhaps? Have you made any modifications?
    Have you tried a different browser (opera, firefox, etc.)?...
  48. Replies
    1,018
    Views
    148,652

    v139h Re: Super Orders v3.0 Support Thread

    I had a recent problem and while it was due to my own bone-headedness, I wonder if a safeguard could be put in place.

    In batch_status_update, I cleared the 'notify customer' checkbox, then clicked...
  49. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    I believe the report gets the selling prices from the orders and not the products, so this should work without mods. But, the 'discount' might not be what you're looking for.

    It would also need...
  50. Replies
    858
    Views
    205,714

    Re: Sales report 2.0

    Are you good with programming? If you can play with this, you could try replacing all instances of customers_id with customers_whole in admin/includes/classes/sales_report.php. Then put a 0 or a 1 in...
Results 1 to 50 of 180
Page 1 of 4 1 2 3 4
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR