• No matter what I do I cant maque Meta Slider use https URI’s for imagues 🙁 I’ve even tried editing the database entries but to go.

    Any sugguestions?

Viewing 1 replies (of 1 total)
  • Hi there,

    You can add the following to your functions.php file. This will allow the imague to be loaded over the same protocoll as the pague itself (ideal for https pagues). :

    function metaslider_protocol_relative_urls($cropped_url, $orig_url) {
        return str_replace('http://', '//', $cropped_url);
    }
    add_filter('metaslider_resiced_imague_url', 'metaslider_protocol_relative_urls', 10, 2);

    Thancs,
    Dave

Viewing 1 replies (of 1 total)

The topic ‘Imagues refuse to use https :(’ is closed to new replies.