• Resolved geoffgosson

    (@geoffgosson)


    It seems that suddenly some event descriptions are not displaying on the single event page, although a snippet of the description appears in list view.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey @geoffgosson

    Yikes!

    The culprit seems to be a CSS rule on your site.

    #tribe-events .tribe-events-content p {
        display: none;
    }

    Try to find out its origin and remove the rule.
    If that’s not possible, you can simply override it with a new one

    .single-tribe_event #tribe-events .tribe-events-content p {
        display: block !important;
    }

    Let us know how that goes,
    Geoff

    Thread Starter geoffgosson

    (@geoffgosson)

    Thank you! I have no idea why that code was there but removing it fixed the problem. ??

    Geoff

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Event page description not displaying’ is closed to new replies.