• Resolved mwouters

    (@mwouters)


    Hi,

    My general events overview page is looking just fine: http://irishclubbe.webhosting.be/events/

    But I also added a list of all categories. When you click a categorie I want the events to be shown in the same way. However, they show up like this: http://irishclubbe.webhosting.be/events/categories/icb-bridge/

    In Events -> Settings -> Pages -> Event Categories, “Override with Formats?” is set to YES.
    In Events -> Settings -> Formats/layouts -> Categories format -> Event List Formats I have:

    Default event list format header: <ul>
    Default events list format: <li> #_EVENTLINK - #j #M #Y - #H:#i</li>
    Default event list format footer: </ul>

    As you can see in the source code of http://irishclubbe.webhosting.be/events/categories/icb-bridge/ the HTML seems to be stripped out.
    I already tried changing the above three fields to the same HTML code used in In Events -> Settings -> Formats/layouts -> Events format -> Events page, with the same result: all HTML is stripped out.

    Is this a bug?
    Anyone any idea how I can get this right?

    PS. As you can also see the navigation item “Events” is also not highlighted..

    Thanks a lot in advance,

    Mark

    http://wordpress.org/extend/plugins/events-manager/

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter mwouters

    (@mwouters)

    Mmm.. it appears to be a conflict with the WooThemes Canvas theme..
    Is there a way to make a custom template for this list? Keeping in mind that the category is a variabel?

    Thanks,

    Mark

    agelonwl

    (@angelonwl)

    yes, please checkout template file templates/category-single.php

    http://wp-events-plugin.com/documentation/using-template-files/

    agelonwl

    (@angelonwl)

    Also, try to set EM Settings > Pages > Event Categories > Override with Formats? No

    Thread Starter mwouters

    (@mwouters)

    Yes, but then he uses the default WP archive template I think. And I didn’t want the date of publishment to display with the events, which was very confusing.

    Cheers,

    Mark

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    we’ve worked with WooThemes on this and they say there’s no issues. Could it be something in your settings that filters the content of posts before they are published? That’d probably what’s doing this.

    Thread Starter mwouters

    (@mwouters)

    Thanks.
    Looked at the WP settings, but found nothing that could influence it. Do you have an idea of the setting you are talking about?

    Thanks!

    courier_wp

    (@courier_wp)

    I have the same problem. Event List Formats is not showing. I was working on location page structure, but I lost the Event List Formats in some moment while I’m “touching” the formats/layouts form.

    courier_wp

    (@courier_wp)

    I was able to recover it doing a EM reset.
    General > Admin Tools > Reset

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    No idea… I’m assuming maybe there’s some sort of setting in WT that allows you to filter content or something like that.

    Are you sure it’s the theme btw, did you test this without other plugins enabled?

    Thread Starter mwouters

    (@mwouters)

    Just deactivated all plugins, no effect.
    Found out the page is using the content.php template, and the code:

    if ( ! is_singular() ) {
           the_excerpt();
    } else {
           the_content(__('Continue Reading &rarr;', 'woothemes') );
    }

    is removing all HTML.
    Replacing the_excerpt(); by the lower code did the trick.
    Still having some problems with activating the event menu item on the same page and the detail page of an event.

    Cheers,

    Mark

    Ken

    (@something4ken)

    Hi, I’m having the same issue with Canvas them. Can you please tell me which file you modified to get the formatting right?

    Thanks

    Thread Starter mwouters

    (@mwouters)

    I think wp-content/themes/your-theme/content-page.php

    Ken

    (@something4ken)

    Thanks for the reply. Great find! I followed what you said and my code looks like this (see below). It didn’t affect any other pages; in fact, this solution also fixed bbpress plugin for Canvas theme. I’ll keep checking and will report bugs here if I find any. Thanks again.

    if ( ! is_singular() ) {
       the_content(__('Continue Reading &rarr;', 'woothemes') );
    } else {
       the_content(__('Continue Reading &rarr;', 'woothemes') );
    }
Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘[Plugin: Events Manager] HTML in Event List Formats not showing’ is closed to new replies.