Keyword

Copy/Import Large Number of Categories

  • Taylor P
  • Taylor P's Avatar Topic Author
  • Offline
  • New Member
More
11 years 6 months ago #110968 by Taylor P
Copy/Import Large Number of Categories was created by Taylor P
I am using K2 on a local Yellow Pages style business directory and as you can imagine, I have a large number of categories. I am looking to expand to additional cities and would like to add these same categories to each additional city. Does anyone know of an easy way (or a utility) that I can take several hundred categories in CategoryA and make a duplicate under CategoryB and so forth? I cringe at the thought of having to add them all by hand (again :) ) I have seen the "Copy" button within K2 but this obviously is not designed for what I am looking for. Any thoughts, suggestions etc would be greatly appreciated.

Please Log in or Create an account to join the conversation.

  • Mohamed Abdelaziz
  • Mohamed Abdelaziz's Avatar
  • Offline
  • Platinum Member
  • Joomla Developer
More
11 years 6 months ago #110969 by Mohamed Abdelaziz
Replied by Mohamed Abdelaziz on topic Re: Copy/Import Large Number of Categories
This is possible by importing them directly into database.

assume that the Id of CategoryA is A, and Id of CategoryB is B
INSERT INTO `#_k2_categories`( `name`, `alias`, `description`, `parent`, `extraFieldsGroup`, `published`, `access`, `ordering`, `image`, `params`, `trash`, `plugins`, `language`) SELECT `name`, `alias`, `description`, B, `extraFieldsGroup`, `published`, `access`, `ordering`, `image`, `params`, `trash`, `plugins`, `language` FROM `#_k2_categories` WHERE `parent` = A

Make sure to replace:
A with CategoryA id
B with CategoryB id
# with your database suffix

Multiple Extra Fields Groups for K2
AutoMeta for K2
Chained Fields for K2
More K2 Extensions In My Extensions Store

Please Log in or Create an account to join the conversation.

  • Taylor P
  • Taylor P's Avatar Topic Author
  • Offline
  • New Member
More
11 years 6 months ago #110970 by Taylor P
Replied by Taylor P on topic Re: Copy/Import Large Number of Categories
Great! I will give that a shot!

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum