Title: [Plugin: QR Code Tag] not compatible with SSL / HTTPS
Last modified: August 20, 2016

---

# [Plugin: QR Code Tag] not compatible with SSL / HTTPS

 *  [Clifford Paulick](https://wordpress.org/support/users/cliffpaulick/)
 * (@cliffpaulick)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-qr-code-tag-not-compatible-with-ssl-https/)
 * Here are the scripts from the VIEW SOURCE of my wp-admin login page:
 *     ```
       <script type='text/javascript' src='wp-includes/js/...'></script>
       <script type='text/javascript' src='wp-includes/js/jquery/...'></script>
       <script type='text/javascript' src='http://....com/wp-content/plugins/qr-code-tag/js/jquery.tooltip.min.js?ver=3.2.1'></script>
       <script type='text/javascript' src='http://....com/wp-content/plugins/qr-code-tag/js/qrct.js?ver=3.2.1'></script>
   
       <script type='text/javascript' src='wp-content/plugins/.../assets/global.js?ver=1.1'></script>
       ```
   
 * So, you see that all the other src=” are relative, and the QR Code’s src=” is
   not, since it starts with [http://domain.com/&#8230](http://domain.com/&#8230);
   instead of //domain.com/… or wp-content/plugins/…
 * Please fix. Thank you.
 * [http://wordpress.org/extend/plugins/qr-code-tag/](http://wordpress.org/extend/plugins/qr-code-tag/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [Clifford Paulick](https://wordpress.org/support/users/cliffpaulick/)
 * (@cliffpaulick)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-qr-code-tag-not-compatible-with-ssl-https/#post-2396590)
 * The enqueue’s are located in this file:
    \wp-content\plugins\qr-code-tag\lib\
   qrct\QrctWp.php -starting at Line 97
 * Here’s the code:
 *     ```
       // include javascript and css styles
               wp_enqueue_script('jquery');
               wp_enqueue_script('jquery-tooltip', $this->pluginUrl.'js/jquery.tooltip.min.js','jquery');
               wp_enqueue_script('qrcodetagging', $this->pluginUrl.'js/qrct.js','jquery-tooltip');
               wp_enqueue_style('qrcodetagging', $this->pluginUrl.'css/qrct.css');
       ```
   
 * Changing to this fixes the problem:
 *     ```
       // include javascript and css styles
               wp_enqueue_script('jquery');
               wp_enqueue_script('jquery-tooltip', plugins_url('/qr-code-tag/js/jquery.tooltip.min.js'),'jquery');
               wp_enqueue_script('qrcodetagging', plugins_url('/qr-code-tag/js/qrct.js'),'jquery-tooltip');
               wp_enqueue_style('qrcodetagging', plugins_url('/qr-code-tag/css/qrct.css'),'jquery-tooltip');
       ```
   
 * Thanks for this plugin. Please implement in next release.
 *  Thread Starter [Clifford Paulick](https://wordpress.org/support/users/cliffpaulick/)
 * (@cliffpaulick)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-qr-code-tag-not-compatible-with-ssl-https/#post-2396591)
 * FYI: There might be better ways to implement within a plugin, but that’s a fix
   for now.
 * Please also implement not loading the script unless needed – maybe checkout Jedi
   Knight way at [http://scribu.net/wordpress/optimal-script-loading.html](http://scribu.net/wordpress/optimal-script-loading.html)
 * And/Or [http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Load_scripts_only_on_plugin_pages](http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Load_scripts_only_on_plugin_pages)
 * Or any method.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: QR Code Tag] not compatible with SSL / HTTPS’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/qr-code-tag.svg)
 * [QR Code Tag](https://wordpress.org/plugins/qr-code-tag/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/qr-code-tag/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/qr-code-tag/)
 * [Active Topics](https://wordpress.org/support/plugin/qr-code-tag/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/qr-code-tag/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/qr-code-tag/reviews/)

## Tags

 * [HTTPS](https://wordpress.org/support/topic-tag/https/)
 * [SSL](https://wordpress.org/support/topic-tag/ssl/)

 * 2 replies
 * 1 participant
 * Last reply from: [Clifford Paulick](https://wordpress.org/support/users/cliffpaulick/)
 * Last activity: [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-qr-code-tag-not-compatible-with-ssl-https/#post-2396591)
 * Status: not resolved