Results 1 to 2 of 2
  1. #1
    Join Date
    May 2006
    Posts
    41
    Plugin Contributions
    0

    Default MSRP to Quick Updates?

    I would like to add a column for MSRP in the quick updates, but I do not know how to go about doing it. I have read somewhere on this forum that adding a column is done, but never really showed the steps of what I'm suppose to do in order to add. I tried to do it blindly a couple of times but got no where. I run two online retail stores that needs 1000s of products added, and I just don't have the time to mess around in trying to figure out the coding. I appreciate it if someone could give me a helping hand and provide the steps of what I need to do about "adding a column" into quick updates.

    BTW, I have quick updates 2.0



    -Michelle

  2. #2
    Join Date
    Jun 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: MSRP to Quick Updates?

    Hi, not sure if you figured this out but its easy to add, modify the file "admin/includes/extra_configures/quick_updates.php"

    Change this:
    // added for QUICKUPDATES_NEW_COLUMN_1
    // look in admin/quick_updates.php for "added for QUICKUPDATES_NEW_COLUMN_1" to see what has been added, to make quick_updates support this extra column.
    // (In my case I added "products_artlid" because I wanted to store the article id's from my main supplier into my database)
    // Enable/disable the new column
    define('QUICKUPDATES_MODIFY_NEW_COLUMN_1', 'false');
    // The name of the column you added to your database products table
    // (note: all other columns are not defined but hard coded, so this is the only "easy user configurable" column)
    define('QUICKUPDATES_NEW_COLUMN_1', 'products_artlid');
    // The table heading text for this extra column (actually belongs in the language file)
    define('TABLE_HEADING_NEW_COLUMN_1', 'artlid');
    ?>
    To this:
    // added for QUICKUPDATES_NEW_COLUMN_1
    // look in admin/quick_updates.php for "added for QUICKUPDATES_NEW_COLUMN_1" to see what has been added, to make quick_updates support this extra column.
    // (In my case I added "products_artlid" because I wanted to store the article id's from my main supplier into my database)
    // Enable/disable the new column
    define('QUICKUPDATES_MODIFY_NEW_COLUMN_1', 'true');
    // The name of the column you added to your database products table
    // (note: all other columns are not defined but hard coded, so this is the only "easy user configurable" column)
    define('QUICKUPDATES_NEW_COLUMN_1', 'products_msrp');
    // The table heading text for this extra column (actually belongs in the language file)
    define('TABLE_HEADING_NEW_COLUMN_1', 'msrp');

 

 

Similar Threads

  1. Quick Updates addon?
    By computel in forum Upgrading to 1.5.x
    Replies: 3
    Last Post: 17 May 2012, 05:52 PM
  2. Quick Updates
    By jayson.gurney in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 1 Mar 2008, 11:08 AM
  3. Quick Updates 2.0*
    By Doodlebuckets in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 6 Jun 2007, 01:32 PM
  4. Quick Updates
    By tuckerm in forum Customization from the Admin
    Replies: 11
    Last Post: 16 Dec 2006, 11:45 PM

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