Okay
  Public Ticket #1180199
Oreades Theme – Social Setting
Closed

Comments

  • Wiebke started the conversation

    Hi,

    is it possible to set other social links than default? For example xing?

    Thank you for answering.




  •  2,010
    Ocean replied

    Hello,

    Now, you can add unlimited social network in Oreades Options -> Social Settings -> Add your social extend -> Add html code like as below:

    <li class="icon-footer tipped" data-title="social-name-here" data-tipper-options="{"direction":"top","follow":"true"}"><a target="_blank" href="social-link-url-here"><i class="fa fa-google"></i></a></li>
    

    I have add php code in footer.php file:

    <?php if($theme_option['social_extend']!=''){ 
       echo htmlspecialchars_decode(do_shortcode( $theme_option['social_extend'] ));
    } ?>
    

    and add code in sample-config.php file:

               array(
                    'id' => 'social_extend',
                    'type' => 'editor',
                    'title' => __('Add your social extend', 'oreades'),
                    'subtitle' => __('Add your social html code here, if your social network not have on list social above.', 'oreades'),
                    'default' => '',
                ),
    

    Thank

  • Wiebke replied

    Wow, thank you so much! That´s great!

  • Wiebke replied

    Hi Support-Team,

    the code helps and works fine, but only for a moment.
    This morning I was wondering, because the new social icon in footer was gone.

    After checking this I realized that the code, which I was inserted in „Add your social extend“ in „social settingg“ was disappearing of it´s own when I changed some settings in „oreades options“.

    It sounds curious but it´s true. Could you check this and tell me, how to solve problem?

    Many thanx!

    Wiebke

  •  2,010
    Ocean replied

    Hello,

    Please use this html for your social:

    <li class="icon-footer tipped" data-title="Xing" data-tipper-options="{" direction":"top","follow":"true"}"=""><a target="_blank" href="https://www.xing.com/"><i class="fa fa-xing"></i></a></li>
    

    Thanks

  • Wiebke replied

    It works great! Thanks a lot!