Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • westlakechamber Friend
    #180869

    I have a Joomla 1.5 install with Ja Edenite.

    Whenever visitors click a HTTPS follow link, to register for an event, for example, the new page that loads has no CSS. This only happens in Google Chrome. I’ve tested on Firefox and Safari. Here’s an example:

    The page with the register link: http://www.westlakechamber.com/new-westlake/component/eventbooking/?task=view_event&event_id=21

    The registration page: https://www.westlakechamber.com/new-westlake/component/eventbooking/?task=individual_registration&event_id=21

    The developer of the registration component had this to say about the issue:

    “I checked and found out the reason. It is because the template you are using is loading css files in none-https and these css files are blocked on google chrome. Please view HTML source of the page and you will see the content like this:

    <link rel=”stylesheet” href=”http://westlakechamber.com/new-westlake/templates/system/css/system.css” type=”text/css” />
    <link rel=”stylesheet” href=”http://westlakechamber.com/new-westlake/templates/system/css/general.css” type=”text/css” />
    <link rel=”stylesheet” href=”http://westlakechamber.com/new-westlake/templates/ja_edenite/css/template.css” type=”text/css” /

    It should be loaded using https instead of using http.”

    I don’t know how to change the the style loading from http to https.

    Thanks!

    Matthew

    Ninja Lead Moderator
    #468096

    Hi Matthew,

    I fixed the error on your site.

    <blockquote>templates/ja_edenite/ja_templatetools_1.5.php file</blockquote>
    From

    function baseurl(){
    return JURI::base();
    }

    function templateurl(){
    return JURI::base()."templates/".$this->template;
    }

    change to

    function baseurl(){
    return JURI::base(true)."/";
    }

    function templateurl(){
    return JURI::base(true)."/templates/".$this->template;
    }

    Please check both link on your site again
    http://www.westlakechamber.com/new-westlake/component/eventbooking/?task=view_event&event_id=21
    and https://www.westlakechamber.com/new-westlake/component/eventbooking/?task=individual_registration&event_id=21

    Regards

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  Ninja Lead 12 years, 1 month ago.

We moved to new unified forum. Please post all new support queries in our New Forum