Hi… on my site http://mariannefrylectures.co.uk I am trying to secure certain pages using the plugin WordPress HTTPS. If you hover over the section tabs, you will see that the Organisers tab shows that that page is secured. [Once this testing is over, that may be changed.]. But if you click on the tab, the page loads initially as https but then http.
I have already changed the links to the images from absolute “http://<address>/directory…” to just “/directory…”
Examining the browser console, the problem seems to be the following, which I believe is being generated by the Attitude theme. Note the http:// reference in the social profile bit:
</head>
<body class="page-template-default page page-id-187 logged-in admin-bar no-customize-support custom-background ">
<div class="wrapper">
<header id="branding" >
<div class="container clearfix">
<div class="hgroup-wrap clearfix">
<section class="hgroup-right">
<div class="social-profiles clearfix">
<ul>
</ul>
</div><!-- .social-profiles --> <form action="http://mariannefrylectures.co.uk/" class="searchform clearfix" method="get">
<label class="assistive-text" for="s">Search</label>
<input type="text" placeholder="Search" class="s field" name="s">
</form><!-- .searchform -->
<button class="menu-toggle">Responsive Menu</button>
</section><!-- .hgroup-right -->
<hgroup id="site-logo" class="clearfix">
<h2 id="site-title">
NB I have an Attitude child theme active, which has a modified clone of attitude_headerdetails() to display the site logo top-left. However, my child theme does not contain any http references, so I think the above is coming from the Attitude theme itself.
Any suggestions, please?