Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
GS Evolve Theme
#8
(2016-03-18, 01:05:19)Afilmpl Wrote: In GS "Files" section, I do have /data/uploads/images/slides/01.jpg 02.jpg and 03.jpg. In which file do I have to make a link to these images ? In the slider1_container.js file ? Which line ?

--

About HTML5 <video>… I was not talking at all about "Videos" ;-), I was talking about Viadeo, a professionnal social network like LinkedIn. See : http://fr.viadeo.com/en/

I would like to add a viadeo icon+link in the header, next to linkedIn. And manage it via the back-office (Them settings > Social networking settings).


You have to edit JSSOR Slider data files content and change there existing images links with your desired. In your case, it will be pages with slug: "slider-1" and "slider-2".
----------------------------------------------------
About Viadeo soc. network link. You need to do the following steps:
1. Open settings.php file for editing and search fieldset element with id="container-1". There you will see another networks profiles, including Linkedin. After Linkedin section make a new line and insert this code:

Code:
<p>
   <label for="viadeo">Viadeo:</label>
   <input type="text" class="text" name="viadeo" id="viadeo" style="width: 80%;float: right;" value="<?php get_theme_setting('viadeo'); ?>">
</p>

2. Open header.inc.php file for editing and search code block:

Code:
if(return_theme_setting('linkedin')) {
    if(strlen(return_theme_setting('linkedin'))>6 || return_theme_setting('linkedin')=="#") { ?>
        <li><a class="linkedin" href="<?php get_theme_setting('linkedin'); ?>"><i class="icon-linkedin"></i></a></li>
<?php } }
After it make a new line and insert this code:

Code:
f(return_theme_setting('viadeo')) {
    if(strlen(return_theme_setting('viadeo'))>6 || return_theme_setting('viadeo')=="#") { ?>
         <li><a class="viadeo" href="<?php get_theme_setting('viadeo'); ?>"><i class="socicon-viadeo"></i></a></li>
<?php } }

Unfortunately the fonts that are used with Evolve theme does not contain Viadeo icon. But you can use another soc. icons source which has mentioned icon. This requires connect to the project an external source as CSS. So in the header.inc.php in head section (after another CSS files links) insert this code:

Code:
<link href="https://file.myfontastic.com/n6vo44Re5QaWo8oCKShBs7/icons.css" rel="stylesheet">

3. Open style.css file for editing and add this code section:

Code:
.viadeo i, .viadeo:before {

                             position: absolute;
                             margin: 10px 0 0 10px;
                             font-size: 22px;
}
.viadeo:before {
                             font-family: "socicon";
                             content: "\E04A";
                             top: 0;
                             opacity:1;
}
.viadeo:hover:before {
                             top: 30px;
                             opacity: 0;
}
.viadeo:hover {
                             background-color: #E4A000;
}

.socicon-viadeo:before {

                             position: absolute;
                             font-size: 22px;
                             margin: -2px 0 0 0px;
}

Done.
Reply


Messages In This Thread
GS Evolve Theme - by asemion - 2016-02-19, 00:32:33
RE: GS Evolve Theme - by Charpy1 - 2016-02-19, 04:00:29
RE: GS Evolve Theme - by Timbow - 2016-02-19, 08:47:47
RE: GS Evolve Theme - by Claus - 2016-03-01, 07:23:13
RE: GS Evolve Theme - by filmpl - 2016-03-16, 05:47:46
RE: GS Evolve Theme - by asemion - 2016-03-17, 22:27:59
RE: GS Evolve Theme - by filmpl - 2016-03-18, 01:05:19
RE: GS Evolve Theme - by asemion - 2016-03-18, 18:23:28
RE: GS Evolve Theme - by filmpl - 2016-03-18, 20:56:26
RE: GS Evolve Theme - by asemion - 2016-03-18, 21:46:30
RE: GS Evolve Theme - by filmpl - 2016-03-31, 06:31:35
RE: GS Evolve Theme - by Claus - 2016-03-20, 06:24:51
RE: GS Evolve Theme - by asemion - 2016-03-21, 17:37:55
Licenses - by Claus - 2016-03-21, 07:00:52
RE: GS Evolve Theme - by asemion - 2016-03-21, 17:51:03
RE: GS Evolve Theme - by Claus - 2016-03-22, 09:55:44
RE: GS Evolve Theme - by Claus - 2016-03-23, 03:29:15
RE: GS Evolve Theme - by asemion - 2016-03-23, 18:50:20
RE: GS Evolve Theme - by Claus - 2016-04-01, 08:31:46
RE: GS Evolve Theme - by asemion - 2016-03-23, 19:19:21
RE: GS Evolve Theme - by asemion - 2016-03-30, 18:00:02
RE: GS Evolve Theme - by Claus - 2016-05-01, 15:35:25
RE: GS Evolve Theme - by asemion - 2016-05-02, 23:34:58
RE: GS Evolve Theme - by Claus - 2016-05-09, 04:12:51
RE: GS Evolve Theme - by asemion - 2016-05-10, 21:55:22
RE: GS Evolve Theme - by Claus - 2016-05-22, 15:12:22
RE: GS Evolve Theme - by webservsol - 2016-06-08, 12:23:05
RE: GS Evolve Theme - by asemion - 2016-06-08, 22:38:23
RE: GS Evolve Theme - by barknezz - 2016-06-22, 21:05:11
RE: GS Evolve Theme - by asemion - 2016-06-23, 01:28:28
RE: GS Evolve Theme - by asemion - 2016-08-03, 23:08:53
RE: GS Evolve Theme - by lobster.boy - 2016-08-18, 16:19:23
RE: GS Evolve Theme - by asemion - 2016-08-18, 18:00:23
RE: GS Evolve Theme - by shivprasd - 2016-08-27, 22:23:55
RE: GS Evolve Theme - by asemion - 2016-08-29, 23:21:47
RE: GS Evolve Theme - by shivprasd - 2016-09-01, 22:09:47
RE: GS Evolve Theme - by asemion - 2016-09-01, 23:39:07
GS Evolve Theme - by gaetanoc - 2017-01-27, 01:19:21
RE: GS Evolve Theme - by asemion - 2017-01-27, 02:57:05
RE: GS Evolve Theme - by jana - 2017-02-06, 21:04:58
RE: GS Evolve Theme - by asemion - 2017-02-07, 16:53:09
RE: GS Evolve Theme - by The_Shopkeeper - 2017-03-01, 20:18:16
RE: GS Evolve Theme - by asemion - 2017-03-01, 22:14:54
RE: GS Evolve Theme - by The_Shopkeeper - 2017-03-02, 00:02:56
RE: GS Evolve Theme - by asemion - 2017-03-04, 00:10:13
RE: GS Evolve Theme - by The_Shopkeeper - 2017-03-05, 06:38:31
RE: GS Evolve Theme - by asemion - 2017-05-30, 19:41:14
RE: GS Evolve Theme - by animas - 2019-05-07, 04:30:12
RE: GS Evolve Theme - by asemion - 2019-05-07, 18:44:03



Users browsing this thread: 1 Guest(s)