Tagged: share link, social icons
-
AuthorPosts
-
August 14, 2015 at 11:05 am #487650
hi
Dear Engineer
i,m understand how to adding icon;(fontello.com donwload and input website)
1.How to add/change social icons and links? (it show in the website of the header and footer)
2.how to add/change social icons and links ?(it show in under post share link)
3.how to display social icons links in pages and protfolio?
August 14, 2015 at 11:17 pm #488051Hey!
1. Check out this article:
http://kriesi.at/documentation/enfold/custom-social-icons/2. Refer to:
https://kriesi.at/support/topic/social-sharing-add-another-service/3. Simply drag a Icon element from ALB, your imported icons should appear there (at the bottom).
Best regards,
JosueAugust 17, 2015 at 8:23 am #488665hi Josue:
1. Check out this article:
http://kriesi.at/documentation/enfold/custom-social-icons/
RE:this code adding function.php, However, this method can only add one, if you add a number do?need more social icons.
2. Refer to:
https://kriesi.at/support/topic/social-sharing-add-another-service/
Re:This method can only add one, if you add a number do?
3. Simply drag a Icon element from ALB, your imported icons should appear there (at the bottom).
RE:If the page is less, this approach is feasible, if the page is a large amount of it?
Best regards,
JosueAugust 17, 2015 at 9:17 am #488699hi Josue:
1. Check out this article:
http://kriesi.at/documentation/enfold/custom-social-icons/
RE:this code adding function.php, However, this method can only add one, if you add a number do?need more social icons.
2. Refer to:
https://kriesi.at/support/topic/social-sharing-add-another-service/
Re:This method can only add one, if you add a number do?
3. Simply drag a Icon element from ALB, your imported icons should appear there (at the bottom).
RE:If the page is less, this approach is feasible, if the page is a large amount of it?
Best regards,
JosueAugust 17, 2015 at 9:46 am #488717Hi!
Simply repeat the line that sets the icon in each code, like:
$args['icon_1'] = array(...); $args['icon_2'] = array(...); $args['icon_3'] = array(...);
Cheers!
JosueAugust 18, 2015 at 8:43 am #489297Hi! Josue
about Q1:
i use http://kriesi.at/documentation/enfold/custom-social-icons/
code is(add 3 share link):
add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1); function avia_add_social_share_link_arguments($args) { $args['wechat'] = array("encode"=>true, "encode_urls"=>false, "pattern" => "http://www.wechat.com/sharer.php?u=[permalink]&t=[title]"); $args['weibo'] = array("encode"=>true, "encode_urls"=>false, "pattern" => "http://www.weibo.com/sharer.php?u=[permalink]&t=[title]"); $args['QQ'] = array("encode"=>true, "encode_urls"=>false, "pattern" => "http://www.qq.com/sharer.php?u=[permalink]&t=[title]"); return $args; }
but no have corresponding icon, how to add icons and the icons matched to the corresponding field;
At this point I have imported into the site icon in the icon library;
Best regards
August 18, 2015 at 9:34 am #489309Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueAugust 18, 2015 at 9:47 am #489320hi,Josue:
i trust Add code to the parent theme function.php
=> array( 'font' =>'entypo-fontello', 'icon' => 'ue807'),
But it did not work, I do not know what went wrong.
August 18, 2015 at 10:08 am #489336ID and password is here:
August 18, 2015 at 11:17 pm #489753Hey!
Check it now, i added this to child theme functions.php:
function avia_add_custom_icon($icons) { $icons['wechat'] = array( 'font' =>'wechat', 'icon' => 'ue805'); $icons['weibo'] = array( 'font' =>'wechat', 'icon' => 'ue806'); $icons['QQ'] = array( 'font' =>'wechat', 'icon' => 'ue807'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
Modify if needed.
Cheers!
JosueAugust 20, 2015 at 8:02 am #490572Josue:
thanks very much!
Cheers!
-
AuthorPosts
- The topic ‘how to adding/change social icons and share links?’ is closed to new replies.