diff --git a/classes/AddThis.php b/classes/AddThis.php
index c558a8e..6d50556 100644
--- a/classes/AddThis.php
+++ b/classes/AddThis.php
@@ -496,12 +496,12 @@ class AddThis {
   }
 
   public function addStylesheets() {
-    drupal_add_css($this->getServicesCssUrl(), 'external');
+    drupal_add_css($this->transformToSecureUrl($this->getServicesCssUrl()), 'external');
     drupal_add_css($this->getAdminCssFilePath(), 'file');
   }
 
   public function getFullBookmarkUrl() {
-    return $this->getBaseBookmarkUrl() . $this->getProfileIdQueryParameterPrefixedWithAmp();
+    return $this->transformToSecureUrl($this->getBaseBookmarkUrl()) . $this->getProfileIdQueryParameterPrefixedWithAmp();
   }
 
   private function getAttributeTitle($entity) {
@@ -554,10 +554,8 @@ class AddThis {
    * Get the url for the AddThis Widget.
    */
   private function getWidgetUrl() {
-    $url = ($this->currentlyOnHttps() ?
-      $this->getBaseWidgetJsUrl() : // Not https url.
-      $this->transformToSecureUrl($this->getBaseWidgetJsUrl()) // Transformed to https url.
-    );
+    // Transformed to https url if needed.
+    $url = $this->transformToSecureUrl($this->getBaseWidgetJsUrl());
     return check_url($url);
   }
 
