WPIntell

Source evidence

Styling Issues

aDirectory – WP Business Directory Plugin and Classified Ads Listings Directory · support · 2026-03-29T22:04:00+00:00

complaintsentiment
mediumseverity
0.86relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 29 rows with source links

13.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

25 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
trinitydevsoft unresolved
The aDirectory page seems to not be processing styling information correctly from WordPress. If you look at the footer, the spacing is all messed up compared to the home page ( https://www.catholicwritersguild.org/ ). The WordPress comments form for ratings is equally messed up for logged in users. The page I need help with: [ log in to see the link] Hi there, Thank you for reaching out and for using aDirectory 🙂 The issue you’re experiencing (layout/styling mismatch and comment form display) is often caused by a theme or plugin conflict , or sometimes custom CSS overriding default styles. To help narrow it down, could you please try the following: Temporarily deactivate other plugins (except aDirectory) Switch to a default theme (like Twenty Twenty-Four) Clear any cache (plugin/server/CDN) This will help identify if something is conflicting with aDirectory. If the issue still persists, you can also reach out to our support team via the contact page: 👉 https://adirectory.io/contact-us/ Our dedicated support team will take a closer look and help you resolve it as quickly as possible. We’re continuously improving aDirectory to ensure smooth compatibility across themes and plugins, and we appreciate your patience. Thank you! 🚀 Disabling plugins and switching templates is an unacceptable prescription the client will not permit. The problem is specifically in YOUR templating system not registering the themes styles for inclusion on the front end. I don’t have a problem with main display page for each directory but clicking on each person (single listing?) is where it things go south. For the weight of your plugin, you should have used a separate templating system that outputs widgets with their own styles. Relying on a diverse theming system was a poor design decision. I ran the pages through Claude code and it is your plugin rendering the HTML for the footer in the wrong location breaking the CSS. Adding this code to reparent the relevant tags fixed most of it, but not all: document.addEventListener(‘DOMContentLoaded’, function() { const footer = document.getElementById(‘footer-page’); const prev = footer.previousElementSibling; if (prev && footer.children.length === 0) { while (prev.firstChild) { footer.appendChild(prev.firstChild); } prev.remove(); } });

Comments

3 shown
Masud Zakaria 2026-04-06T04:13:00+00:00

Hi there, Thank you for reaching out and for using aDirectory 🙂 The issue you’re experiencing (layout/styling mismatch and comment form display) is often caused by a theme or plugin conflict , or sometimes custom CSS overriding default styles. To help narrow it down, could you please try the following: Temporarily deactivate other plugins (except aDirectory) Switch to a default theme (like Twenty Twenty-Four) Clear any cache (plugin/server/CDN) This will help identify if something is conflicting with aDirectory. If the issue still persists, you can also reach out to our support team via the contact page: 👉 https://adirectory.io/contact-us/ Our dedicated support team will take a closer look and help you resolve it as quickly as possible. We’re continuously improving aDirectory to ensure smooth compatibility across themes and plugins, and we appreciate your patience. Thank you! 🚀

trinitydevsoft 2026-05-29T19:07:00+00:00

Disabling plugins and switching templates is an unacceptable prescription the client will not permit. The problem is specifically in YOUR templating system not registering the themes styles for inclusion on the front end. I don’t have a problem with main display page for each directory but clicking on each person (single listing?) is where it things go south. For the weight of your plugin, you should have used a separate templating system that outputs widgets with their own styles. Relying on a diverse theming system was a poor design decision.

trinitydevsoft 2026-05-29T21:00:00+00:00

I ran the pages through Claude code and it is your plugin rendering the HTML for the footer in the wrong location breaking the CSS. Adding this code to reparent the relevant tags fixed most of it, but not all: document.addEventListener(‘DOMContentLoaded’, function() { const footer = document.getElementById(‘footer-page’); const prev = footer.previousElementSibling; if (prev && footer.children.length === 0) { while (prev.firstChild) { footer.appendChild(prev.firstChild); } prev.remove(); } });