• Hello,

    I was just wondering if you would be adding some SSL support in a future release? It seems like in WordPress 3.8 some of the admin javascript breaks when this plugin is activated and using non-ssl links for the css and javascript in a ssl environment.

    The quick fix was to replace line 276 of wp-custom-fields-search.php,
    return WP_CONTENT_URL .'/plugins/' . dirname(plugin_basename(__FILE__) ) . '/';
    with
    return plugins_url ( '/' , __FILE__); #plugins_url does ssl checks

    The more in depth fix would probably be to use register_script/enqueue_script calls. But this looks to be working for now.

    http://ww.wp.xz.cn/plugins/wp-custom-fields-search/

The topic ‘Admin CSS and JS SSL Support’ is closed to new replies.