diff --git a/plugins/system/core/helix3.php b/plugins/system/core/helix3.php
index 381f532..820ff3f 100644
--- a/plugins/system/core/helix3.php
+++ b/plugins/system/core/helix3.php
@@ -1119,7 +1119,15 @@ function ($matches)
$base = dirname($base);
$url = substr($url, 3);
}
- $url = $base . '/' . $url;
+
+ // If the base is always /, it shouldn't be adding another /
+ $default = $base . '/' . $url;
+
+ if ($base === '/') {
+ $default = '/' . $url;
+ }
+
+ $url = $default;
return "url('$url')";
}, $compressed);
diff --git a/template/en-GB.tpl_shaper_helix3.ini b/template/en-GB.tpl_shaper_helix3.ini
index 7aa3d77..e71d5d4 100755
--- a/template/en-GB.tpl_shaper_helix3.ini
+++ b/template/en-GB.tpl_shaper_helix3.ini
@@ -95,6 +95,8 @@ HELIX_SOCIAL_ICON_VK="VK Username"
HELIX_SOCIAL_ICON_VK_DESC="Input the full URL to your VK profile page."
HELIX_SOCIAL_ICON_CUSTOM="Custom"
HELIX_SOCIAL_ICON_CUSTOM_DESC="Insert your custom url with fontawesome icon, eg. fa-facebook http://joomshaper.com"
+HELIX_SOCIAL_ICON_INSTAGRAM="Instagram URL"
+HELIX_SOCIAL_ICON_INSTAGRAM_DESC="Input the full URL to your Instagram page."
;Contact Info
HELIX_CONTACT_INFO="Contact Information"
diff --git a/template/features/social.php b/template/features/social.php
index ecbb6ee..ef9ef9c 100755
--- a/template/features/social.php
+++ b/template/features/social.php
@@ -34,6 +34,7 @@ public function renderFeature() {
$flickr = $this->helix3->getParam('flickr');
$vk = $this->helix3->getParam('vk');
$custom = $this->helix3->getParam('custom');
+ $instagram = $this->helix3->getParam('instagram');
if( $this->helix3->getParam('show_social_icons') && ( $facebook || $twitter || $googleplus || $pinterest || $youtube || $linkedin || $dribbble || $behance || $skype || $flickr || $vk ) ) {
$html = '
';
@@ -71,6 +72,11 @@ public function renderFeature() {
if( $skype ) {
$html .= ' ';
}
+
+ if ($instagram) {
+ $html .= ' ';
+ }
+
if( $whatsapp ) {
$html .= ' ';
}
diff --git a/template/templateDetails.xml b/template/templateDetails.xml
index 1dced02..c53a2e8 100755
--- a/template/templateDetails.xml
+++ b/template/templateDetails.xml
@@ -1,507 +1,508 @@
- shaper_helix3
- Jan 2016
- JoomShaper.com
- support@joomshaper.com
- http://www.joomshaper.com
- Copyright (C) 2010 - 2017 JoomShaper.com. All rights reserved.
- http://www.gnu.org/licenses/gpl-2.0.html GPLv2 or later
- 2.1
- Shaper Helix3 - Starter Template of Helix3 framework
-
-
- https://www.joomshaper.com/updates/shaper-helix3.xml
-
-
-
- en-GB.tpl_shaper_helix3.ini
-
-
-
- title
- top1
- top2
- top3
- logo
- menu
- search
- slide
- user1
- user2
- user3
- user4
- left
- right
- feature
- slider
- position1
- position2
- position3
- position4
- position5
- position6
- position7
- position8
- bottom1
- bottom2
- bottom3
- bottom4
- breadcrumb
- footer1
- footer2
- comingsoon
- offcanvas
- pagebuilder
- 404
- debug
-
-
-
- index.php
- template_preview.png
- template_thumbnail.png
- templateDetails.xml
- error.php
- offline.php
- component.php
- comingsoon.php
- css/
- features/
- fonts/
- html/
- images/
- js/
- layout/
- less/
- sppagebuilder/
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ shaper_helix3
+ Jan 2016
+ JoomShaper.com
+ support@joomshaper.com
+ http://www.joomshaper.com
+ Copyright (C) 2010 - 2017 JoomShaper.com. All rights reserved.
+ http://www.gnu.org/licenses/gpl-2.0.html GPLv2 or later
+ 2.1
+ Shaper Helix3 - Starter Template of Helix3 framework
+
+
+ https://www.joomshaper.com/updates/shaper-helix3.xml
+
+
+
+ en-GB.tpl_shaper_helix3.ini
+
+
+
+ title
+ top1
+ top2
+ top3
+ logo
+ menu
+ search
+ slide
+ user1
+ user2
+ user3
+ user4
+ left
+ right
+ feature
+ slider
+ position1
+ position2
+ position3
+ position4
+ position5
+ position6
+ position7
+ position8
+ bottom1
+ bottom2
+ bottom3
+ bottom4
+ breadcrumb
+ footer1
+ footer2
+ comingsoon
+ offcanvas
+ pagebuilder
+ 404
+ debug
+
+
+
+ index.php
+ template_preview.png
+ template_thumbnail.png
+ templateDetails.xml
+ error.php
+ offline.php
+ component.php
+ comingsoon.php
+ css/
+ features/
+ fonts/
+ html/
+ images/
+ js/
+ layout/
+ less/
+ sppagebuilder/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+