Tagged: social media icons
-
AuthorPosts
-
March 1, 2023 at 5:19 pm #1399695
We need to add the social media icon “RUMBLE”
How do we go about doing this?- This topic was modified 1 year, 8 months ago by So Evolve.
March 2, 2023 at 8:41 am #1399756Hi So Evolve,
I have checked for the rumble icon on fontello’s website unfortunately, I did not find any icon.
You will need to find it somewhere or you can try downloading it here: https://companieslogo.com/rumble/logo/ (I just found one here)
Then do the following Steps:
1. Please add this code in functions.php of your child theme or you can add it via a plugin called WPCode:// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['rumble'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue897'); 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['Rumble'] = 'rumble'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
2. Go to Enfold > Social Profiles, then add Rumble and the link to your Rumble Channel.
3. Go to Header > Extra Elements > Header Social Icons and make sure to set to any value except No social Icons (at this point check the frontend of your site and see if it works properly)
4. Go to Media > Add New, then upload the rumble icon, (once uploaded) click the Copy URL to clipboard button.
5. Go to Enfold > General Styling > Quick CSS and add this CSS code:
#top #header .social_bookmarks .av-social-link-rumble a { background: url(rumble_image_url) center center no-repeat; background-size: contain; } #top #header .social_bookmarks .av-social-link-rumble a:before { display: none; }
Just replace rumble_image_url with the URL you copied from the clipboard.
Hope this helps.Best regards,
NikkoMarch 2, 2023 at 3:40 pm #1399845This reply has been marked as private.March 2, 2023 at 6:35 pm #1399872Hi,
It sounds like you copied the code from an email.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.Best regards,
MikeMarch 2, 2023 at 9:01 pm #1399898Yes, you were correct; I did make the mistake of copying the code from the email.
I made the changes, and all works perfectly.
Thanks for the great supportMarch 2, 2023 at 11:02 pm #1399905Hi So Evolve,
I’m glad that we could help you :)
Thanks for using Enfold and have a great day!Best regards,
Nikko -
AuthorPosts
- The topic ‘Add Social Media Icon for Rumble’ is closed to new replies.