Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Yannick Lefebvre

    (@jackdewey)

    Can you send me a screenshot of the Common section of Library Settings?

    Thread Starter VirtualCed

    (@virtualced)

    My last settings are https://prntscr.com/bpnfzh

    But I also tried : https://prntscr.com/bpngkw

    With the same result (except I can see the empty categorie)

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    Can you enable debug mode under the general settings and provide me a link to the page where you are trying to display this?

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    Sometimes, the problem is just that the extra tables that Link Library creates are not properly added to the database on installation. You can just try deactivating and reactivating to see if that gets resolved. You can also check in the database if the wp_links_extrainfo table has been created correctly.

    Thread Starter VirtualCed

    (@virtualced)

    Hello

    The debug mode was activated (was hard to find in French… Mise au point is not a common translation for Debug Mode)

    https://vivredesapassion.ca/liens

    But I don’t see the table wp_links_extrainfo even after a disable/enable of the extension.

    So it should be the cause… but no solution…. Except if you have a script to generate this table… maybe a button in the interface

    If table exist then hide button else show button to create table

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    Indeed, I will look at adding a button to do this in interface down the road. For now, please run the following script on database:

    CREATE TABLE wp_links_extrainfo (
    				link_id bigint(20) NOT NULL DEFAULT '0',
    				link_second_url varchar(255) CHARACTER SET utf8 DEFAULT NULL,
    				link_telephone varchar(128) CHARACTER SET utf8 DEFAULT NULL,
    				link_email varchar(128) CHARACTER SET utf8 DEFAULT NULL,
    				link_visits bigint(20) DEFAULT '0',
    				link_reciprocal varchar(255) DEFAULT NULL,
    				link_submitter varchar(255) DEFAULT NULL,
    				link_submitter_name VARCHAR(128) CHARACTER SET utf8 NULL,
    				link_submitter_email VARCHAR(128) NULL,
    				link_textfield TEXT CHARACTER SET utf8 NULL,
    				link_no_follow VARCHAR(1) NULL,
    				link_featured VARCHAR(1) NULL,
    				link_manual_updated VARCHAR(1) NULL,
    				UNIQUE KEY (link_id)
    				)

    This should create the missing table. You may need to re-save links after adding the table to get them to appear on the site. Sorry for the issue.

    Please consider donating to support this plugin’s development.

    Yannick (in Laval, Quebec, Canada)

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    Any success seeing links displayed now?

    Thread Starter VirtualCed

    (@virtualced)

    I just tested and it worked now.

    Maybe you should insert in the plugin a detection of the creation of the table and warn the user there is a problem.

    By the way I found another bug, I will create another thread. I’m not personally concerned by it but it could cause issue to other users.

    Regards
    Cedric

    Thread Starter VirtualCed

    (@virtualced)

    Closing this one.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘No links found’ is closed to new replies.