• When WooCommerce Admin Bar Addition is active on a site served over SSL, Chrome shows the site as not fully secure because of mixed content. This is caused by the documentation search feature, which submits the form to an unsecured URL from the secure site.

    The code is in includes/wcaba-resources.php:

    <form method="get" action="http://docs.woothemes.com/" class=" " target="_blank">

    I’m not sure if there’s a good solution to this because WooThemes does not currently offer an https version of their documentation pages.

    https://ww.wp.xz.cn/plugins/woocommerce-admin-bar-addition/

Viewing 1 replies (of 1 total)
  • @douglsmith you can remove the form (and thus the warning) but using the following. Optionaly check for SSL, etc.

    add_filter( 'admin_bar_menu', 'remove_wcdocs_searchform', 100 );
    function remove_wcdocs_searchform( $wp_admin_bar ){
    	$wp_admin_bar->remove_node( 'ddw-woocommerce-wcdocs-searchform' );
    }
Viewing 1 replies (of 1 total)

The topic ‘Chrome mixed content warning on SSL site’ is closed to new replies.