DA2206
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] 2 suggestions for TablePressHi,
Also having the same problem here with the sorting on the front end but with simple numbers and currencies.
For example I have records with values of ’87 kg’, ‘700 kg’ and ‘104 kg’.
When I sort it becomes:
’87 kg’
‘700 kg’
‘104 kg’It would be great if the first part before any punctuation or space was checked to see if it was a number and if so sort as if it was a number column.
Many thanks,
Dan
Forum: Fixing WordPress
In reply to: Jquery tab issueHi,
I’m using Tersus theme.
Thanks,
Dan
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] Gray Box where map should beHi,
Could you post the shortcode you are using? It looks like one of the arguments is missing for the marker list.
Many thanks,
Dan
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] Edit existing marker / locationsHi,
The shortcode should contain the list of your addresses, each seperated by a pipe character. You should be able to simply look through the shortcode and find the address you want to change?
Apologies if i misunderstand.
Dan
Hi,
This should be possible if you go to comprehensive-google-map-plugin\assets\js\cgmp.framework.js and look for a function called ‘buildBubble’.
At the end of this function, comment out the line that reads ‘
return {bubbleHolderId : randomNumber, bubbleContent: bubble};‘, so this no longer returns the bubble.HTH,
Dan
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] Map partially shownHi,
Is your map inside a jquery tab? If so take a look in your theme’s css for a class called:
.ui-tabs .ui-tabs-hideIf you alter the css here to be:
.ui-tabs .ui-tabs-hide{ display: block !important; position: absolute !important; left: -10000px !important; top: -10000px !important; }See if that helps? Worked for me.
Many thanks,
Dan
Forum: Plugins
In reply to: [Comprehensive Google Map Plugin] where to change code for bubble?Hi candy,
My version is one or two out of date, but you should be able to find it if you search for the function ‘buildBubble’ in the javascript file located at: \assets\js\cgmp.framework.js.
Let me know if you can’t find it.
Many thanks,
Dan
Hi,
Did you just enter the keyword and then click on the ‘Page Analysis’ tab?
Just wondering as i was having this same issue until i saved the draft/updated the post. Then this worked as intended for me.
Let me know,
Dan
Hi,
I have a database with the latitudes and longitudes of locations. I pass these to the plugin in a list through the shortcode and it displays the tooltips with the latitudes and longitudes. The record in the database that contains these latitudes and longitudes also contains the place name.
It would be useful if anyone reading this knew how to effectively get the place name where latitude and longitude in the database = the latitude and longitude of the map marker, and display this place name as the tooltip.
Aside from this, Mark, if you go to the file ‘\comprehensive-google-map-plugin\assets\js\cgmp.framework.js’ and locate the function ‘function instrumentMarker(point, element)’, inside this you should be able to set the ‘title:’ to be “”. Effectively a blank string that will cause the tooltip not to show.
Of course, if you are using this as your only map on the site then you can edit the ‘title:’ and ‘content:’ lines to read the following:
title: "PORTENTA Limited", content: "Unit 270<br/>88 Lower Marsh<br/>Waterloo<br/>London<br/>SE1 7AB",Let me know if this helps.
Dan
Forum: Fixing WordPress
In reply to: Adding shortcode each time php loopsWorks perfectly, thank you for your help.