proflat

Social links - proflat

Social links

by magictwix » Sun Dec 04, 2016 1:00 pm

Hello
How do I add a social link?
http://prntscr.com/df6sgg
magictwix
Registered User
Posts: 57
Joined: Sun Nov 06, 2016 3:11 pm
Contact:

Re: Social links

by Mazeltof » Tue Dec 06, 2016 9:52 pm

Hi,

The social links are in overall_footer.html file (lines 24 to 48)

To activate (Blogger link for example):
Find (line 26):

Code: Select all

                <!-- <li class="socialicon"><a href="www.blogger.com" class="icon-blogger" title="Blogger"></a></li> -->

replace with :

Code: Select all

                <li class="socialicon"><a href="www.blogger.com" class="icon-blogger" title="Blogger"></a></li>

To disable (facebook link for example):
Find (line 28):

Code: Select all

                <li class="socialicon"><a href="https://fr-fr.facebook.com/" class="icon-facebook" title="Facebook"></a></li>

replace with :

Code: Select all

                <!-- <li class="socialicon"><a href="https://fr-fr.facebook.com/" class="icon-facebook" title="Facebook"></a></li> -->

To point to a specific page (facebook for example):
Find (line 28):

Code: Select all

                <li class="socialicon"><a href="https://fr-fr.facebook.com/" class="icon-facebook" title="Facebook"></a></li>

In this line, replace https://fr-fr.facebook.com/ with the address of your facebook page.
;)
User avatar
Mazeltof
Registered User
Posts: 88
Joined: Wed Sep 28, 2016 5:18 pm
Location: Arras - France
Contact:

Re: Social links

by archersites » Fri Dec 09, 2016 8:25 am

How do I *remove* social links? Any changes I make to overall_footer.html don't seem to change anything at all!

EDIT: Seems to be working now. May have been a very strange cache issue.
archersites
Registered User
Posts: 10
Joined: Fri Dec 09, 2016 8:22 am
Contact:

Re: Social links

by Melshimber » Sun Apr 23, 2017 11:47 am

Hiya

I am using the pro-flat 'grey' and have updated and re-uploaded the social links html file but the changes don't appear to have taken effect. I edited the HTML file in visual studio.

Any ideas why this isn't working correctly?

Thanks

M
Melshimber
Registered User
Posts: 55
Joined: Sun Jul 10, 2005 9:27 am
Contact:

Re: Social links

by Mazeltof » Sun Apr 23, 2017 1:47 pm

Hi,

Take a look at this

;)
User avatar
Mazeltof
Registered User
Posts: 88
Joined: Wed Sep 28, 2016 5:18 pm
Location: Arras - France
Contact:

Re: Social links

by Melshimber » Sun Apr 23, 2017 2:45 pm

Awesome. Thanks for the quick reply.

Ps. I like the theme, nice and simple.

M
Melshimber
Registered User
Posts: 55
Joined: Sun Jul 10, 2005 9:27 am
Contact:

Re: Social links

by klimasstudio » Sun Apr 23, 2017 7:29 pm

How to add custom social icon like GameTracker.
klimasstudio
Registered User
Posts: 3
Joined: Sun Apr 23, 2017 7:04 pm
Contact:

Re: Social links

by Mazeltof » Mon Apr 24, 2017 3:21 pm

Can you give an example of this icon ?
User avatar
Mazeltof
Registered User
Posts: 88
Joined: Wed Sep 28, 2016 5:18 pm
Location: Arras - France
Contact:

Re: Social links

by klimasstudio » Mon Apr 24, 2017 5:55 pm

Ok its oryginal GameTracker logo/icon https://pbs.twimg.com/profile_images/19 ... 00x400.gif

I want this in social_links.html
<li>
<a href="https://www.gametracker.com/" target="_blank" title="GameTracker">
<i class="icon fp-gametracker"></i></a>
</li>


but i must have this:

<li>
<a href="http://www.gametracker.com/search/?query=GamingCenter.pl" target="_blank" title="GameTracker"> <img src="http://www.clanzonazero.com/themes/Nova_Orangizr/img/icons/gametracker.png"></a>
</li>


Its don't look fine ;/

I don't know where and how define class for icon from GameTracker.
klimasstudio
Registered User
Posts: 3
Joined: Sun Apr 23, 2017 7:04 pm
Contact:

Re: Social links

by Mazeltof » Tue Apr 25, 2017 8:06 pm

The proflat fonticon does not contain the gametracker icon, so you can't have

Code: Select all

<li>
<a href="https://www.gametracker.com/" target="_blank" title="GameTracker">
<i class="icon fp-gametracker"></i></a>
</li>
in the social-links.html.

I suggest you try with this icon (I just created it):
icon-gametraker.png
icon-gametraker.png (3.15 KiB) Viewed 1213 times
Place in the proflat/theme/images/ directory.

open social_links.html and find :

Code: Select all

				<!-- <li>
					<a href="https://www.flickr.com/" title="Flickr">
						<i class="icon fp-flickr"></i>
					</a>
				</li> -->
Adds after :

Code: Select all

				<li>
					<a href="http://www.gametracker.com/" class="fp-gametraker" target="_blank" title="GameTracker"> <img src="http://replace_by_your_domain_name/styles/proflat/theme/images/icon-gametraker.png"></a>
				</li>
open style_proflat.css and find :

Code: Select all

.fp-youtube:hover:before				{ content: "\e963"; background: #b81f1f; }
Adds after :

Code: Select all

.fp-gametraker							{ background-color: #353535;}
.fp-gametraker:hover					{ background-color: #292929;}
.fp-gametraker img { 
	height: 26px; 
	padding: 5px; 
	width: 26px; 
}
I will try to add the icon to the proflat fonticon at the next update ;)
User avatar
Mazeltof
Registered User
Posts: 88
Joined: Wed Sep 28, 2016 5:18 pm
Location: Arras - France
Contact:

Re: Social links

by Crystalsia » Tue Apr 25, 2017 9:11 pm

How can I exactly delete all social link? I tried in overall_footer and social_links but they still are visible. :/
Crystalsia
Registered User
Posts: 1
Joined: Tue Apr 25, 2017 9:07 pm
Contact:

Re: Social links

by Mazeltof » Wed Apr 26, 2017 8:34 pm

open overall_footer.html
find and delete :

Code: Select all

		<!-- INCLUDE social_links.html -->
User avatar
Mazeltof
Registered User
Posts: 88
Joined: Wed Sep 28, 2016 5:18 pm
Location: Arras - France
Contact:

Re: Social links

by GoesOn » Thu Jun 29, 2017 6:49 pm

Is it possible to add social links as they appear on each post? The idea is that if someone finds an entry interesting and can share it directly on their facebook or twitter?
English is not my native language :!:
GoesOn
Registered User
Posts: 413
Joined: Sun Mar 05, 2017 7:31 pm
Contact:

Re: Social links

by Mazeltof » Fri Jun 30, 2017 4:40 pm

User avatar
Mazeltof
Registered User
Posts: 88
Joined: Wed Sep 28, 2016 5:18 pm
Location: Arras - France
Contact:

Re: Social links

by GoesOn » Thu Jul 13, 2017 3:06 am

If you answered me there is nothing there I ask?
English is not my native language :!:
GoesOn
Registered User
Posts: 413
Joined: Sun Mar 05, 2017 7:31 pm
Contact: