John
Forum Replies Created
-
Forum: Plugins
In reply to: [Stachethemes Event Calendar Lite] BookingsSo aare bookings part of the premium version?
No reply. Support has gone pro only.
Simple css issue, this worked for me:
`
selector .em-event-add-to-calendar {
background-color: #fff;
color: #000;
padding: 0px;
font-size: 16px;
border: none;
font-weight: 700;
font-family: quicksand;
}
selector .elementor-shortcode {
position: relative;
display: inline-block;
}
selector .em-event-add-to-calendar-content {
display: none;
position: absolute;
background-color: #fff;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
right: 10px;
border-radius: 5px;
}
selector .em-event-add-to-calendar-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
font-family: quicksand;
font-weight: 600;
}
selector .em-event-add-to-calendar-content a:hover {background-color: #fff;
}
selector .elementor-shortcode:hover .em-event-add-to-calendar-content {display: block;
}
selector .elementor-shortcode:hover .em-event-add-to-calendar {background-color: #fff;}
selector .tippy-box[data-theme~=light-border] {
border: 0px solid #fff;
}Thanks, I’ll keep an eye on things.
Plus, do you have an ‘all time’ view on the dashboard, or is it a year max?
Thanks, that would work on individual posts, but I do like your dashboard. Sounds like the only way is to refresh the page hundreds of times!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Meta keysThanks for that.
Forum: Fixing WordPress
In reply to: Custom post and comments not closingThanks very much, that’s completely clear. I’ll paste the snippet into code snippets.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Timestamp?Crocoblock came up with sql query like this:
SELECT *
FROM {prefix}posts AS posts
INNER JOIN wp_em_events AS events ON posts.ID = events.post_id
INNER JOIN wp_term_relationships AS term_relationship ON term_relationship.object_id = posts.ID
WHERE posts.post_type = 'event'
AND term_relationship.term_taxonomy_id = 161
AND posts.post_status = 'publish'
AND events.event_start_date >= CURDATE()This give a list of events that can be used in a jetengine widget, the event start date is greater than or equal to today, and in this case the list is restricted one event category.
Forum: Fixing WordPress
In reply to: Custom post and comments not closingThanks for getting back to me. I’m not clear what you mean. As well as creating the post type (with plugin) I need to do more?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Timestamp?Thanks for replying, but I don’t understand what the page you link to is telling me to do.
Crocoblock say that the Jetengine query builder will ignore past events if _event_start_date is stored as a timestamp. The meta query clause asks what type of data is stored in the meta field. ‘Date’ is an option but it doesn’t seem to work – past events are displayed. I’ll reply to Crocoblock, tell them the data type is ‘date’ and let you know what they say.
Forum: Plugins
In reply to: [Modern Footnotes] [mfn_list] and elementorThanks for that, great that you’re looking into it.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] AccordionThanks, but I’ve discovered <details>. If you put something like this in the default event list format settings it works well
<details> <summary class="event-details">#_EVENTNAME</summary> <section> <div class="em-item-meta-line em-event-date em-event-meta-datetime"> <span class="em-icon-calendar em-icon"></span> #_EVENTDATES <span class="em-icon-clock em-icon"></span> #_EVENTTIMES?? </div> #_EVENTADDTOCALENDAR </section> <section class="em-event-content"> #_EVENTNOTES </section> </details>
Apologies, caused by conflict with another plugin.
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Can’t get rid of imagesthanks