
-
AuthorPosts
-
June 27, 2018 at 4:34 pm #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
June 27, 2018 at 5:05 pm #978494Hey hardyfinch,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- 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 ). - Click ” Submit “.
- 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,
YigitJune 27, 2018 at 5:11 pm #978497details enclosed in private. please can you post any changes you make so i know for future installations
many thanks
June 28, 2018 at 12:26 pm #978854Hi,
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,
YigitJune 28, 2018 at 1:08 pm #978873This reply has been marked as private.June 28, 2018 at 3:59 pm #978931Hi,
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 websiteBest regards,
YigitJune 28, 2018 at 4:32 pm #978946many thanks for that, all works just fine now :)
June 28, 2018 at 4:41 pm #978950Hi,
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 -
AuthorPosts
- The topic ‘WhatsApp in Social Profiles’ is closed to new replies.