splaquet
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Forms] Accessibility Compliance: iframe Missing TitleOMG! I sincerely apologize. I made an assumption and was totally wrong. This is actually for a third-party tracking pixel embed.
I’m running php8.3.
I did a complete troubleshooting test in my dev environment. I can recreate the problem with 2025 theme and no other plugins installed. …but, I’m still able to use it on another site of mine, so rather odd.
Also, it works as expected with any previous version.
Am I reading these other posts correctly, in that it’s the way the connection is made from the user and the API? I must be misunderstanding that…
- This reply was modified 5 months, 2 weeks ago by splaquet.
Forum: Plugins
In reply to: [Modern Image Formats] Convert entire image libraryregenerate all of your images. that should do it. use this wp-cli command and make easy work of it:
wp media regenerate --yesForum: Plugins
In reply to: [Advanced Members for ACF] Fatal Error on Settings > Discussion pageI also just discovered that if you add the User Email or User Bio field to a CPT, they aren’t saving content in the backend. Although, they do appear to be saving content as expected on the front end.
I realize this solution doesn’t necessarily work for your multi-example demo page, but hopefully this can help anyone else working with responsive size issues.
I reverse-engineered what I was trying to do. rather than trying to load a second map for mobile, I ended up loading a different [leaflet-map] shortcode based upon screensize.
here’s the code:
<?php
function my_responsive_shortcode_function() {
if ( wp_is_mobile() ) {
return do_shortcode('[mobile_specific_shortcode]');
} else {
return do_shortcode('[desktop_specific_shortcode]');
}
}
add_shortcode('my_responsive_shortcode', 'my_responsive_shortcode_function');
?>if I’m trying to load 2 maps, one with
[leaflet-map width="100%" address="Memphis, tn" zoom=5]and the other with
[leaflet-map width="100%" address="Louisville, KY" zoom=4]how can I load multiple maps like on your demo/example pages?
ex: https://leafext.de/en/hover/marker/is it that the bezier code can only be loaded once on the page?
Forum: Plugins
In reply to: [Extensions for Leaflet Map] ACF & OverviewMapThank you! The Nested Shortcodes plugin still works and is exactly what I was looking for 😊
Forum: Plugins
In reply to: [Extensions for Leaflet Map] ACF & OverviewMapunderstood… and that’s kind of what I assume.
but to confirm, there is the capability of creating HTML content in an ACF field and having that populate the marker popup?
is there any method of inserting a shortcode within the leaflet shortcode?
Forum: Plugins
In reply to: [Extensions for Leaflet Map] breaking icons / fontawesomenice! yes, that option removes the NO GLYPH boxes.
Forum: Plugins
In reply to: [Extensions for Leaflet Map] breaking icons / fontawesomeI made a mistake… remarking those lines DID remove the NO GLYPH icons. (I erroneously removed them from Leaflet plugin, not Extensions plugin 😕)
Forum: Plugins
In reply to: [Extensions for Leaflet Map] breaking icons / fontawesomeI remarked those 3 lines, but the NO GLYPH icon still exists.
I apologize on the delay. I missed your initial reply and hadn’t checked back again until Monday.
I kind of inherited this project. with that being said, I’m still working on cleaning up/consolidating a lot of the scripts, css, etc. I just discovered a few old FontAwesome libraries being loaded through a Code insert plugin. I’m going to take a look at their Child theme files… and maybe I can find a few more being side loaded.
Forum: Plugins
In reply to: [Extensions for Leaflet Map] Extended Functionality – Route Map lineswow, just wow. nice work, mate! I hope that others are able to benefit from the effort that you put into this. honestly, I think it’s even nicer than the original author had hoped for!
I look forward to sharing my completed page with you, once it’s live and out of my local build environment.
Forum: Plugins
In reply to: [Extensions for Leaflet Map] Extended Functionality – Route Map linesmy apologies! I wasn’t very clear… I was looking at the leaflet.bezier demo files and noticed the LEFT/RIGHT options. that’s what I was referring to.
my thought was that another tag could decide the flow, like slide=”LEFT_ROUND”
https://github.com/lifeeka/leaflet.bezier/blob/master/demo/demo.js
https://github.com/lifeeka/leaflet.bezier/blob/master/demo/demo.gif

- This reply was modified 10 months ago by splaquet. Reason: trying to get the .gif to display
Forum: Plugins
In reply to: [Extensions for Leaflet Map] Extended Functionality – Route Map linesI was looking through the bezier code. looks like it might be these left_round/right_round commands that allow control, but I haven’t been able to find the source of those calls.
your code mod:
getMidPoint: function getMidPoint(from, to, deep) {
var round_side = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : ‘LEFT_ROUND’;
var offset = 3.14;
var latlngs = [];if (round_side === ‘RIGHT_ROUND’) {
offset = offset * -1;
}original:
L.bezier({
path: [
[
{lat: 7.8731, lng: 80.7718, slide: ‘RIGHT_ROUND’},//Sri Lanka
{lat: -25.2744, lng: 133.7751, slide: ‘LEFT_ROUND’},//Australia
{lat: 36.2048, lng: 138.2529}//Japan- This reply was modified 10 months ago by splaquet.
Forum: Plugins
In reply to: [Extensions for Leaflet Map] Extended Functionality – Route Map linesWOW! that’s amazing, mate! nice work 😃
I was having blank map issues because I didn’t notice that you had moved the plugin folder into the uploads folder. it popped right up once I put everything in their updated locations.
so, out of curiosity, is there anything that impacts the logic behind what curves up vs curves down? I looked through your code, but didn’t notice anything.
https://www.icloud.com/iclouddrive/0a8ReKwTiTFb6b40SL1uUyY5Q#lower48flights
- This reply was modified 10 months ago by splaquet.