Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #528721

    Hi
    I need to add Whatsapp buttton in social share. I have bought from them forest the plugin but it need to add it in the same way as FB TW etc.
    I ALready have a pluggin and it works alone. I need to add Whatsapp button in the share set in a page (GB, TW, email and)
    Thankx

    #529011

    Hi hdpcr,

    Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #529288

    Thank you

    #529736
    #534216

    Hi,

    I have no clue why these 2 links, i just cant follow, alson the first link talks about other social medias and not about Whatsapps button as i asked befor, The second link is very confused and i have no idea why you sent it to me. Please give me a little bit more help about my issue.

    Thank you.

    #534613

    Hey!

    Please add this in the functions.php file:

    // Register new icon as a theme icon\
    function avia_add_custom_icon($icons) {
    	$icons['whatsapp']	 = array( 'font' =>'whatsapp', 'icon' => 'ue800');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 50, 1);
    
    // Register new social share
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
    	$args['whatsapp'] = array("encode"=>true, "encode_urls"=>false, "pattern" => "whatsapp://send?text=[title]");
    	return $args;
    }

    Upload the whatsapp social icon from fontello. Go to the Enfold > Import / Export panel then click the fontello link. Search for the whatsapp icon, select it then look for the input field next to the “wrench” icon. Type in “whatsapp”. Download the font then upload it in the iconfont manager.

    Regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.