Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Haozhe Xie

    (@zjhzxhz)

    Thanks for supporting.
    Any suggestions?

    Plugin Author Haozhe Xie

    (@zjhzxhz)

    I’m sorry to hear that.

    1. Do you have any suggestions to improve this plugin?
    2. Where can I get the plugin which is written by you?

    You should create the termmeta table by yourself

    `

    CREATE TABLE IF NOT EXISTS wp_termmeta (
    meta_id bigint(20) unsigned NOT NULL,
    term_id bigint(20) unsigned NOT NULL DEFAULT ‘0’,
    meta_key varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
    meta_value longtext COLLATE utf8mb4_unicode_ci
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


    — Indexes for dumped tables


    — Indexes for table wp_termmeta

    ALTER TABLE wp_termmeta
    ADD PRIMARY KEY (meta_id),
    ADD KEY term_id (term_id),
    ADD KEY meta_key (meta_key(191));


    — AUTO_INCREMENT for dumped tables


    — AUTO_INCREMENT for table wp_termmeta

    ALTER TABLE wp_termmeta
    MODIFY meta_id bigint(20) unsigned NOT NULL AUTO_INCREMENT;
    `

Viewing 3 replies - 1 through 3 (of 3 total)