Results 1 to 10 of 13

Hybrid View

  1. #1
    Join Date
    Jul 2008
    Posts
    11
    Plugin Contributions
    0

    Default Globally Changing prices of products.

    Hi all, hope you can help me :)

    I have a shop with 1500 products in it, and have to alter the price of them all by a set % is there an easy way to do this?

    The items are in categories and subcategories. I was thinking that maybe I could export them to a spreadsheet, alter them globally, then upload the new file? Any advice appreciated as I am a total noob with this

    Thanks

    T

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Globally Changing prices of products.

    Are you wanting to alter all 1500 products by the same % or each category of products?

    Do you have attributes with prices or just product prices?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Jul 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Globally Changing prices of products.

    Hi , this has now been done thanks

  4. #4
    Join Date
    Mar 2008
    Location
    Cape Town & London (depends on the season)
    Posts
    2,975
    Plugin Contributions
    0

    Default Re: Globally Changing prices of products.

    Linda's hesitance in immediately suggesting EasyPopulate is well-placed... If you're just working with basic product data (none "priced by attributes"), then EasyPopulate enables "mass updating" using a tab-delimited txt spreadsheet.

    If you have products whose pricings are also dependent on attributes (sizes of a particular garment, for example), then EasyPopulate has some limitiations.

  5. #5
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Globally Changing prices of products.

    There are also ways to do updates on prices in part or as a whole depending on what the criteria is ...

    For example, update all prices by plus 10% is a single command ...

    Update all prices in a given category where the category is the master_categories_id can also be done with a single command per master_categories_id ...

    Updating both prices and attributes can be done with a bit of coding ...

    For other things, programs like EP might be useful ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #6
    Join Date
    Jul 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Globally Changing prices of products.

    Well I paid a programmer to alter the prices globally and it is done, but the store has really slowed down. I have an awfull feeling he has scripted it to do this rather than altered the actual prices.

    Also all the stock levels are set to zero now

    Will easy populate allow me to globally set the stock levels?

    Is this the rright page for download ?
    http://www.zen-cart.com/index.php?ma...roducts_id=460

    Thanks

    T

  7. #7
    Join Date
    Jul 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Globally Changing prices of products.

    After consulting the zen cart owners manual (if you use Zen cart BUY THIS BOOK)

    I have discovered that you can set it to allow checkout on non stock items, and also not to show out of stock etc.

    This is perfect for dropshippers, or florists etc, wehere the stock is made at the point of sale

    GREAT BOOK!

    And no I am NOT on commission LOL

  8. #8
    Join Date
    Nov 2009
    Posts
    102
    Plugin Contributions
    0

    help question Re: Globally Changing prices of products.

    Quote Originally Posted by Ajeh View Post
    There are also ways to do updates on prices in part or as a whole depending on what the criteria is ...

    For example, update all prices by plus 10% is a single command ...

    Update all prices in a given category where the category is the master_categories_id can also be done with a single command per master_categories_id ...

    Updating both prices and attributes can be done with a bit of coding ...

    For other things, programs like EP might be useful ...
    I was reading your advice to another new zenner and wondered where I'd find the info to do what you're describing here. I'd like to be able to change the prices or add prices to a whole category. Could you please point me in the right direction? thank you.
    george

  9. #9
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Globally Changing prices of products.

    You can check the products table in phpMyAdmin to see what the master_categories_id is or ... in the Zen Cart Admin go to the Categories/Products ... if all the Category is not marked with a yellow icon, that means there are not any Linked Products ... if the Category is marked with a yellow icon that means there are Linked Products ...

    If you use Linked Products, check to see if those Products are all using the same master_categories_id ... you can see this by editing the Product ...

    If all Products use the same master_categories_id, then you can use that to control which Category gets the prices updated ...

    For example, if categories_id 10 is the master_categories_id you can update the products_price to $5.00 more with:
    Code:
    UPDATE products SET products_price = products_price + 5.00 WHERE master_categories_id = 10;
    and that can be run in the Tools ... Install SQL Patches ...

    The, go to the Tools ... Store Manager ... and run the Update Products Price Sorter ...

    NOTE: the Update Products Price Sorter uses the master_categories_id when building the default price for the Product ... so if using Linked Products, it is important that master_categories_id be set correctly ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 

Similar Threads

  1. Can prices be added globally to a range of products or only one product at a time?
    By actionjackson57 in forum Setting Up Categories, Products, Attributes
    Replies: 14
    Last Post: 8 Aug 2011, 03:32 PM
  2. Applying Attribute Value prices Globally.
    By Sushigal in forum Setting Up Categories, Products, Attributes
    Replies: 5
    Last Post: 27 May 2011, 01:43 PM
  3. increasing prices globally?
    By bbrace in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 3 May 2011, 02:13 PM
  4. How to globally increase prices?
    By snowy2007 in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 10 Dec 2008, 11:52 AM
  5. Adjusting prices globally
    By sammybotz in forum General Questions
    Replies: 3
    Last Post: 6 Apr 2007, 03:35 AM

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