Page 175 of 202 FirstFirst ... 75125165173174175176177185 ... LastLast
Results 1,741 to 1,750 of 2020
  1. #1741
    Join Date
    Dec 2009
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Thank you Divavocals.
    The problem happens after I installed Super Order.
    I like super order very much, and therefore I am shutting down Paypal Payment Pro until I can find some way to fix it.

  2. #1742
    Join Date
    Apr 2008
    Posts
    351
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Here is what is at line 80 of the ot_group_pricing file

    /**
    * when calculating the ratio add some insignificant values to stop divide by zero errors
    */

    The ratio is calculated at line 79. Are you using Group_pricing at all?

    Your other error in super_orders at line 557 has to do with Purchase Order payments, so I don't know what this would have to do with PayPal.

    How much does it cost to have a PayPal account where you can accept payments anyway?

  3. #1743
    Join Date
    Dec 2009
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Thank you, JTHeed. I turned off the Group_pricing after I found the problem.
    Paypal Payment Pro price is on their website.

  4. #1744
    Join Date
    Dec 2009
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    The purchase order function has never been activated.

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

    Default Re: Super Orders 2.0

    Quote Originally Posted by JTheed View Post
    How much does it cost to have a PayPal account where you can accept payments anyway?
    Setting up a PayPal account to use with PayPal IPN and PayPal Express costs nothing.. PayPal Payments Pro is PayPal merchant account service.. The fees for PayPal Payments Pro are posted on PayPal's site..
    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.

  6. #1746
    Join Date
    Nov 2008
    Posts
    53
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by jamie2k View Post
    Hi Folks,

    I have this mod installed on my multi site, works fine :)

    Just wanted to know if there is a way of adding a third option when closing order.

    Scenario:-

    I have an order that is not processed by my own order processing department...

    They would like to have an option which was clickable like COMPLETED or CANCELLED - but was OUTSOURCED

    This would need another coloured button and the functionality to make this button update the status of the order,

    Please help :)

    Jamie
    Dear Jamie,

    Do you mean you have this mod working with the multi site module ? If so, how did you get the right store info on the status update emails ?

    Thanks,

  7. #1747
    Join Date
    Sep 2007
    Location
    Herne Bay, Kent, England
    Posts
    182
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by topcat24 View Post
    You can look at the Paypal automatically added to Super Orders from the post http://www.zen-cart.com/forum/showth...532#post611532
    I have added the code and it has been working on our site for the last year
    I've finally been able to get round to having a look at the above link kindly provided by topcat. The code devised by carlvt88 looks pretty straightforward except that I can't work out were in order.php I put

    Code:
          if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number']) || $this->info['payment_module_code'] == 'paypalwpp') {
    Can anybody help please.

  8. #1748
    Join Date
    Apr 2008
    Posts
    351
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quote Originally Posted by philip56 View Post
    I've finally been able to get round to having a look at the above link kindly provided by topcat. The code devised by carlvt88 looks pretty straightforward except that I can't work out were in order.php I put

    Code:
          if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number']) || $this->info['payment_module_code'] == 'paypalwpp') {
    Can anybody help please.
    Depending on the version, around line 634 and your only adding what is in red, so just look for the part NOT in red.

    In my release that I have (48a) it is just after this

    $insert_id = $db->Insert_ID();
    // BEGIN Super Orders edit
    // add CC data as a line item to SO payment system
    if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {

    Keep in mind, that post is almost 2 years old too!

  9. #1749
    Join Date
    Sep 2007
    Location
    Herne Bay, Kent, England
    Posts
    182
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by JTheed View Post
    Depending on the version, around line 634 and your only adding what is in red, so just look for the part NOT in red.

    In my release that I have (48a) it is just after this

    $insert_id = $db->Insert_ID();
    // BEGIN Super Orders edit
    // add CC data as a line item to SO payment system
    if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {

    Keep in mind, that post is almost 2 years old too!
    Many thanks for that JTheed. My copy of order.php (from the original Super Order 2 if I remember correctly) does not have that

    Code:
     // BEGIN Super Orders edit
            // add CC data as a line item to SO payment system
            if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {
              require(DIR_WS_CLASSES . 'super_order.php');
              $so = new super_order($insert_id);
              $so->cc_line_item();
            }
            // END Super Orders edit
    section in it. As far as I can see, that first made it's appearance in DivaVocals version.

    Could anyone confirm that for me?

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

    Default Re: Super Orders 2.0

    You could take a look at the change log for version Rev48 to see. I documented very carefully ALL the changes I made.. I'm fairly certain that this code was not introduced Rev48. Looking at the comments, it looks like it was introduced in a previous version, and I don't know which one..
    Quote Originally Posted by philip56 View Post
    Many thanks for that JTheed. My copy of order.php (from the original Super Order 2 if I remember correctly) does not have that

    Code:
     // BEGIN Super Orders edit
            // add CC data as a line item to SO payment system
            if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {
              require(DIR_WS_CLASSES . 'super_order.php');
              $so = new super_order($insert_id);
              $so->cc_line_item();
            }
            // END Super Orders edit
    section in it. As far as I can see, that first made it's appearance in DivaVocals version.

    Could anyone confirm that for me?
    This part is significant.. The code you are attempting to add is over two years old, and there were SO release between the time this code was posted and now, so it's very possible, it won't "fit" exactly the current makeup of Super Orders..
    Quote Originally Posted by JTheed View Post
    Depending on the version, around line 634 and your only adding what is in red, so just look for the part NOT in red.

    In my release that I have (48a) it is just after this

    $insert_id = $db->Insert_ID();
    // BEGIN Super Orders edit
    // add CC data as a line item to SO payment system
    if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {

    Keep in mind, that post is almost 2 years old too!
    Last edited by DivaVocals; 2 Jun 2010 at 04:37 PM.
    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.

 

 

Similar Threads

  1. 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
  2. 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
  3. 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
  4. Super Orders 2.0 postage marks with Super Orders
    By sketchhgal in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Mar 2009, 03:05 PM
  5. Edit Orders and Super Orders, anyone doing that?
    By swamyg1 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 Feb 2009, 06:03 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