Bug report – “Add Panorama” Button
-
I found a small issue where the admin Add Panorama button has a span that stretches to cover other media buttons above the WYSIWIG Editor. I’ve tracked down the issue to the class-easy-panorama-admin.php.
CURRENT CODE:
public function addPanoramaButton() { echo '<span id="insert-panorama" class="button insert-panorama"><span class="dashicons dashicons-camera" style="color:#82878c; vertical-align:text-top;"></span> ' . __('Add Panorama', $this->plugin_name) . '</a>'; }
SHOULD BE:
public function addPanoramaButton() { echo '<a id="insert-panorama" class="button insert-panorama"><span class="dashicons dashicons-camera" style="color:#82878c; vertical-align:text-top;"></span> ' . __('Add Panorama', $this->plugin_name) . '</a>'; }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Bug report – “Add Panorama” Button’ is closed to new replies.