jpatlakas
Forum Replies Created
-
Forum: Plugins
In reply to: [AddThis Social Sign In] Twitter problemI couldn’t solve the problem. I moved to the wp-social-login plugin.
It is now working fine.To give some more info, I am doing inserts like:
INSERT INTO wp_posts (post_author,post_title,post_status,post_name,post_type,guid) VALUES ('2', 'Basketball', 'publish', 'Basketball', 'event', 'https://mydomain/events/basketball' ); INSERT INTO wp_term_relationships (object_id,term_taxonomy_id) VALUES ('156','6'); INSERT INTO wp_em_events (post_id,event_slug,event_owner,event_status,event_name,event_start_time,event_start_date,location_id) VALUES ('156','Basketball','2','1','Basketball','00:00:00','2014-11-05','3');
with those I can see the event on the category basketball, but the link to it results to “Page not found”.
I will appriciate any help.
ThanksThe second. The permalink is not working.
Moreover, I am writting to the database in the tables I mentioned, and I can see my event in the category that I saved it, but I the link to the event is not working.Also I cannot see it in the wp-admin as an event, but it appears in the category page when I search for it in my site.
I also tried
$event->save();
with no result$event = new EM_Event(); ... // passing the data to $event $aa = apply_filters('em_event_save', true, $event);
Do you mean something like that?
It is not working(i.e. now new event is created).Ok adding the event rating was simple.
If someone has any idea on the second question is still welcome.