Title: https WordPress site
Last modified: August 22, 2016

---

# https WordPress site

 *  Resolved [webbersky](https://wordpress.org/support/users/webbersky/)
 * (@webbersky)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/https-wordpress-site/)
 * Had to download [http://cdn.jquerytools.org/1.2.7/tiny/jquery.tools.min.js](http://cdn.jquerytools.org/1.2.7/tiny/jquery.tools.min.js)
   
   and place in my site as the site is not https secure.
 * Line 87 in plugin.php
    ‘url’ => ‘[http://cdn.jquerytools.org/1.2.7/tiny/jquery.tools.min.js&#8217](http://cdn.jquerytools.org/1.2.7/tiny/jquery.tools.min.js&#8217);,
 * had to change to
 * ‘url’ => get_stylesheet_directory_uri() . ‘/js/jquery.tools.min.js’,
 * otherwise the script wouldn’t load.
 * [https://wordpress.org/plugins/arconix-shortcodes/](https://wordpress.org/plugins/arconix-shortcodes/)

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

 *  Plugin Author [John Gardner](https://wordpress.org/support/users/jgardner03/)
 * (@jgardner03)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/https-wordpress-site/#post-5299858)
 * Hi,
 * Thanks for using my plugin. Even easier than editing the plugin (a change which
   you’ll have to make each time the plugin is updated in the future) is to add 
   a filter.
 * Download the javascript file and save it in the root of your theme’s folder. 
   Then add the following to your theme’s `functions.php` file.
 *     ```
       add_filter( 'arconix_jquerytools_reg', 'my_jquerytools_reg' );
       function my_jquerytools_reg( $args ) {
           $args['url'] = get_stylesheet_directory_uri() . '/jquery.tools.min.js';
           return $args;
       }
       ```
   
 *  Thread Starter [webbersky](https://wordpress.org/support/users/webbersky/)
 * (@webbersky)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/https-wordpress-site/#post-5299958)
 * Didn’t think of that, thanks (:

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

The topic ‘https WordPress site’ is closed to new replies.

 * ![](https://ps.w.org/arconix-shortcodes/assets/icon-256x256.jpg?rev=2951512)
 * [Arconix Shortcodes](https://wordpress.org/plugins/arconix-shortcodes/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/arconix-shortcodes/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/arconix-shortcodes/)
 * [Active Topics](https://wordpress.org/support/plugin/arconix-shortcodes/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/arconix-shortcodes/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/arconix-shortcodes/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [webbersky](https://wordpress.org/support/users/webbersky/)
 * Last activity: [11 years, 8 months ago](https://wordpress.org/support/topic/https-wordpress-site/#post-5299958)
 * Status: resolved