Title: Does not work after https:// upgrade&#8230;
Last modified: February 14, 2017

---

# Does not work after https:// upgrade…

 *  Resolved [laluluny](https://wordpress.org/support/users/laluluny/)
 * (@laluluny)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/)
 * Hello,
 * I just upgraded my wp-site from http:// to [https://](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/?output_format=md).
   All seems to work, just the Arconix Shortcodes do not work any longer (I do use“
   accordion” function; before everything worked perfectly).
 * Here is my sample page:
    [https://www.kunst-starter.de/kswordpress/individuelle-beratung/](https://www.kunst-starter.de/kswordpress/individuelle-beratung/)
 * Thanks in advance and regards,
    Karin

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

 *  Thread Starter [laluluny](https://wordpress.org/support/users/laluluny/)
 * (@laluluny)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8803981)
 * PS: I also upgraded to WP 4.7.2 today. Could this be the reason for Arconix Shortcodes
   not to work any longer?
 *  Plugin Author [John Gardner](https://wordpress.org/support/users/jgardner03/)
 * (@jgardner03)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8804665)
 * Hi,
 * Thanks for using my plugin. The update to v4.7.2 is unrelated. I use a 3rd party
   service to host the javascript that powers my plugin. Unfortunately they do not
   have a https version of their CDN.
 * To resolve this issue 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'] = plugins_url() . '/arconix-shortcodes/includes/jquery.tools.min.js';
           return $args;
       }
       ```
   
 * thanks
 *  Thread Starter [laluluny](https://wordpress.org/support/users/laluluny/)
 * (@laluluny)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8806548)
 * Hello John,
 * Thanks a lot for your quick reply! However, I do not yet get it to work.
    I do
   use a child theme, containing only one style.css. So I added a functions.php –
   but as soon as I do that, the whole theme crashes. No matter what the functions.
   php contains. I tried
    - identical-functions.php (same like parent theme)
    - identical-functions.php like parent theme PLUS your code
    - empty functions.php containing only your code
 * No matter what, as soon as there is a functions.php in the child-folder, the 
   whole theme crashes.
    Sorry & thanks in advance, Karin
 *  Plugin Author [John Gardner](https://wordpress.org/support/users/jgardner03/)
 * (@jgardner03)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8807925)
 * Hi Karin,
 * That’s not good. Unfortunately I can’t help much with the theme crashing, but
   while I don’t recommend it, in this case you can edit the plugin files to change
   the url.
 * If you change [line 107](https://github.com/j-gardner/arconix-shortcodes/blob/master/plugin.php#L107)
   of `plugin.php` to the following:
 *     ```
       'url' => plugins_url() . '/arconix-shortcodes/includes/jquery.tools.min.js',
       ```
   
 * it will have the same effect as the code I gave you previously without the side
   effect of crashing your theme.
    -  This reply was modified 9 years, 3 months ago by [John Gardner](https://wordpress.org/support/users/jgardner03/).
 *  Thread Starter [laluluny](https://wordpress.org/support/users/laluluny/)
 * (@laluluny)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8808622)
 * Thanks for your reply.
    Yes, I already saw, that the very same file is also present
   in the includes-folder and had played around with it before. Now I did exactly
   what you indicated, but there is no effect. I triple-checked the plugin.php file
   and yes. line 107 is a you indicated. But the accordions do not open.
 * I am not a programmer, so “debugging” is somehow unfamiliar to me. But in Chrome
   there is a debugging mode (“console”) and it comes up with the following
 * >  [https://www.kunst-starter.de/kswordpress/arconix-shortcodes/includes/jquery.tools.min.js?ver=1.2.7](https://www.kunst-starter.de/kswordpress/arconix-shortcodes/includes/jquery.tools.min.js?ver=1.2.7)
   > Failed to load resource: the server responded with a status of 404 (Not Found)
   > 
   > arconix-shortcodes.min.js:1
 * >  Uncaught TypeError: jQuery(…).tabs is not a function
   >  at HTMLDocument.<anonymous
   > > (arconix-shortcodes.min.js:1) at i (jquery.js:2) at Object.fireWith [as resolveWith](
   > jquery.js:2) at Function.ready (jquery.js:2) at HTMLDocument.K (jquery.js:2)
 * >  (unknown) Uncaught DOMException: Blocked a frame with origin “[https://s7.addthis.com&#8221](https://s7.addthis.com&#8221);
   > from accessing a cross-origin frame.
   >  at <anonymous>:1:15
 * Eventually you can interpret it? There is something not working with the arconix-
   shortcodes/includes/jquery.tools.min.js
    -  This reply was modified 9 years, 3 months ago by [laluluny](https://wordpress.org/support/users/laluluny/).
 *  Plugin Author [John Gardner](https://wordpress.org/support/users/jgardner03/)
 * (@jgardner03)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8809086)
 * Hi Karin,
 * The console is telling you the site couldn’t find arconix-shortcodes.min.js. 
   Can you send the link for the specific page where the accordions aren’t working?
   That will hopefully help me figure out how to fix the issue.
 *  Thread Starter [laluluny](https://wordpress.org/support/users/laluluny/)
 * (@laluluny)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8809114)
 * Hello John,
 * here it is: [https://www.kunst-starter.de/kswordpress/individuelle-beratung/](https://www.kunst-starter.de/kswordpress/individuelle-beratung/)
 * Regards,
    Karin
 *  Plugin Author [John Gardner](https://wordpress.org/support/users/jgardner03/)
 * (@jgardner03)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8809467)
 * I gave you bad info. Try the following for line 107
 *     ```
       'url' => $this->url . 'includes/jquery.tools.min.js',
       ```
   
 *  Thread Starter [laluluny](https://wordpress.org/support/users/laluluny/)
 * (@laluluny)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8812703)
 * Cool – that was IT! It works just fine now (as it always did before [https://](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/?output_format=md)).
   
   Thanks for you great plugin!
 * And now… let me take you out for a coffee ;-))…
 * Regards,
    Karin

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

The topic ‘Does not work after https:// upgrade…’ 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/)

## Tags

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

 * 9 replies
 * 2 participants
 * Last reply from: [laluluny](https://wordpress.org/support/users/laluluny/)
 * Last activity: [9 years, 3 months ago](https://wordpress.org/support/topic/does-not-work-after-https-upgrade/#post-8812703)
 * Status: resolved