Terence Eden
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Stickers] Underscore between icons with custom HTMLYou need to use the CSS
text-decoration: none;to remove the underline. Here’s the full code that I use.<div style="line-height: 0;"> {$stickers_start}<a href="{$sticker_url}" target="_blank" title="{$sticker_name}" style="margin-right: -5px;text-decoration: none;">{$sticker_img_64}</a>{$stickers_end} </div>Forum: Plugins
In reply to: [Social Stickers] Underscore between icons with custom HTMLI’m having the same problem on https://shkspr.mobi/blog/
I’ve fixed some of it with CSS, but if you’ve got an official patch, that would be great π
Forum: Plugins
In reply to: [OSM - OpenStreetMap] Syntax ErrorSorry for the delay. The OSM shortcode is
[osm_map lat="51.745" lon="-1.262" zoom="10" width="600" height="450" marker="51.75353,-1.25342" marker_name="wpttemp-green.png" import="exif_m"]This generates the code
var ll = new OpenLayers.LonLat(,).transform(map_1.displayProjection, map_1.projection);var feature = new OpenLayers.Feature(MarkerLayer, ll, data);feature.closeBox = true;feature.popupClass = OpenLayers.Class(OpenLayers.Popup.FramedCloud, {"autoSize": true, minSize: new OpenLayers.Size(310,227),"keepInMap": true } );feature.data.popupContentHTML = "<img width=\"290\" height=\"217\" src=\"http://shkspr.mobi/blog/wp-content/uploads/2014/06/IMG_20140625_194228-290x217.jpg\" class=\"attachment-thumbnail\" alt=\"IMG_20140625_194228\" data-attachment-id=\"10599\" data-orig-file=\"http://shkspr.mobi/blog/wp-content/uploads/2014/06/IMG_20140625_194228.jpg\" data-orig-size=\"4128,3096\" data-comments-opened=\"1\" data-image-meta=\"{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":""}\" data-image-title=\"IMG_20140625_194228\" data-image-description=\"\" data-medium-file=\"http://shkspr.mobi/blog/wp-content/uploads/2014/06/IMG_20140625_194228-300x225.jpg\" data-large-file=\"http://shkspr.mobi/blog/wp-content/uploads/2014/06/IMG_20140625_194228-1024x768.jpg\" />";feature.data.overflow = "hidden";var marker = new OpenLayers.Marker(ll,data.icon.clone());marker.feature = feature;marker.events.register("mousedown", feature, osm_map_1MarkerPopUpClick);MarkerLayer.addMarker(marker);map_1.addPopup(feature.createPopup(feature.closeBox));var MarkerLayer = new OpenLayers.Layer.Markers("Marker");map_1.addLayer(MarkerLayer);Forum: Plugins
In reply to: [OSM - OpenStreetMap] Syntax ErrorWell, I’ve partially solved it π
In
osm-oljs2.phpchangeFrom:
$Layer .= 'var ll = new OpenLayers.LonLat('.$a_MarkerArray[$row][lon].','.$a_MarkerArray[To:
$Layer .= 'var ll = new OpenLayers.LonLat('.$a_MarkerArray[$row][lon].'\',\''.$a_MarkerArray[I’m now getting a different set of errors, but at least the map is displaying!
Forum: Plugins
In reply to: [OSM - OpenStreetMap] Syntax ErrorLooking further into it, the error appears to be
var ll = new OpenLayers.LonLat(,).transform(map_1.displayProjection, map_1.projection);“Unexpected ‘,’.”
Forum: Plugins
In reply to: [Jetpack Post Views] Bug Fix: title attribute not escapedErrr,
htmlspecialcharsI mean πForum: Themes and Templates
In reply to: [Montezuma] Doesn't Work Without JavaScriptAdd the following to your custom CSS
body { opacity: 1; } .post-thumb img { opacity: 1; }Seems really odd that the default won’t display at all. Oh well.
Forum: Plugins
In reply to: JetPack Custom Share Button – errorAny help? I’ve reinstalled WordPress, uninstalled and reinstalled JetPack – but it’s still not working.
Forum: Fixing WordPress
In reply to: Changing pretty permalinks without 404'ing old links?I found this plugin http://wordpress.org/extend/plugins/advanced-permalinks/
I changed the old structure and created a redirect for it. Very easy to use.
Forum: Plugins
In reply to: [Plugin: WordPress Mobile Edition] Not Compatible With BlackBerry OS 5.0?Hi,
I’m one of the developers of the WordPress Mobile Pack (a different plugin). http://wordpress.org/tags/wordpress-mobile-packI’ve tested it on BlackBerry OS 5.0 (Bold and Storm) and it works fine.
You can switch to WPMP if you need BlackBerry support.
T