• elisahg

    (@elisahg)


    Hi,

    I’ve installed the sticky menu plug-in.

    When I go to Admin and then the Sticky Menu, I get the following 2 errors:

    WordPress database error: [Table ‘youridea_wrdp1.wp_stickymenu’ doesn’t exist]
    SELECT DISTINCT menu FROM wp_stickymenu

    WordPress database error: [Table ‘youridea_wrdp1.wp_stickymenu’ doesn’t exist]
    SELECT * FROM wp_stickymenu ORDER BY menu, weight ASC

    I’m fumbling in the dark here. No idea what to do. I only know enough to know I need help ?? Any suggestions greatly appreciated!

    Lisa

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter elisahg

    (@elisahg)

    The plug in I’m referring to is:

    https://tela-web.com/wordpress-plugins/sticky-menu/

    Lisa

    vkaryl

    (@vkaryl)

    I’ve never used the plugin. Did it come with a set of “how-tos” as far as installing? Looks like it didn’t create the table in the database, from the errors. Some plugins give you a text-file of stuff to quote into the sql query screen, which adds the appropriate tables/rows/fields to the database. If you didn’t get something like that, then you might check with the plugin author.

    And some plugins will create the table etc. needed when you activate them – but it doesn’t look like this one did.

    vkaryl

    (@vkaryl)

    Well, y’know, reading the first and second comments on the page where you got the plugin will tell you how to fix it.

    Thread Starter elisahg

    (@elisahg)

    Thanks vkaryl for pointing me in that direction. I really impressed myself and was able to figure it out with some help from previous support posters here. Yay!

    Lisa

    I read the first 2 comments ont he page but I am unsure where to place this thank you

    CREATE TABLE wp_stickymenu (
    id int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
    name VARCHAR(55) NOT NULL,
    link VARCHAR(255) NOT NULL,
    menu VARCHAR(55) NOT NULL,
    weight int(11) NOT NULL DEFAULT ‘0’,
    disabled TINYINT NOT NULL DEFAULT ‘0’,
    PRIMARY KEY (id)
    ) TYPE = MYISAM;

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Sticky menu plug in question’ is closed to new replies.