Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #978478

    Hi,

    I’ve been through various updates but none seem to work for me, I have uploaded the fontella zip file and added the following code to functionality plugin but WhatsApp doesnt appear in the list on Enfold –> Social Profiles. Can someone point me in the right direction

    function avia_add_custom_icon($icons) {
    $icons[‘whatsapp’]	= array( ‘font’ =>’whatsapp-font-icon’, ‘icon’ => ‘ue800’);
    return $icons;
    }
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons[‘Whatsapp’] = ‘whatsapp’;
    return $icons;
    }
    add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);
    
    //Add items on the social share section
    add_filter(‘avia_social_share_link_arguments’, ‘avia_add_social_share_link_arguments’, 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
    $new_array = array(
    ‘whatsapp’ => array(
    “encode”=>true, “encode_urls”=>false, “pattern” => “whatsapp://send?text=[title]-[permalink]”
    )
    );
    
    return array_merge($new_array, $args);
    }

    many thanks

    #978494

    Hey hardyfinch,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Yigit

    #978497

    details enclosed in private. please can you post any changes you make so i know for future installations

    many thanks

    #978854

    Hi,

    Please update Enfold to the latest version 4.4.1 and then add following code to functions.php file

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['whatsapp']	 = array( 'font' =>'whatsapp-font-icon', 'icon' => 'ue800');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['WhatsApp'] = 'whatsapp';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    If you need assistance please post FTP logins here privately as well. I tried overwriting the file in Appearance > Editor but that did not work :)

    Best regards,
    Yigit

    #978873
    This reply has been marked as private.
    #978931

    Hi,

    There were three versions of Enfold installed on your server. I deleted them all and then uploaded Enfold 4.4.1 and edited /enfold/functions.php file then chose to display WhatsApp logo in Enfold theme options.
    Please review your website

    Best regards,
    Yigit

    #978946

    many thanks for that, all works just fine now :)

    #978950

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘WhatsApp in Social Profiles’ is closed to new replies.