If you have SSH access, you can always use grep to search for any strings in your files that contain 'http'.
For example, navigate to the directory you have OC installed in. (cd /oc_install/)
Then run the following:
grep -w "http" *
This will show any instances of 'http' only (not https) that are contained in any file in
that specific OC directory. I'd imagine you'd want to run it in /catalog/view/themes/yourtheme
If you look into 'grep' a bit more you can figure out how to run it throughout your entire OC directory.
For example though (and this is one without looking through every directory), an output of a simple 1 page website I have will list something like this:
Code: Select all
username@server[~/www/domain.com]# grep -w "http" *
grep: assets: Is a directory
index.html: <meta http-equiv="X-UA-Compatible" content="IE=edge">
index.html:<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800' rel='stylesheet' type='text/css'>
index.html:<link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,700' rel='stylesheet' type='text/css'>
index.html:<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:700,400' rel='stylesheet' type='text/css'>
username@server[~/www/domain.com]#
Whereas if I grep for 'https', it returns:
Code: Select all
username@server[~/www/domain.com]# grep -w "https" *
grep: assets: Is a directory
index.html:<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
index.html: <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
index.html: <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
index.html: <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
Hope that helps a bit to help track your issues down.