Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter somethumb

    (@somethumb)

    One more item, in adrotate-ads-edit.php there is a constant for WP_PLUGIN_URL which is deprecated. The new way is to use the function plugins_url()

    So line 25 should not be: wp_enqueue_script(‘uploader-hook’, WP_PLUGIN_URL.’/’.ADROTATE_FOLDER.’/library/uploader-hook.js’, array(‘jquery’));

    It should be: wp_enqueue_script(‘uploader-hook’, plugins_url().’/’.ADROTATE_FOLDER.’/library/uploader-hook.js’, array(‘jquery’));

    That will solve the mixed content issue.

    Plugin Author Arnan de Gans

    (@adegans)

    I’ll have a look and make changes where required. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Mixed Content’ is closed to new replies.