Zetona
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Linking the Titles of a Product List to their category?Thank you very much @rainfallnixfig
Will try this now ??Forum: Plugins
In reply to: [WordPress Hide Posts] Warning: Parameter 2 …I fixed it by updating to php8 and back to 7.4 ??
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Changing the DSGVO Button TextThank you very much @stevendebeer
This worked nicely.Forum: Fixing WordPress
In reply to: Embeding the new Apple Maps Mapkit Jsyes, i had to empty it several times just now before it showed the annotaton!
Thank you, now its working ??Forum: Fixing WordPress
In reply to: Embeding the new Apple Maps Mapkit JsThank you Matt.
i have exchanged this but the annotation still doesnt show.
Can you please have a look now and see what could be the problem?Forum: Fixing WordPress
In reply to: Embeding the new Apple Maps Mapkit Jsyes, here it is : https://privnote.com/HnI1tVvG#LX6Wqaoj0
Forum: Fixing WordPress
In reply to: Embeding the new Apple Maps Mapkit JsThank you Matt!
Im hoping to see your plugin in the Wp repo anytime ??
I dont see the marker on the map yet, can you please have a look at my code?
This is what i have in /inc/maps.js
I just removed the script tag and pasted apples code into yours.
I would like to have only one annotation, but when i removed one (Work) the map didnt display anmore.document.addEventListener("DOMContentLoaded", function(event) { mapkit_vars; mapkit.init({ authorizationCallback: function(done) { done(mapkit_vars.mapkit_jwt_token); } }); var lat = 44.808655; var lon = 20.432128; var WordCamp = new mapkit.CoordinateRegion( new mapkit.Coordinate(lat , lon), new mapkit.CoordinateSpan(0.005, 0.005) ); var map = new mapkit.Map("map"); map.region = WordCamp; var MarkerAnnotation = mapkit.MarkerAnnotation, clickAnnotation; var home = new mapkit.Coordinate(37.722319, -122.434979), work = new mapkit.Coordinate(37.3349, -122.0090201); mapkit.init({ authorizationCallback: function(done) { var xhr = new XMLHttpRequest(); xhr.open("GET", "/services/jwt"); xhr.addEventListener("load", function() { done(this.responseText); }); xhr.send(); } }); var map = new mapkit.Map("map"); // Setting properties on creation: var homeAnnotation = new MarkerAnnotation(home, { color: "#4eabe9", title: "Home", glyphText: "??" }); // Setting properties after creation: var workAnnotation = new MarkerAnnotation(work); workAnnotation.color = "#969696"; workAnnotation.title = "Work"; workAnnotation.subtitle = "Apple Park"; workAnnotation.selected = "true"; workAnnotation.glyphText = "?"; // Add and show both annotations on the map map.showItems([homeAnnotation, workAnnotation]); // Drop an annotation where a Shift-click is detected: map.element.addEventListener("click", function(event) { if(!event.shiftKey) { return; } if(clickAnnotation) { map.removeAnnotation(clickAnnotation); } var coordinate = map.convertPointOnPageToCoordinate(new DOMPoint(event.pageX, event.pageY)); clickAnnotation = new MarkerAnnotation(coordinate, { title: "Click!", color: "#c969e0" }); map.addAnnotation(clickAnnotation); }); });
Forum: Fixing WordPress
In reply to: Embeding the new Apple Maps Mapkit JsMatt, i got the map to work thanks to your plugin.
We would need 2 additional elements:
A marker, ideally with a custom graphic
A “get directions” buttonIs that already possible or do i have to wait for the update of your plugin?
Thank you
Forum: Fixing WordPress
In reply to: Embeding the new Apple Maps Mapkit JsThank you Matt!
I will try your plugin, this helps me heaps.Forum: Plugins
In reply to: [Particle Background WP] Conflict with Contact Form 7Instead its showing: [contact-form-7 404 “Not Found”]
Forum: Plugins
In reply to: [WP Featherlight - A Simple jQuery Lightbox] Open Gallery from single image?Thank you Robert!
It looks quite simple, i assume i have to use the html instead of the shortcode, right?
Open element in lightbox
<div id=”mylightbox”>This div will be opened in a lightbox</div>how can i add a gallery into the div #mylightbox?
and another question is how open the gallery in the lightbox onfirst click?Forum: Plugins
In reply to: [WP FullPage] Scroll Problem: Same as othersI dont understand what you mean by “homepage is not scrolling”
Did you try to add several sections to the homepage (that is a fullpage) ?
Then you can scroll thru the sections, i think thats the intended behavior of Fullpage.Forum: Plugins
In reply to: [WP FullPage] just a blank screenYou might wanna get familiar with the layer structure of this plugin, then it all makes a bit more sense.
The Fullpage is the upper element in wich you can add sections.
And each section can have multiple slides.
You can use sections and slides to archive vertical and horizontal scrolling.Forum: Plugins
In reply to: [WP FullPage] Reorder sections doenst work?This is easier than you might think, just use drag and drop to reorder the items.
The IDs are there just for reference, they have nothing to do with the ordering.Forum: Plugins
In reply to: [Owl Carousel] Add navigation arrowsAwesome! Thank you very much @dekigk ??