• Resolved jeking

    (@jeking)


    My client’s site is set to use https:// for all pages. This plugin loads the stylesheets via https:// so they were being blocked.

    I changed lines 26 and 27 of email-subscriber.php to be:

    wp_enqueue_style(‘kento-email-subscriber-style’, get_stylesheet_uri() );
    wp_enqueue_style(‘kento-email-subscriber-animate’, get_stylesheet_uri() );

    This resolved the problem.

    https://www.ads-software.com/plugins/email-subscriber/

Viewing 1 replies (of 1 total)
  • Thread Starter jeking

    (@jeking)

    This is the updated fix. The one posted above is incorrect.

    wp_enqueue_style(‘kento-email-subscriber-style’, plugins_url(‘css/style.css’, __FILE__));
    wp_enqueue_style(‘kento-email-subscriber-animate’, plugins_url(‘css/animate.css’, __FILE__));

Viewing 1 replies (of 1 total)
  • The topic ‘Error with https://’ is closed to new replies.