Setsuna.16
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] elementorFrontendConfigHI,
I believe the method you shared works. Thank you soo much! The score is roughly 99 if I include elementor and it went down to 77 because the elementor js. Is there a way like to delay the elementor js but still works properly? I believe the main issue is this one: elementorFrontendConfig because it trying to call some other elementor assets but because it is being delayed it cannot find the right assets – https://imgur.com/KIliS0S
Thanks again for your help!
Forum: Plugins
In reply to: [WP Store Locator] Category DropdownHi there, I would like to know a workaround on this scenario:
Some of my colleagues or most of them the store lists is working but there are a few that having an issue loading the page. It says “No results” when they view the page. The map is located in Malaysia and I have set the location to Malaysia by default but we are here in the Philippines. This is the screenshot I got from my assciate:Thank you!
Forum: Plugins
In reply to: [WP Store Locator] Category DropdownI wrote a support ticket just now, Thanks again for helping! Cheers!
Forum: Plugins
In reply to: [WP Store Locator] Category DropdownHI there! really appreciate the help here. How about having a dropdown of PH, MY, VN then when you select a country the store will update base on the selected country? This is by far how I understand it should work however, when I try to choose a location on the dropdown categories it does not update, I think I still need to fill up the other fields and click submit.
Any workaround how can we have a dropdown category of countries and when we choose a country it should update the stores based on the selected country.
To the author of this plugin or whomever will write an answer, I was able to work out the code above. Is there a way to submit these values when AJAX is enabled on the form?
Thanks!
The form works when I tested it. Can you confirm it on your end?
Forum: Plugins
In reply to: [Trust.Reviews] Avoid an excessive DOM sizeHi There, Hoping for a response on this one. Thank you!
Forum: Plugins
In reply to: [Geolocation IP Detection] Redirect before page loadHi there, this is what we are already using but what happen is the site get to load first then redirects to the correct site. We need something that the geoip scripts will be on the header so it loads first before anything else then the redirect script. Thanks!
Forum: Plugins
In reply to: [Contact Form 7 extension for Google Map fields] Address Field UpdateBut it is possible to do that through passing the 4 address values and fire an event that the plugin is using right?
Hi, so I was able to play around and get the function that I needed. Thanks for the FAQs you provided. I’m now encountering this strange issue I think that I can call.
I have a main location. What I am doing is to get the lat() and lng() value then when I move the marker or search a new location I will gather the lat() and lng() of that new location. I combined those values (lat1(), lng1(), lat2(), lng2()) to get its distance. The issue is the distance in Meters and Kilometers seems not accurate. I’m always getting a value of 7.(what number comes). Even if the new location is far from the main location the meters and km value is incorrect.
Thanks!
is this a google map geocoder related functionality provided by the theme? Are you not able to dequeue de js file on the form page so as to stop the conflict?
Hi, unfortunately I cannot dequeue the JS file because it comes with another script that the theme is using. Thank you for the update. Appreciate much!
It would seem that another plugin/script is running with a geocode variable name clash.
– yes this is the problem. I have a theme named Bridge which uses same geocode as a variable. I can’t modify that variable since it is in the parent theme folder.
that’s a separate question, please start a new thread.
Will do now. Thank you!
Hi There, I have solved the problem by changing the const geocode to const geocode2 in the plugin JS file. Im not sure if that’s the best thing to do.
How do I initiate the map to update the clang and clat attributes when the marker has been moved to a new location? been trying to figure this out but no luck.
Thank you!
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Call the ResponsiveMenu JSHi, thanks for responding. Yes I mean I have two menus. One on the left and to the right is the responsive menu plugin. Now I have this code that if the right menu is open and I click on the left menu the right menu will close and the left will open vice versa. The problem with the code is this, I use this method:
$(‘.leftMenu’).click(function(){
$(‘.leftBox’).toggle();
if($(‘#responsive-menu-button’).hasClass(‘is-active’)){
$(‘#responsive-menu-button’).click();
}
});this closes the plugin on the right. Now on the other side I have:
$(#responsive-menu-button).click(function(){
if($(‘.leftBox’).is(:visible”)){
$(‘.leftBox’).toggle();
}
});the second method goes back to the first script and then triggers the plugin click function again. I now that the when the plugin closes it removes some classes which triggers a css transform. I check the ResponsiveMenu.init() script. There’s a function there that triggers to close the plugin nav. How can I use that? The only option I think is to remove the classes. Thanks :))
Forum: Plugins
In reply to: [BulletProof Security] 403 ForbiddenHi, sorry for replying late. Well I just deactivate the plugin and I need to study first how htaccess work before I use the plugin again. Thanks for helping me.