-
AuthorPosts
-
February 19, 2018 at 9:57 pm #914559
Hi, @shannon showed did a great job showing me how to add a picture as the background for the social icons. I noticed that there is no Yelp or Wedding Wire icon so I followed this method to add them https://kriesi.at/documentation/enfold/custom-social-icons/ which I added to the child theme functions.php
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ // Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['Yelp'] = array( 'font' =>'fontello', 'icon' => 'ue800'); $icons['Weddingwire'] = array( 'font' =>'fontello', 'icon' => 'ue801'); 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['Yelp'] = 'yelp'; $icons['Weddingwire'] = 'weddingwire'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
I than added this code but the icons do not seem to be showing up. See private. I can rollover the white space and the background show up but no icons.
February 20, 2018 at 6:30 am #914710Hey jleclair87,
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,
NikkoFebruary 20, 2018 at 8:59 pm #915013Link below @Nikko
February 21, 2018 at 4:10 am #915181Hi,
Thanks for providing the admin access, I have checked it and I can’t see any problem on the codes you have used, I have tested this on my end and it works fine, can you try to turn disable caching and deactivating caching plugins, and try to update Enfold to the latest version. Just make a backup first before updating the theme. Let us know if there’s an improvement to it.
Best regards,
NikkoFebruary 21, 2018 at 11:23 pm #915774Thanks for checking @Nikko,
I deleted the caching plugins and updated the theme but the icons are showing up as pencils which isn’t correct. The icons should be Yelp and Weddingwire. Do you see those your end?
February 22, 2018 at 6:02 am #915890Hi,
Thanks, I still couldn’t fix it, so I just forced it to show up via css, I have added this css code in your Quick CSS (located in Enfold > General Styling):
#top #wrap_all .social_bookmarks .social_bookmarks_yelp a:before { font-family: 'fontello' !important; content: '\e800' !important; } #top #wrap_all .social_bookmarks .social_bookmarks_weddingwire a:before { font-family: 'fontello' !important; content: '\e801' !important; }
Let us know if you need further assistance :)
Best regards,
NikkoFebruary 22, 2018 at 11:40 pm #916410Thanks @Nikko,
February 23, 2018 at 12:20 am #916433Hi,
Did you need further help, or shall we close this topic?
Best regards,
Jordan ShannonFebruary 23, 2018 at 9:40 pm #916881please close
February 23, 2018 at 10:07 pm #916883Hi,
If you need further help, please let us know here in the forums.
Best regards,
Jordan Shannon -
AuthorPosts
- The topic ‘Custom Icons not showing up’ is closed to new replies.