[Plugin: WordPress Download Monitor] not compatible with SSL / HTTPS
-
functions.inc.php
Line 162
Changed from this:
<td class="value"><img src="'.$wp_dlm_root.'img/bar.png" alt="" height="16" width="0%" />0</td>
To this:
<td class="value"><img src="'.plugins_url('/download-monitor/img/bar.png').'" alt="" height="16" width="0%" />0</td>
Line 189
Changed from this:
echo '<a href="'.$url.'" class="thickbox" title="'.__('Add Download','wp-download_monitor').'"><img src="'.$wp_dlm_root.'/img/media-button-download.gif" alt="'.__('Add Download','wp-download_monitor').'"></a>';
To this:
echo '<a href="'.$url.'" class="thickbox" title="'.__('Add Download','wp-download_monitor').'"><img src="'.plugins_url('/download-monitor/img/media-button-download.gif').'" alt="'.__('Add Download','wp-download_monitor').'"></a>';
admin/dashboard.php
Line 169
From this:
<td class="value"><img src="'.$wp_dlm_root.'img/bar.png" alt="" height="16" width="'.$width.'%" />'.$hits.'</td>
To this:
<td class="value"><img src="'.plugins_url('/download-monitor/img/bar.png').'" alt="" height="16" width="'.$width.'%" />'.$hits.'</td>
Line 242
From this:
<td class="value '.$first.' '.$last.'"><img src="'.$wp_dlm_root.'img/bar.png" alt="" height="16" width="'.$width.'%" />'.$hits.'</td>
To this:
<td class="value '.$first.' '.$last.'"><img src="'.plugins_url('/download-monitor/img/bar.png').'" alt="" height="16" width="'.$width.'%" />'.$hits.'</td>
- The topic ‘[Plugin: WordPress Download Monitor] not compatible with SSL / HTTPS’ is closed to new replies.