Not all links are https
Opencart does not automatically make all links using https even if https is enabled. To fix this, edit config.php and change all urls to https.
Example:
<?php
// HTTP
define('HTTP_SERVER', 'https://domain.com/');
// HTTPS
define('HTTPS_SERVER', 'https://domain.com/');