Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #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?

    #488051

    Hey!

    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,
    Josue

    #488665

    hi 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,
    Josue

    #488699

    hi 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,
    Josue

    #488717

    Hi!

    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!
    Josue

    #489297

    Hi! 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

    #489309

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    #489320

    hi,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.

    #489336

    ID and password is here:

    #489753

    Hey!

    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!
    Josue

    #490572

    Josue:

    thanks very much!

    Cheers!

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘how to adding/change social icons and share links?’ is closed to new replies.