*

rooman

  • ****
  • 231 posts
Move subcategories to main categories
« on: December 28, 2022, 03:15:34 PM »
Hello
If you have a subcategory
And you want to move all ads from the subcategory to the main category
It is very difficult to manually edit each ad and add it to the main category
Is there a way to move all ads from the subcategory to the main category?
Thanks

*

MB Themes

Re: Move subcategories to main categories
« Reply #1 on: December 28, 2022, 04:22:42 PM »
@rooman
You can go to database and run update statement:
Code: [Select]
UPDATE oc_t_item SET fk_i_category_id = 123 WHERE fk_i_category_id = 987
123 - new category ID
987 - old category ID
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

rooman

  • ****
  • 231 posts
Re: Move subcategories to main categories
« Reply #2 on: December 30, 2022, 11:43:36 AM »
@rooman
You can go to database and run update statement:
Code: [Select]
UPDATE oc_t_item SET fk_i_category_id = 123 WHERE fk_i_category_id = 987
123 - new category ID
987 - old category ID

Very cool
It works perfectly
Thank you ;)
« Last Edit: December 30, 2022, 11:46:27 AM by rooman »

*

MB Themes

Re: Move subcategories to main categories
« Reply #3 on: December 30, 2022, 11:50:25 AM »
@rooman
Welcome ;)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots