• Resolved Penelope

    (@ashley512)


    Hello,

    I spoken with you before and you’ve been a great help. I have a form on my website at accusharp.com/contact page for a dealer locator. the plug in is trying to change the www to https://nearestoutlet.com >> sadly, our customers cannot look up where our products because that website is not SSL protected.. Is there a way around it? Before, that specific page wasn’t secure, and we are fine with that because customers were redirected to a new page.

    Thank you so much for all of your help.

    Here is the coding for the form.

    <div align="right">
    <table border="0" width="310" cellspacing="0" cellpadding="0" align="center">
    <tbody>
    <tr>
    <td align="center"><!-- BEGIN Dealer Locator HTML © NearestOutlet.com --></td>
    </tr>
    </tbody>
    </table>
    </div>
    <form action="http://www.nearestoutlet.com/cgi-bin/accusharp/findaccusharp.pl" method="post" target="pollpopup">
    <div align="center">
    
     
    
     
    <table style="height: 184px;" border="0" width="368" cellspacing="0" cellpadding="3" align="center">
    <tbody>
    <tr>
    <td bgcolor="#fdfeff">
    <div class="white2" align="center"><span style="font-size: 18px; color: #1e73be;"><strong>Find an AccuSharp Dealer Near You!</strong></span></div></td>
    </tr>
    <tr>
    <td bgcolor="#FFFFFF">
    <div class="blue1" align="center">Enter Your Zip Code</div></td>
    </tr>
    <tr>
    <td bgcolor="#FFFFFF">
    <div align="center">
    
    <input maxlength="7" name="zipcode" size="7" type="text" />
    
    <input type="submit" value="Search!" />
    
    </div></td>
    </tr>
    </tbody>
    </table>
    </div>
    </form><script type="text/javascript">// <![CDATA[ // this will open a new window, and send the results to the popup window function pollSubpop (url, name, widgets, specialsURL) { popupWin = window.open(url, name, widgets); popupWin.opener.top.name = "opener"; popupWin.focus(); } // ]]></script>

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]

    https://ww.wp.xz.cn/plugins/really-simple-ssl/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Penelope

    (@ashley512)

    Not sure how to delete threads but I read in another thread that unless everything on your website is SSL then forms such as these will not work unless the 3rd party gets an SSL installed on their website.

    HUGE bummer because this plug in is fantastic. I’m trying to get the 3rd party to update their website so I can use their form. I had to deactivate the beautiful plug in so a customer can use the form on my site.

    I’ll most likely purchase the plug in upgrade; really bummed it wont be on my home page though. Sad. Day.

    Plugin Contributor Rogier Lankhorst

    (@rogierlankhorst)

    I’ve recently extended the mixed content fixer to forms as well. But
    you can exclude this url from the mixed content fixer following this article:
    https://really-simple-ssl.com/knowledge-base/exclude-url-mixed-content-fixer/

    Let me know if that helps!

    Thread Starter Penelope

    (@ashley512)

    OH! So I can still use the free plug in with the code below added in the functions.php?

    Do I place it in anywhere?

    ‘function rsssl_exclude_http_url($html) {
    $html = str_replace(“https://www.domain.com&#8221;, “http://www.domain.com&#8221;, $html);
    return $html;
    }
    add_filter(“rsssl_fixer_output”,”rsssl_exclude_http_url”);’

    Thank you for your help!

    Plugin Contributor Rogier Lankhorst

    (@rogierlankhorst)

    If you put it in your theme’s functions.php your issue should be fixed.

    This function replaces https urls back to http. So the first url should be the https url, the second url the http you want it replaced back to.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Forms on page not HTTPS — issue’ is closed to new replies.