Tagged: ,

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #647473
    #648942

    Hey 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,
    Ismael

    #693039

    Hi,

    3 months later, the Google+ logo is still the old one…
    Will you change it ?

    Thanks,
    Oli

    #693116

    Hi!

    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,
    Yigit

    #909483

    by 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

    #909492

    This is almost 1.5 years later and the logo isn’t updated?

    #909509

    or 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

    #909512

    Hi,

    @Guenni007
    thank you for sharing.

    Best regards,
    Mike

    #909515

    Hey!

    Thanks @Guenni007. It is indeed quite easy to change.

    Related thread: https://kriesi.at/support/topic/new-google-logo-update/#post-909137

    Cheers!
    Ismael

    #909632

    Yes 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 it

    the other method is for people who wants to have the right logo color and not a greyscale color.

    #909959

    Hi,

    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 way

    Best regards,
    Basilis

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.