ankurk91
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Map] Google Map not displayLearn how to report issues first.
None of your line above were helpful to re-poroduce the issue.I don’t care if this plugins does not work with them X.
I have already abondended the plugin.
Feel free to modify the source.
Forum: Plugins
In reply to: [Prism Syntax Highlighter] Update the plugin please :-)This plugin is dead, feel free to fork it, update it, re-release it with a new name.
Forum: Plugins
In reply to: [Prism Syntax Highlighter] Put Prism in tabsI wish that we could make everything out of plugins.
WordPress ecosystem is already a mess.Feel free to modify the source code, you have full freedom to display the content as you want.
Forum: Plugins
In reply to: [Google Map] GDPRIt is using Google Map service. I don’t is collecting any user data.
This plugin itself does not collect any data.
You can go through the source code.Forum: Plugins
In reply to: [Google Map] No longer maintainedIt does not meant that it is available for sale.
Forum: Plugins
In reply to: [Google Map] include direct in php?Forum: Plugins
In reply to: [Google Map] Doesn’t work on desktop@lunalamers
This seems to be a CSS issue.
Checkout this GIF
https://ibb.co/dfBr1bCheck your CSS media query.
Forum: Plugins
In reply to: [Google Map] Doesn’t work on desktopDo you see any errors on page or console?
Can you share the url of site if it is public?Forum: Reviews
In reply to: [Google Map] Simple and easy to use@nbagonoc
It is hard to pack all styles along with plugin.
You can add your own styles via hooks.Do read –
https://github.com/ankurk91/wp-google-map/wiki/How-to-add-your-own-stylesForum: Plugins
In reply to: [Google Analytics Simplified] Outgoing link events have value 0This should be fixed in v1.4.1.
Now sending 1 as value.Forum: Plugins
In reply to: [Google Map] KML FileSorry this feature is not supported.
Forum: Plugins
In reply to: [Google Map] marker as link?Add a infowindow to that marker, infowindow can contain links.
As far as i know this plugin does not have such feature.
I am not sure if i understand your issue.
Next time try to elaborate with examples.Thanks.
Forum: Reviews
In reply to: [Google Analytics Simplified] Very simple and light.Thanks for the review
Forum: Plugins
In reply to: [Google Map] Multiple Markers on the same map?Hi,
@drazonCurrently, this plugin does not support this feature.
But if you want to hard code them, you do by adding some js code to your footer.php
window.addEventListener('agm.loaded', function (e) { // add new marker on map new google.maps.Marker({ position: new google.maps.LatLng('Add-Latitude-here', 'Add-Longitude-here'), map: window.AGM.map, optimized: false, title: 'Your marker title goes here', //icon: 'optional-icon-file-url.png' }); }, false);