thuan.van.nguyen@gmail.com
Forum Replies Created
-
please elaborate
Forum: Plugins
In reply to: [Spiffy Calendar] Monthly recurring eventThanks
Forum: Plugins
In reply to: [Spiffy Calendar] Monthly recurring eventhow to have recurring for the fourth sunday in every month?
Forum: Plugins
In reply to: [Spiffy Calendar] TranslateAny plan for this?
I would like norwegian – How can I do the translation myself?I manage to run this from Mysql workbench
INSERT INTO
wordpress.wp_spiffy_calendar
(
event_begin,
event_end,
event_title,
event_desc
)
VALUES
(
‘2013-05-23’,
‘2013-05-23’,
‘Etest’,
‘desc’);
The DDl for the table…
CREATE TABLE
wp_spiffy_calendar(
event_idint(11) NOT NULL AUTO_INCREMENT,
event_begindate NOT NULL,
event_enddate NOT NULL,
event_titlevarchar(30) NOT NULL,
event_desctext NOT NULL,
event_timetime DEFAULT NULL,
event_end_timetime DEFAULT NULL,
event_recurchar(1) DEFAULT NULL,
event_repeatsint(3) DEFAULT NULL,
event_authorbigint(20) unsigned DEFAULT NULL,
event_categorybigint(20) unsigned NOT NULL DEFAULT ‘1’,
event_linktext,
event_imagebigint(20) unsigned DEFAULT NULL,
PRIMARY KEY (event_id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8$$I tried to create an event with
eventname : what ever
date: 2013-05-29