• Resolved cindygobeyond

    (@cindygobeyond)


    Using “Events Manager” plugin, My Events table is cramped, it is not taking on the formatting of the theme. The theme technicians say this piece of code which was rendered:

    <table id='dbem-bookings-table' class='widefat post fixed'>...

    needs to become:

    <table id='dbem-bookings-table' class='custom-table widefat post fixed'>...

    How/where can I do this?
    Thanks.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • caimin_nwl

    (@caimin_nwl)

    You need to edit the my-bookings.php file in

    /plugins/events-manager/templates/templates

    This will help with using custom versions of templates:
    http://wp-events-plugin.com/documentation/using-template-files/

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    the above would work fine

    alternatively, you can always find your CSS rules in your theme stylesheet that deals with the custom-table class and add our id to it too, e.g.

    .custom-table { …. }

    becomes

    .custom-table, table#dbem-bookings-table { … }

    Thread Starter cindygobeyond

    (@cindygobeyond)

    The above was simply brilliant, thanks Caimin_nwl. Finally an answer to something that should not have been an issue.

    Thanks for the alternative Marcus.
    Cindy

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Table is cramped’ is closed to new replies.