AbanteCart Community

eCommerce construction => Installation and Configuration => Configuration => Topic started by: browneyedgirl on September 24, 2015, 03:33:08 PM

Title: how can I bulk modify the status on pages
Post by: browneyedgirl on September 24, 2015, 03:33:08 PM
I am new to AbanteCart.  The default installation has a bunch of products showing - I want to disable their status  (i.e. Status=off).  I see there is a way to select all items but how do I actually change all of them to have status= off?    I want to do the same with Countries and currencies as an example.   Does AbanteCart have this functionality? If so, how do I use it?

Thanks.
Title: Re: how can I bulk modify the status on pages
Post by: abantecart on September 24, 2015, 09:28:58 PM
Yes, in the data listing grind select all off and save.
Title: Re: how can I bulk modify the status on pages
Post by: browneyedgirl on September 25, 2015, 07:10:44 AM
abantecart,  sorry I didn't understand your response. 
Yes, in the data listing grind select all off and save.

What do you mean "grind". I know i could select all buttons and select "off" on each one, then save - but I'm trying to figure out how i only have to select "off" once and it gets applied to all of the "selected items.

thanks.
Title: Re: how can I bulk modify the status on pages
Post by: webdevmerc on September 25, 2015, 09:46:53 AM
I did this by going straight to the database using phpMyAdmin.

This can break stuff however if you don't know what you are doing as it bypasses any syntax or data checks that maybe in Abantecart.  If you are starting out though and can afford reloads, start overs, etc..., it maybe easier to just do straight "update" database commands in phpAdmin like:

UPDATE `abc_countries` SET `status`= 0
UPDATE `abc_countries` SET `status`= 1 WHERE `country_id` IN (223)
Title: Re: how can I bulk modify the status on pages
Post by: browneyedgirl on September 25, 2015, 02:49:29 PM
okay thank you I will try that. do you know how we can put in requests/suggesions for new features as I imagine others might also benefit from such a feature.