madebymt
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How to remove \" in the URL in databaseThank you for your suggestion. I’ll look into that.
Forum: Plugins
In reply to: [Leaflet Map] Make leaflet-marker multiple visible on page load@bozdoz Sorry for the confusion, I’m trying to add new layer from your map plugin, so I can display multiple popup on page load.
Thanks for the help
Forum: Plugins
In reply to: [Leaflet Map] Make leaflet-marker multiple visible on page load@bozdoz
Sorry one more question, is anyway I can add custom javascript adding new layer from your plugin script? Looking through you github resource form:
Resource: https://github.com/bozdoz/wp-plugin-leaflet-map#frequently-asked-questionsI was trying to avoid load a new script, if plugin already have leaflet script already, and adding new layer script for the popup.
(https://leafletjs.com/download.html)var popupLocation1 = new L.LatLng(47.52933513746188 ,-120.33553489670159); var popupLocation2 = new L.LatLng(33.9239591602259,-116.22666343301536); var popupLocation1 = new L.LatLng(47.52933513746188 ,-120.33553489670159); var popupLocation2 = new L.LatLng(33.9239591602259,-116.22666343301536); var popupContent1 = '<p>NEW!<br />popup.</p>', popup1 = new L.Popup(); popup1.setLatLng(popupLocation1); popup1.setContent(popupContent1); var popupContent2 = '<p>SECOND!<br /> popup</p>', popup2 = new L.Popup(); popup2.setLatLng(popupLocation2); popup2.setContent(popupContent2); maps.addLayer(popup1).addLayer(popup2);
Thank you so much!
Forum: Plugins
In reply to: [Leaflet Map] Make leaflet-marker multiple visible on page load@bozdoz Thank you for the resource, I will look into it. Thank you so much for the quick help.
Forum: Plugins
In reply to: [Leaflet Map] Make leaflet-marker multiple visible on page loadHi @bozdoz
My shortcode look like this below, and trying achieve like this image from github
https://ibb.co/Qfn5tpz[leaflet-marker lat=33.9239591602259 lng=-115.22666343301536 visible=”true” svg background=”#000080″ iconClass=”fa fa-info-circle””]Location in Here[/leaflet-marker]
[leaflet-marker lat=50.9239591602259 lng=-115.22666343301536 visible=”true” svg background=”#000080″ iconClass=”fa fa-info-circle””]Location in Here[/leaflet-marker]
but only the first visible popup working on page load, it will show on click.
Thank you for the quick response.- This reply was modified 5 years, 7 months ago by madebymt.
I found out the problem I have with this “Shortcodes Anywhere or Everywhere” plugin, so when I disable it, the form submits and received the confirmation.
Hope that help you.Same issue here and my error message is not showing just the red border.
I can’t link to the site, because it’s lock by certain IP address, not production ready.
Forum: Fixing WordPress
In reply to: Media Library won’t load@joyously Thank you for your reply. I will try to download that to see help. I did turn on the debugger on, show a lot of theme function php error.
@shahamion3 No way for me to download or upgrade the theme, it’s a custom build one.
Thank you both so much!
Forum: Fixing WordPress
In reply to: Ajax load in function slow down page@bcworkz
Thank you so much for your help! I optimize the image, gzip and cache. I will try to see if I can do something else to make it better.Thank you!!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] relevanssi not pickup page title or content@msaari
Thank you so much for your answer! You are awesome!Forum: Fixing WordPress
In reply to: Find lot of 404 links on wp-loginI put wp-login in the robot.txt let google don’t crawl that links, then work! Thanks!
Forum: Fixing WordPress
In reply to: Find lot of 404 links on wp-loginHi @matlabprozhe1
Thank you for responding. Do you mean the client register those link to google, that why show so many 404 links error? Thanks!Forum: Fixing WordPress
In reply to: Find lot of 404 links on wp-loginThanks for @kartiks16 for your response. htaccess is default from WordPress, I disable most of the plugin still showing lof of 404 links, would it be a server memory issue?
Sorry I need to block most of the URL because it’s one of my client sites.
Here’s the image:https://imgur.com/a/11seGGG
Thanks!Forum: Fixing WordPress
In reply to: Link to custom post typeI tried to use
get_post_type_archive_link('design')
to get my CPT link, output a tag is blank.Thanks if anyone knows.