-
AuthorPosts
-
June 13, 2016 at 4:28 pm #647473
Hi,
could you update the theme with the new the Google+ icon (https://developers.google.com/+/branding-guidelines) ?
Best regards,
OliJune 16, 2016 at 4:04 am #648942Hey Oli,
Thank you for using Enfold.
We will notify Kriesi about this. For now, you can download the gplus assets from the link that you provided in the upload the svg icon file on fontello.com as custom icon. Use the theme’s Iconfont Manager to add the new font then use the following code in the functions.php file:
function avia_add_custom_icon($icons) { $icons['gplus'] = array( 'font' =>'font-name-here(ex: entypo-fontello)', 'icon' => 'font-code-here(ex: ue800)'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
Adjust the font and icon value.
Best regards,
IsmaelSeptember 29, 2016 at 10:52 am #693039Hi,
3 months later, the Google+ logo is still the old one…
Will you change it ?Thanks,
OliSeptember 29, 2016 at 2:29 pm #693116Hi!
We have reminded our devs once again. In the meantime, you can refer to this post – http://kriesi.at/documentation/enfold/custom-social-icons/ and update it.
Best regards,
YigitFebruary 8, 2018 at 1:16 am #909483by the way : on documentation it is also not correct.
The font-name is entypo-fontello not only fontello !1) if you had to have the new icon – go to fontello : Link
2) in fontawesome there are these new signs – choose theme (best all 3)
3) name the font on top ( i named it gplus)
4) download the created zip file and
5) Go to your enfold import/export – and import that fontello font (it is now gplus font-name)
6) (you have to know the new code of the wanted icon) – f.e. create a new page and insert an iconbox and on hovering in the iconbox alb element – icon choice the wanted icon – the bubble info text shows you the hex-code
7) To substitute the standard icon of enfold insert this code to your functions.php of your child-theme:add_filter('avf_default_icons','avia_replace_default_icons', 10, 1); function avia_replace_default_icons($icons){ $icons['gplus'] = array( 'font' =>'gplus', 'icon' => 'uf0d5'); return $icons; }
Thanks
February 8, 2018 at 1:40 am #909492This is almost 1.5 years later and the logo isn’t updated?
February 8, 2018 at 2:23 am #909509or if you like to have a colored g+ logo
upload a png file like :and add this to your quick css:
.social_bookmarks_gplus [data-av_icon]::before { content: "\00a0\00a0\00a0"; width: 30px; height: 30px; background-image: url(/wp-content/uploads/google-plus.png); background-size: cover; background-repeat: no-repeat; } #top #wrap_all .av-social-link-gplus:hover a { color: #fff; background-color: #eadd4e; }
background-color on hovering it is your part to declare it
February 8, 2018 at 2:26 am #909512Hi,
@Guenni007 thank you for sharing.Best regards,
MikeFebruary 8, 2018 at 2:29 am #909515Hey!
Thanks @Guenni007. It is indeed quite easy to change.
Related thread: https://kriesi.at/support/topic/new-google-logo-update/#post-909137
Cheers!
IsmaelFebruary 8, 2018 at 8:46 am #909632Yes Ismael but i do not see the instruction on top how to get the new font icon – or i missed it.
your code here only works if font gplus is present ? isn’t itthe other method is for people who wants to have the right logo color and not a greyscale color.
February 8, 2018 at 9:49 pm #909959Hi,
I find the content:”” code the best one my self also.
I use it to replace an icon with an image for example, what ever is the easiest wayBest regards,
Basilis -
AuthorPosts
- You must be logged in to reply to this topic.