Yan
Forum Replies Created
-
Perfect, that’s exactly what I needed. Thank you !!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Month picker errorHello,
you can find the solution here :https://ww.wp.xz.cn/support/topic/bug-with-month-title-on-calendar-in-french/
Hello,
in events-manager/includes/js/events-manager.jslines 3564 and 3565, replace :
let month_real_value = monthpicker.val() + ‘-01’;
fp.setDate( new Date( month_real_value ) );with :
let iso = monthpicker.data(‘machineValue’) || monthpicker.data(‘machine-value’) || monthpicker.attr(‘value’) || ”;
if (iso && /^\d{4}-\d{2}$/.test(iso)) fp.setDate(new Date(+iso.slice(0,4), iso.slice(5,7)-1, 1));This worked for me.
Additionally you should also apply the same change in events-manager/includes/js/src/parts/calendar.js lines 141 and 142 but it is optional.
And you can update the version number in events-manager/events-manager.php (It’s optional as well)That’s it, I managed to find more or less my original display. I added the following css
.em.em-list {
grid-gap: 0;
display: contents;
}
.em.pixelbones hr {
margin-top: 15px !important;
margin-bottom: 25px !important;
}Thank you very much for your help, I couldn’t have done it without you
It doesn’t work.
But on the line :<div em-events-list-grouped-70725378 class="em pixelbones em-list em-events-list em-events-list-grouped size-large">if I remove the “em” in class :
<div em-events-list-grouped-70725378 class="pixelbones em-list em-events-list em-events-list-grouped size-large"It’s good !
I tried to customize the CSS with :.em {
grid-gap: 0;
}But it doesn’t work
For the settings, where can I check ? Where can I change the em-events-list-grouped appearance ?
On my web page, I put this code :
[events_list_grouped mode="monthly" orderby="event_start_date" order="ASC"]<strong> #_EVENTNAME</strong>, #_EVENTDATES{has_time}, #_EVENTTIMES{/has_time} <a href="#_EVENTURL"> </a>
<hr />
[/events_list_grouped]- This reply was modified 1 year, 3 months ago by Yan.
I tried from another browser, not connected and it works
Damn.
I copied the code that appears in Firefox. We definitely see a difference.
In version 6.6.4 it adds two divs with classes “em-view-xxxx” and “em-events-list-grouped-xxxx” and a lot of <p>6.6.3 :
layout : https://ibb.co/NdJ0h3QJ
code : https://ibb.co/5gFBCpWZ6.6.4 :
layout : https://ibb.co/Z96NZdP
code : https://ibb.co/1YfthY1RLooks like a big change for a small version jump
The server is not connected to the Internet.
Can I provide you with screenshots?Forum: Plugins
In reply to: [OSMapper] difference between osmapper & openstreetmap.org displaysHi,
With the update came a new color scheme.. just the one I was nedeed.
Thank you !!