jukooz
Forum Replies Created
-
EDIT: I tried everything yesterday and nothing worked. Today all is working. Have no idea what was the problem, but it’s fixed now. Thank you for responding.
Plugin doesn’t save any changes in settings that I tried including adding API key or disabling maps. When I insert API key and click “save changes” API key is not saved. The same with any other setting I tried. All the other wordpress settings work without problem, other plugins as well. I suspect it might be problem with database tables with Events Manager settings not being copied – is it possible?I don’t see any error messages (besides Oops… on my maps, but it won’t work without an API key).
If I uninstall plugin and then install it again will I loose my events data (which where migrated BTW).
- This reply was modified 9 years, 8 months ago by jukooz.
Had the same problem. Rolled back to 1.9.13 for now
Had the same problem. Rolled back to 1.9.13 for now
Maybe you use some minifier or W3 Total Cache?
Check this threadForum: Fixing WordPress
In reply to: [Comprehensive Google Map Plugin] W3 Total CacheI have the same problem but turning off JS Minify is not enough :/ I have to disable Minify on HTML & XML and JS.
Does anyone know good Google Maps plugin compatible with W3 Total Cache?
Another error I have on third website (don’t know if it’s becouse of your plugin or the other):
Plugin could not be activated because it triggered a fatal error. Fatal error: Cannot redeclare my_admin_scripts() (previously declared in /home/ble/public_html/ble.com/wp-content/plugins/easing-slider/easingslider.php:13) in /home/ble/public_html/ble.com/wp-content/plugins/wp-google-maps/wpGoogleMaps.php on line 1065It stopped working for me after update (no maps on plugin admin menu and no possibility to create one, map from website disappeared). I had to deactivate and activate again to make it working (on both 2 websites that I’m using your plugin, maps reappeared). But it’s working after doing so. Writing just so you know.
Forum: Plugins
In reply to: [Mobile Domain] [Plugin: Mobile Domain] Can you whitelist URLs?I tried MobileESP but it didn’t recognize my Android phone with Dolphin HD browser so I passed on it.
Forum: Plugins
In reply to: [Mobile Domain] [Plugin: Mobile Domain] Can you whitelist URLs?I ended up using Tera-WURFL. I was planning it but was to lazy to get to know it. It came out it was so easy… You can install it on your host or use it installed on http://wurfl.thesedays.com/
I made very universal version of my configuration, so I can pass it to someone (client’s webmaster) and give him no more than a minute of work to set redirection for me.
I add 1 line to .htaccess file:
DirectoryIndex handleRequest.php index.html index.shtml index.php index.htm default.html Default.htm default.html Default.html default.shtml Default.shtml page1.html index.pl index.cgi index.php3 index.phtml home.htm home.html home.shtml index.wmlAttach my handleRequest.php file:
<?php // Include TeraWurflRemoteClient.php require_once ('TeraWurflRemoteClient.php'); // Instantiate a new TeraWurflRemoteClient object $wurflObj = new TeraWurflRemoteClient('http://wurfl.thesedays.com/webservice.php'); // Define which capabilities you want to test for. Full list: http://wurfl.sourceforge.net/help_doc.php#product_info $capabilities = array("product_info"); // Define the response format (XML or JSON) $data_format = TeraWurflRemoteClient::$FORMAT_JSON; // Call the remote service (the first parameter is the User Agent - leave it as null to let TeraWurflRemoteClient find the user agent from the server global variable) $wurflObj->getCapabilitiesFromAgent(null, $capabilities, $data_format); // Use the results to serve the appropriate interface if ($wurflObj->getDeviceCapability("is_tablet") || !$wurflObj->getDeviceCapability("is_wireless_device") || $_GET["ver"]=="desktop") { include("index.php"); //default index file } else { header('Location: http://m.google.com/'); //where to go } ?>And attach required TeraWurflRemoteClient.php file. Just add “?ver=desktop” when linking back to desktop website and you are set 🙂
Forum: Plugins
In reply to: [Mobile Domain] [Plugin: Mobile Domain] Can you whitelist URLs?How to do it? Link to desktop version on my mobile domain doesn’t allow user to go to Desktop version. Any special url query parameters or something?
Forum: Plugins
In reply to: wordpress slider with layers?It seems that RoyalSlider is exactly what I am looking for. What I called “layers”, they call “blocks”.
EDIT: LayerSlider being another one.
Forum: Plugins
In reply to: wordpress slider with layers?I don’t have these skills either. There is always wordpress plugin for everything, but this thing doesn’t seem to be popular enough. Thank you though 🙂
Forum: Plugins
In reply to: wordpress slider with layers?I mean layers that appear one after another. On every slide on U-design website in the first sec first image slides from the left (ie monkey), then another image slides from the left (large font text) and then HTML content slides from the right (text with button). And there is 3 such a layers on every slide – image, image, html content.
Forum: Plugins
In reply to: wordpress slider with layers?Thank you, is it possible to have 3 layers on every slide with this slider? In the examples I don’t see any with 2 layers.
So javascript is the thing here? If a visitor’s browser support javascript, he’ll see the links, if not he won’t?