Title: Gerry_C's Replies | WordPress.org

---

# Gerry_C

  [  ](https://wordpress.org/support/users/gerry_c/)

 *   [Profile](https://wordpress.org/support/users/gerry_c/)
 *   [Topics Started](https://wordpress.org/support/users/gerry_c/topics/)
 *   [Replies Created](https://wordpress.org/support/users/gerry_c/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/gerry_c/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/gerry_c/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/gerry_c/engagements/)
 *   [Favorites](https://wordpress.org/support/users/gerry_c/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Groups] Deprecated: Unparenthesized… error message](https://wordpress.org/support/topic/deprecated-unparenthesized-error-message/)
 *  [Gerry_C](https://wordpress.org/support/users/gerry_c/)
 * (@gerry_c)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/deprecated-unparenthesized-error-message/#post-13207795)
 * Thanks [@evdheuvel](https://wordpress.org/support/users/evdheuvel/) and [@neejoh](https://wordpress.org/support/users/neejoh/).
 * I just got caught in the issue with a new server today and your fixes worked.
   This is months old and there’s no updates.
 * [@proaktion](https://wordpress.org/support/users/proaktion/) Is this plug-in 
   still supported?
 * Gerry
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Event Manager – Conditional Custom Attribute](https://wordpress.org/support/topic/event-manager-conditional-custom-attribute/)
 *  [Gerry_C](https://wordpress.org/support/users/gerry_c/)
 * (@gerry_c)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/event-manager-conditional-custom-attribute/#post-11144388)
 * [@pasamike](https://wordpress.org/support/users/pasamike/)
    This will require
   a bit of custom PHP coding as there are no conditional placeholders for custom
   attributes as standard.
 * Something based on the following thread will need to be added to eg your child
   theme functions.php. If you don’t have a child theme, there’s a bit of learning
   to do before you get to this.
 * [Conditional place holder for custom attribute](https://wordpress.org/support/topic/conditional-place-holder-for-custom-attribute/)
   
   The first coded answer should do as you want.
 * As always, it is best to test this on a staging site as it’s easy to break your
   site if you make a small mistake. Make a full backup first as well.
 * Gerry
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] CSS rule that breaks the buttons in Google Maps](https://wordpress.org/support/topic/css-rule-that-breaks-the-buttons-in-google-maps/)
 *  [Gerry_C](https://wordpress.org/support/users/gerry_c/)
 * (@gerry_c)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/css-rule-that-breaks-the-buttons-in-google-maps/#post-11032560)
 * I did answer a post in the Pro forum about this. It is the events-manager.css
   file from the plugin that contains these amendments. This appears to be incompatible
   with the map update from Google.
    Updates were made by Support on other posts
   with the same problem the next day saying the devs were aware (though there is
   no update to my post from 2 weeks ago). For now, I’ve commented out these lines
   hoping that they will be removed in the next update.
 * Gerry (another EM user)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Map not visible on single event](https://wordpress.org/support/topic/map-not-visible-on-single-event/)
 *  [Gerry_C](https://wordpress.org/support/users/gerry_c/)
 * (@gerry_c)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/map-not-visible-on-single-event/#post-9930777)
 * Hi danbru
 * You need to set an actual height for the map on the single event page (eg 400px
   instead of 100%).
 * The reason it works on your Updates page is that the other columns set the height
   of that section so it uses all of the available height. At present on your event
   page, it is 100% of 0 as there’s no content there apart from the map.
 * Gerry
    Another customer, not support.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] FullCalendar 90% display OK – just a few minor issues – can you help?](https://wordpress.org/support/topic/fullcalendar-90-display-ok-just-a-few-minor-issues-can-you-help-2/)
 *  [Gerry_C](https://wordpress.org/support/users/gerry_c/)
 * (@gerry_c)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/fullcalendar-90-display-ok-just-a-few-minor-issues-can-you-help-2/#post-9659040)
 * [@kelsangchodor](https://wordpress.org/support/users/kelsangchodor/)
 * I see what you mean. This is happening because the calendar uses ‘rowspan’ to
   fill out the cells. Your theme though sets alternative rows to different colors
   which works well in more regular tables.
 * Add the following custom CSS to make them all the same in the calendar.
 *     ```
       .wpfc-calendar tr:nth-child(2),
       .wpfc-calendar tr:nth-child(2n+1) {
         background-color: #f8f8f8;
       }
       ```
   
 * Gerry
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Map Percentage Width](https://wordpress.org/support/topic/map-percentage-width/)
 *  [Gerry_C](https://wordpress.org/support/users/gerry_c/)
 * (@gerry_c)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/map-percentage-width/#post-9615304)
 * Hi
    Another customer here, not support.
 * This is how I made the map responsive on our site. Note that you may need to 
   make changes as your theme is likely to be different.
 * In the settings, use “Default map width”:360px and “height”:280px (or whatever
   looks good on your site when using a wide desktop browser).
 * In “Single event page format” and “Single location page format” use the following
   to show the map before other details on the page:
    `<div class="child-event-map"
   >#_LOCATIONMAP</div>`
 * In your child theme CSS or other plugin that lets you show custom CSS, add:
 *     ```
       .child-event-map { float:right; margin: 0 0 15px 15px; }
   
       @media screen and (max-width: 920px) {
           .child-event-map { float: none; margin-left: 0; }
           .em-location-map-container { width: 98% !important; }    
       }
       ```
   
 * This will override the inline 360px width that EM sets from the settings. It 
   also puts an extra div around the map that changes float setting here. You can
   change the 920px to whatever value you want to make the map responsive at.
 * Gerry
 * PS Rob, your link comes back to this topic.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Possible to add non-clickable event?](https://wordpress.org/support/topic/possible-to-add-non-clickable-event/)
 *  [Gerry_C](https://wordpress.org/support/users/gerry_c/)
 * (@gerry_c)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/possible-to-add-non-clickable-event/#post-7374773)
 * You could use [Conditional placeholders](http://wp-events-plugin.com/documentation/conditional-placeholders/)
   to decide whether to have a link or not.
 * Depending on how you run your bookings, you could just have the link on bookable
   events or if a particular category or tag is set. An idea to show links when 
   bookings are enabled for an event is:
    `{has_bookings}#_EVENTLINK{/has_bookings}{
   no_bookings}#_EVENTNAME{/no_bookings}`

Viewing 7 replies - 1 through 7 (of 7 total)