Can you turn on debug mode under the plugin general options? It will add some hidden data in the page that I can see to try to understand what is happening.
Are you fluent enough in web site administration to try running the following query on your site’s database and seeing what type of error message might be getting generated:
SELECT distinct *, l.link_id as proper_link_id, UNIX_TIMESTAMP(l.link_updated) as link_date, IF (DATE_ADD(l.link_updated, INTERVAL 120 MINUTE) >= NOW(), 1,0) as recently_updated FROM smac_7_terms t LEFT JOIN smac_7_term_taxonomy tt ON (t.term_id = tt.term_id) LEFT JOIN smac_7_term_relationships tr ON (tt.term_taxonomy_id = tr.term_taxonomy_id) LEFT JOIN smac_7_links l ON (tr.object_id = l.link_id) LEFT JOIN smac_7_links_extrainfo le ON (l.link_id = le.link_id) WHERE tt.taxonomy = "link_category" AND l.link_id is not NULL AND l.link_description not like "%LinkLibrary:AwaitingModeration:RemoveTextToApprove%" AND l.link_visible != "N" ORDER by name ASC, l.link_name ASC
Perhaps the smac_7_links_extrainfo table did not created correctly when the sub-site was created.
Thank you, it threw many errors. I just copied the LinkCategoryMeta and Links_ExtraInfo from the other site. It works now
I appreciate it!
Glad that did the trick. Was this a newly created sub-site? If so, I will review the code that is supposed to create that table when a new sub-site is created.
Please consider donating to support this plugin’s development.