How to install the social icons plugin
#1
Posted 20 July 2011 - 09:22 PM
http://www.wolfshead-solutions.com
We now have a social plugin for our skins so we can add social icons without making any manual template edits. This also means if you have more than 1 skin with us you don't need to edit each skin separately.
Installation is very simple, In all of our skin packages you will find a directory called 'Social-Icons-Plugin' containing the plugin file called 'product-ws_bluepearl_socialpages.xml'
Installation:
Goto your ADMINCP panel --> Plugin & Products --> Manage Products
And then click [add/import Product] and upload this file (product-ws_bluepearl_socialpages.xml)
Settings:
Once the plugin is installed you can add your social pages by going to:
Settings --> Bluepearl Skins - Social Page Icons
If you need support feel free to post in this thread.
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#2
Posted 06 October 2011 - 08:18 PM
#3
Posted 06 October 2011 - 11:41 PM
You only need to install this plugin once and it will work with all of our skins.
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#5
Posted 07 October 2011 - 06:35 PM
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#6
Posted 08 October 2011 - 11:12 PM
#8
Posted 10 October 2011 - 08:19 AM
Nicely done! Works great on the forums but the forward on CMPS seems bugged.
The forward? Can you please post a screenshot. Also please double check this is happening on our demo board:
www.bluepearl-skins.com/vBulletin and is not caused by a plugin or mod.
Awesome idea!, though are we still able to make the template edits in the same way if want to add social icons for sites maybe not included?
For instance I followed your layout but also added social icons for steam groups and our mumble server.
This can be done by modifying this code in the navbar template:
<ul>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_rss'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_rss}"><img src="{vb:stylevar imgdir_icons}/icon-rss.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_twitter'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_twitter}"><img src="{vb:stylevar imgdir_icons}/icon-twitter.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_facebook'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_facebook}"><img src="{vb:stylevar imgdir_icons}/icon-facebook.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_linkedin'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_linkedin}"><img src="{vb:stylevar imgdir_icons}/icon-linkedin.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_myspace'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_myspace}"><img src="{vb:stylevar imgdir_icons}/icon-myspace.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_blogger'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_blogger}"><img src="{vb:stylevar imgdir_icons}/icon-blogger.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_youtube'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_youtube}"><img src="{vb:stylevar imgdir_icons}/icon-youtube.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_flickr'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_flickr}"><img src="{vb:stylevar imgdir_icons}/icon-flickr.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_google'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_google}"><img src="{vb:stylevar imgdir_icons}/icon-google.png" /></a></li></vb:if>
</ul>
To something like this:
<ul>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_rss'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_rss}"><img src="{vb:stylevar imgdir_icons}/icon-rss.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_twitter'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_twitter}"><img src="{vb:stylevar imgdir_icons}/icon-twitter.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_facebook'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_facebook}"><img src="{vb:stylevar imgdir_icons}/icon-facebook.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_linkedin'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_linkedin}"><img src="{vb:stylevar imgdir_icons}/icon-linkedin.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_myspace'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_myspace}"><img src="{vb:stylevar imgdir_icons}/icon-myspace.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_blogger'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_blogger}"><img src="{vb:stylevar imgdir_icons}/icon-blogger.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_youtube'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_youtube}"><img src="{vb:stylevar imgdir_icons}/icon-youtube.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_flickr'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_flickr}"><img src="{vb:stylevar imgdir_icons}/icon-flickr.png" /></a></li></vb:if>
<vb:if condition="!empty($vbulletin->options['ws_bluepearl_sp_google'])"><li><a href="{vb:raw vboptions.ws_bluepearl_sp_google}"><img src="{vb:stylevar imgdir_icons}/icon-google.png" /></a></li></vb:if>
<li>new link and image </li>
</ul>
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#9
Posted 14 October 2011 - 03:33 PM
Where you will find the greatest selection of custom designed Windows 7 Themes in the world!
#10
Posted 14 October 2011 - 05:21 PM
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#11
Posted 22 October 2011 - 12:33 AM
#12
Posted 23 October 2011 - 11:20 PM
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#13
Posted 26 October 2011 - 02:42 AM
-- Wolfshead Solutions: Tab & Link Manager (vB 4) | WS iCart Notices (vB 4) | PM Management Suite (vB 3/vB 4).
-- WS Spider List Generator: Free vBulletin spider identification list service.
-- My Free vBulletin.org Hacks
-- I am NOT available to take on Paid Work Requests.
#14
Posted 26 October 2011 - 05:27 AM
You are most welcome Sean
Customers are loving this plugin, great work
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#16
Posted 23 November 2011 - 09:38 AM
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#18
Posted 29 November 2011 - 10:49 AM
The Icons doesn't show up in my little, smart forum.
http://forum.insidegames.ch/
I used vBulletin 4.1.2. this plugin run on my forum -> http://www.vbulletin...ht=Add new tabs
#19
Posted 30 November 2011 - 02:55 AM
Do you have the icons uploaded to the misc or icons image folder?
Bluepearl Skins - vBulletin, XenForo & Custom Skins - Custom Skin Portfolio updated
If you are happy with our support, please leave feedback here it will be much appreciated!
#20
Posted 30 November 2011 - 03:42 AM
Even though this plugin has not been tested with 4.1.2 this should not be a problem.
Do you have the icons uploaded to the misc or icons image folder?
Yes i upload the icons in misc folder
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users











