Okay
  Public Ticket #1935150
Importing iCal events
Closed

Comments

  •  3
    Graeme started the conversation

    Hi, I have same issue as ticket 1872060 importing iCal events, that the category is not being respected. 

    https://stachethemes.ticksy.com//ticket/1872060/

    The category names have been created before the iCal import and are the same name.

    Can you tell me where in wp database table and column that category can be added to a post? Have bulk of 300+ events that I need to assign between 4 or 5 categories. 


    Which tables and columns are they stored against? Are the categories free text or use an Id ?

  •  795
    Zhivko replied

    Hi,

    The categories are inserted with following code:

    wp_set_object_terms($this->id, $this->categories, 'stec_event_category');

    $this->id - the event id

    $this->categories - Categories id (array)

    stec_event_category - the taxonomy

    You can check the code in file stachethemes_event_calendar/admin/class/o.event.php line 910.

    https://codex.wordpress.org/Function_Reference/wp_set_object_terms

    In the database they can be found in tables:

    wp_terms, wp_term_taxonomy and wp_term_relationships


    Stachethemes Developer

  •  3
    Graeme replied

    thanks. Got round it by importing into a new google calendar then subscribing to that from WP