Page 38 of 67 FirstFirst ... 28363738394048 ... LastLast
Results 371 to 380 of 667
  1. #371
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by chadderuski View Post
    When you uncheck a checkbox, it doesn't POST anything?
    Exactly. This amazed me at first too, but when you think about it it does make sense after all. What value shoud it post when uncheked? And it works similar to radio inputs: only a checked radio input sends data.

  2. #372
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    Any pointers as to where to start looking, i am not a programmer however i can pretty much understand the code, and work through it but i have no idea where to look, by the way sorry for the delay in getting back to the board been busy

    Quote Originally Posted by paulm View Post
    Adding columns is not complicated, but it does require some custom coding. You can take a look at the code and use the existing columns as an example.
    Lextechs.com Powered By ZenCart

  3. #373
    Join Date
    Apr 2006
    Location
    Dark Side of the Moon
    Posts
    987
    Plugin Contributions
    1

    Default Re: Quick Updates 1.3 ?

    Lextechs:

    Is this field in the products database? If it is, it should be quite simple to add it. You only need to edit two files. One is the main quick_updates.php, and the other is in the includes/languages/english (i hope I remember that right) directory. The second file is used to define your column headers. If you are going to add a pricing column, then model it after an existing price column.

    I was able to add two fields minimum order quantity and quantity units in about 20 minutes with testing.

    BE SURE TO BACK YOUR DATA UP with the plug-in!

    With these two fields, it was merely a matter of duplicating the code, then using the appropriate field name in the database (use phpMyAdmin to see structure, or download your MySQL backup and look there) in place of the similar field.

    Really a no brainer.

    Wish I could say that about Check Boxes (gnashes teeth)!

    -Chaddro.

  4. #374
    Join Date
    Oct 2006
    Posts
    8
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    First, I would like to say I really appreciate this Mod. It used to work for me but I can't figure out what caused this formatting problem. Here is my screen shot. Should I delete and re-install the mod?


  5. #375
    Join Date
    Jan 2008
    Location
    Almaty
    Posts
    3
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    hey guys,
    i got the problem blow:

    Sorry, your security clearance does not allow you to access this resource.

    Please contact your site administrator if you believe this to be incorrect.

    Sorry for any inconvenience.


    what i have to do?

  6. #376
    Join Date
    Oct 2006
    Posts
    8
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    I still can't figure out my layout problem as shown above. I have deleted everything and re-installed. Deleted all instances in my data file and re-installed no luck. Any ideas would be GREATLY appreciated.

  7. #377
    Join Date
    Oct 2006
    Posts
    8
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    I figured it out..I would say thanks for the reply but I never received any.

  8. #378
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by brylees View Post
    I figured it out..I would say thanks for the reply but I never received any.
    Even though you haven't received a reply, it is always good to give thanks to everyone who contributes to zen cart. It is even better to contribute to the zen community yourself by posting how you solved your problem. Many of the problems you will need help with in the future will most likely be answered by someone who used to have the same problem.

  9. #379
    Join Date
    Apr 2005
    Location
    Louny, Czech Republic
    Posts
    51
    Plugin Contributions
    1

    Default Re: Quick Updates 1.3 ?

    Hello,

    I need add another fields from database, ex.: products_discount_price. But I have problem displaying price with TAX in function updategross() and updatenet().

    Original code:

    Code:
    function updateGross(product) {
      var taxRate = getTaxRate(product);
      var inname = "quick_updates_new[products_price][" + product + "]";
      var outname = "quick_updates_new[products_taxprice][" + product + "]";
      var grossValue = document.forms["quick_updates"].elements[inname].value;
    
      if (taxRate > 0) {
        grossValue = grossValue * ((taxRate / 100) + 1);
      }
    
      document.forms["quick_updates"].elements[outname].value = doRound(grossValue, 2);
    }
    and

    Code:
    function updateNet(product) {
      var taxRate = getTaxRate(product);
      var inname = "quick_updates_new[products_taxprice][" + product + "]";
      var outname = "quick_updates_new[products_price][" + product + "]";
      var netValue = document.forms["quick_updates"].elements[inname].value;
    
      if (taxRate > 0) {
        netValue = netValue / ((taxRate / 100) + 1);
      }
    
      document.forms["quick_updates"].elements[outname].value = doRound(netValue, 6);
    }
    Thanx for help.
    JardaR

  10. #380
    Join Date
    Apr 2005
    Location
    Louny, Czech Republic
    Posts
    51
    Plugin Contributions
    1

    Default Re: Quick Updates 1.3 ?

    or display WHOLESALE_PRICE without and with TAX.
    JardaR

 

 
Page 38 of 67 FirstFirst ... 28363738394048 ... LastLast

Similar Threads

  1. Quick Updates
    By jayson.gurney in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 1 Mar 2008, 11:08 AM
  2. Quick Updates 2.0*
    By Doodlebuckets in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 6 Jun 2007, 01:32 PM
  3. Quick Updates
    By tuckerm in forum Customization from the Admin
    Replies: 11
    Last Post: 16 Dec 2006, 11:45 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