Page 13 of 67 FirstFirst ... 311121314152363 ... LastLast
Results 121 to 130 of 667
  1. #121
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Any help would be rewarded with my eternal love and an expensive dinner
    Hmmm..... that expensive dinner sounds nice :-D

    For now i am still working on the formentioned categories bug though, I really need to have this fixed (for my own usage).

    So when using the current (or older) version: please be carefull with editting multi linked products! (linked to multiple categories) And better do not use it to edit the categories. I think I have solved this problem today/night, but I need to clean up, add some texts and do some more testing before I can upload it).

  2. #122
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by paulm View Post
    Hmmm..... that expensive dinner sounds nice :-D
    my eternal love meanes nothing to you? i guess it's true... the way to a mans heart is through his stomach!

    Well...get workin'! Come on! We need you! (j.k. - your work is GREATLY appreciated by the masses here)

    One more thing though (as if you didn't have enough on your plate already) is that I can't get the page to move to the next page when using the drop-down menu on the bottom. A previous closed thread mentioned turning register globals on, which they are, so any thoughts?

  3. #123
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by craftzombie View Post
    I am also looking for a way to add wholesale prices to quick updates (my favorite mod!!!). I tried doing it myself but my knowledge is very limited on this sort of thing. Having Quick Updates be able to update wholesale prices would save my life. Any help would be rewarded with my eternal love and an expensive dinner if you ever came to Texas.
    Okay, I figured out how to edit the wholesale prices in phpMyAdmin to hold me over until this is a part of Quick Updates. It's not as fast as Quick Updates would handle it, but faster then editing each product separately.

    This is my first time touching the database like this. Scary and exhilarating all at once! I deserve a slice of pie now!

  4. #124
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by craftzombie View Post
    Any help would be rewarded with my eternal love and an expensive dinner if you ever came to Texas.
    Quote Originally Posted by craftzombie View Post
    Scary and exhilarating all at once! I deserve a slice of pie now!
    craftzombie, you're making me hungry; amongst other things. lol.

  5. #125
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by craftzombie View Post
    One more thing though (as if you didn't have enough on your plate already) is that I can't get the page to move to the next page when using the drop-down menu on the bottom. A previous closed thread mentioned turning register globals on, which they are, so any thoughts?
    Better turn register globals off again, unless you have to have to on for other reasons. Off is better for security! (if the code is free of errors/flaws it should not make any difference, but .......)

    I tried, and noticed the problem (caused by me I suppose, oops ), an easy fix is to change this (assuming you're using the latest version posted in this thread):
    Code:
    if(isset($_GET['page']) && $_GET['page'] != '')
      $page = (int)$_GET['page'];
    To:
    Code:
    if(isset($_REQUEST['page']) && $_REQUEST['page'] != '')
      $page = (int)$_REQUEST['page'];
    (that way both the page links, as the $_POST page switch are supported)


    on the love/stomach talk.

    I can't promise anything about the feature requests, I would love (love again? :-) ) to do it all, but time is limited and I *really* need to get some other things done first. (and I am afraid I am a slow coder ;-) )

  6. #126
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by paulm View Post
    Better turn register globals off again, unless you have to have to on for other reasons. Off is better for security! (if the code is free of errors/flaws it should not make any difference, but .......
    I can't remember exactly why, but it was turned on for a reason when I first started tweaking my cart. Too many instances of editing files and now I can't remember why.

    Quote Originally Posted by paulm View Post
    I can't promise anything about the feature requests, I would love (love again? :-) ) to do it all, but time is limited and I *really* need to get some other things done first. (and I am afraid I am a slow coder ;-) )
    It's okay, I fixed all 1150 of my products through phpMyAdmin. I got lucky because I've never been in there before and I found out where to edit. I probably couldn't find it again, it was pure luck! It took a few hours and my hand is killing me, but it would've taken FOREVER to edit in the admin. I knew you were busy and I really needed to have all of my products have wholesale prices (i just landed a wholesale customer ) right away. If only I had known these things from the beginning of my Zen adventure.

    paulm + espresso = faster coding! that's why it's 3 a.m. and I'm still awake.

  7. #127
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by craftzombie View Post
    paulm + espresso = faster coding! that's why it's 3 a.m. and I'm still awake.
    :-) That's quite normal for me, still being awake at times like that.

    Actually I am not sure what wholesale prices are I have added purchase prices (=the prices I have to pay to my wholesaler (?)) to my shop and the quick updates module. But I think your are talking about you being a wholesaler yourself, and you offer different prices for your resellers?

    (note that English is not my native Language)

  8. #128
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by cataland View Post
    Hi, I just install this very usefull mod. I want's to add another comlumn, "p.product_price_w" for the wholesale price of the dual pricing contribution. What can I do to do this
    I reconsidered, and decided to add the wholesale price after all. It costed only very little extra time since I was updating anyway. It's *totally* untested though!!!

    Now I only need someone that wants to test my new version *extensively*. Do lots of updates, and copying products and such. Using a test database of course! ;-)

    Anyone?

  9. #129
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Attached new version to this post. It includes the wholesales price column (as said untested!), and default it's switched off. To enable it edit admin\includes\extra_configures\quick_updates.php and change:

    Code:
    define('QUICKUPDATES_MODIFY_WHOLESALE_PRICE', 'false');
    to
    Code:
    define('QUICKUPDATES_MODIFY_WHOLESALE_PRICE', 'true');
    Don't forget to backup your database, and try this version on a testshop first. Feedback welcome!!

    Advised browser: Firefox (IE will work, but has some issues with css :hover features)
    Last edited by paulm; 25 Nov 2006 at 09:52 PM.

  10. #130
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Quick Updates 1.3 ?

    Changes report:
    v-november-16th-2006
    1) Added column for wholesale price (= totally untested!)
    2) Added quick copy: quickly copy one or more products as new products, and one click repeated copy.
    3) Fixed multilinked categories problems and main_categories_id issue.
    4) And added link to products_to_categories
    5) Fixed page dropdown selection
    6) Several other changes and code fixes
    (to update overwrite your old files, no changes to the sql since previous version)
    (Quote from the version history file)

    edit:
    quickly copy one or more products as new products, and one click repeated copy

    should be:
    quickly copy one product as one or more new products, and one click repeated copy
    Last edited by paulm; 16 Nov 2006 at 10:20 PM.

 

 
Page 13 of 67 FirstFirst ... 311121314152363 ... 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