Results 1 to 10 of 678

Hybrid View

  1. #1
    Join Date
    Apr 2008
    Location
    internet
    Posts
    41
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    BUG FIXES on quick_updates-v2.05

    fixes the column missing error when display descriptions are disabled and edit description is enabled
    find
    admin/quick_updates.php
    Code:
    if(QUICKUPDATES_MODIFY_DESCRIPTION == 'true')
    replace with
    Code:
    if(QUICKUPDATES_MODIFY_DESCRIPTION == 'true'||QUICKUPDATES_MODIFY_DESCRIPTION_POPUP == 'true')
    SQL fix to enable 2 decimal zeros (1.00) and not 4 decimal zeros (1.0000)
    SQL:
    Code:
    ALTER TABLE `zen_products` CHANGE `products_price` `products_price` DECIMAL( 15, 2 ) NOT NULL DEFAULT '0.00';
    
    ALTER TABLE `zen_products` CHANGE `products_price_sorter` `products_price_sorter` DECIMAL( 15, 2 ) NOT NULL DEFAULT '0.00'

  2. #2
    Join Date
    Apr 2008
    Location
    internet
    Posts
    41
    Plugin Contributions
    0

    Default Re: Quick Updates 1.3 ?

    add weight unit to weight heading
    admin/quick_updates.php
    find
    Code:
    echo zen_quickupdates_table_head('p.products_weight', TABLE_HEADING_WEIGHT );
    replace with
    Code:
    echo zen_quickupdates_table_head('p.products_weight', TABLE_HEADING_WEIGHT .' ('. TEXT_PRODUCT_WEIGHT_UNIT .')');

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

    Default Re: Quick Updates 1.3 ?

    Quote Originally Posted by xcooling View Post
    [B][SIZE="6"]SQL fix to enable 2 decimal zeros (1.00) and not 4 decimal zeros (1.0000)
    SQL:
    Code:
    ALTER TABLE `zen_products` CHANGE `products_price` `products_price` DECIMAL( 15, 2 ) NOT NULL DEFAULT '0.00';
    
    ALTER TABLE `zen_products` CHANGE `products_price_sorter` `products_price_sorter` DECIMAL( 15, 2 ) NOT NULL DEFAULT '0.00'
    Please note that this is not related to quick updates, and these changes may have undesired effects on other parts of the Zen Cart script!
    Last edited by paulm; 12 Nov 2009 at 05:57 PM.

 

 

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

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