e3mobile
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Geo] Map Zoomin to Default CoordinatesHi Ben,
Great, will look into this and go from there..
Many thanks for your help – brilliant plugin ??
Forum: Plugins
In reply to: [WP Geo] Map Zoomin to Default CoordinatesHi Ben,
Many thanks for your reply.
Oh that’s a shame, is there anyway it could be done, i.e. can the plugin be extended to do so?
Forum: Plugins
In reply to: [WP Geo] Map Zoomin to Default CoordinatesIssue resolved…. tired eyes….
Just a quick question – is it possible to use this plugin to be able to get a persons location and then provide them with directions to a specific marker :o)
Forum: Fixing WordPress
In reply to: Posting ProblemHi Pioneer,
Many thanks for your help, I gave what you suggested a try and I’m still getting the same problem. The error log ran into 30.4GB so I’ve removed this and started a fresh error log to see if I can identify the issue that way.
I’ve also made contact with my hosting provider to see if it is something their end.
Any other suggestions would be greatly appreciated.
Forum: Fixing WordPress
In reply to: Posting ProblemHi Pioneer,
I’ve just tried this and the same problem occurs…
Forum: Plugins
In reply to: [Sharebar] Error with WordPress 3.5Hi All,
I had the same problem, I have a quick fix, not sure if its the right way but it seems to of worked for me. Edit the following file, sharebar.php
On Lines 112 and 124, change the following lines of code from this:
Line 112
$results =$wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."sharebar WHERE enabled=1 ORDER BY position, id ASC")); $str .= "\n";
to this
$results =$wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."sharebar WHERE enabled=1 ORDER BY position, id ASC", null)); $str .= "\n";
Line 124
From this
` $results = $wpdb->get_results($wpdb->prepare(“SELECT * FROM “.$wpdb->prefix.”sharebar WHERE enabled=1 ORDER BY position, id ASC”)); $str .= “\n”;
`to this
$results = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."sharebar WHERE enabled=1 ORDER BY position, id ASC", null)); $str .= "\n";
You may or may not need to edit line 124 depending on your position…as I say its a quick fix and its worked for me… hope this helps someone…