Viewing 30 posts - 91 through 120 (of 125 total)
  • Author
    Posts
  • #1168991

    Hi Steve,

    Please start a separate thread, describe your issue there and give us a link to your website.

    Best regards,
    Victoria

    #1170670

    Quick CSS Fix works, thanks G!

    #1171127

    Hi CGain,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1171516

    Hallo,

    gibt es auch einen Quick Fix für das Behance Logo?
    Danke schon mal!

    VG Heike

    #1171589

    Hi AlexSavarino,

    Please start a separate thread, describe your issue there and give us a link to your website.

    Best regards,
    Victoria

    #1172588

    If you need whatsapp, add the following to the above list…it seems to work fine:

    .social_bookmarks_whatsapp a::before, .av-social-link-whatsapp a::before {
    font-family: ‘entypo-fontello’;
    content: ‘’;
    }

    #1172592

    I mean add to list on this page

    #1172669

    Hi tomidjx,

    Thanks for sharing, it’s much appreciated :-)

    Best regards,
    Rikard

    #1172916

    4.7 have the same problem social media buttons are not visible

    #1173021

    Hi,

    We have just released 4.7.1. Please update the theme once again. Sorry for the inconvenience!

    Best regards,
    Yigit

    #1173543

    Thank you!!! Works great.

    #1173803

    Looks to me like there’s still an issue with the Yelp icon, no? See https://screencast.com/t/YJrrwutpZxx4 or https://fpamed.com/newsletter-5-mass-tort-litigation/ for example. Running 4.7.1 on that site.

    #1174574

    Warning: Illegal string offset ‘social_icon’ in /wp-content/themes/enfold/includes/helper-social-media.php on line 370

    #1174577

    Hey,


    @sky19er
    you can simply go to Enfold theme options > Blog Layout and reset your “Share links at the bottom of your blog post”. Alternatively, you can go to /enfold/includes/helper-social-media.php file in Appearance > Editor and replace it with following – https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_7_1/includes/helper-social-media.php


    @manurimini
    please replace /enfold/includes/helper-social-media.php file in Appearance > Editor with following – https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_7_1/includes/helper-social-media.php

    Best regards,
    Yigit

    #1174581

    Hi Yigit
    Is there a difference between the two files (the one for me and the other for sky19er), since I cannot visualize the Yelp icon too?

    • This reply was modified 4 years, 10 months ago by manurimini.
    #1174584

    Hey,

    No, they are the same files :) But as i said, you can go to Enfold theme options > Blog Layout > Share link options and enable Yelp, save, disable, save and that should remove it.

    Cheers!
    Yigit

    #1174618

    Sorry Yigit
    I still receive this error:
    Warning: Illegal string offset ‘social_icon’ in wp-content/themes/enfold/includes/helper-social-media.php on line 377
    if( ‘yelp’ == $icon[‘social_icon’] )
    Which is the same giving the trouble in the previous file on line 370
    if( ‘yelp’ == $icon[‘social_icon’] )

    And I still don’t get the icon

    Thank you for your help
    Manu

    • This reply was modified 4 years, 10 months ago by manurimini.
    #1175281
    This reply has been marked as private.
    #1175335

    Hi Yigit
    I figured out what was causing the Warning on helper-social-media.php on line 370 – if( ‘yelp’ == $icon[‘social_icon’] ) –
    But I don’t know how to solve it. Please help me.
    I use three functions to add Telegram to the Social Share Buttons
    1 – // Register new icon as a theme icon
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);
    //Adjust icons
    add_filter(‘avia_filter_social_icons’, ‘avia_filter_social_icons_mod’, 10, 1);
    3 – //Add items on the social share section
    add_filter(‘avia_social_share_link_arguments’, ‘avia_add_social_share_link_arguments’, 10, 1);

    The one causing the Warning is:
    //Adjust icons
    add_filter(‘avia_filter_social_icons’, ‘avia_filter_social_icons_mod’, 10, 1);
    function avia_filter_social_icons_mod($icons) {
    $icons[‘Telegram’] = ‘telegram’;
    return $icons;
    }

    Can you help me to fix the issue?

    • This reply was modified 4 years, 10 months ago by manurimini.
    #1175395

    Hi Yigit
    Sorry to bother you again
    I solved the problem
    I deleted the second function and now Telegram is working and the Warning desappeard.
    Thank you again for the great work in assistance
    Best Regards
    Manu

    #1175492

    Hi,


    @StephanieBlainPhotographe
    Could you please start a new thread – https://kriesi.at/support/forum/enfold/#new-post and attach WP admin logins in private content field so we can look into it? :)


    @manurimini
    Glad you figured it out! :)

    Best regards,
    Yigit

    #1177204

    the css code for whatsapp does not work. It works for the other social icons.

    • This reply was modified 4 years, 10 months ago by Aurorer92.
    #1177462

    Hi Aurorer92,

    Where can we see the problem you are having?

    Best regards,
    Rikard

    #1177672

    Thanks to someone in the forum, I put CSS code so it now works. I just need a CSS code for whatsapp because the one I took did not work.

    #1177684

    @Aurore92 this code for Whatsapp works for me, there is a difference in quotes

    .social_bookmarks_whatsapp a::before, .av-social-link-whatsapp a::before {
        font-family: 'entypo-fontello';
        content: '';
    }
    #1177759

    it does not work…

    #1177808

    Hi Yiigit
    As I wrote you before
    I was using two functions to share on telegram in Social Share Buttons
    they worked also in 4.7.1, but after upgrading to 4.7.2 the Telegram button disappeared.

    Functions:
    // Register new icon as a theme icon
    add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);
    function avia_add_custom_icon($icons) {
    $icons[‘telegram’] = array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8b7’);
    return $icons;
    }

    //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)
    {
    $args[‘telegram’] = array(“encode”=>true, “encode_urls”=>false, “pattern” => “https://telegram.me/share/url?text=&url=[permalink]”, ‘label’ => __(“Share on Telegram”,’avia_framework’));
    return $args;
    }

    Can you help me to restore the Telegram button please?

    Thank you
    Manu

    #1178348

    Hi Yigit
    The problem in adding Telegram or other Social Share Button is in helper-social-media.php of Enfold 4.7.2
    I’ve loaded helper-social-media.php of Enfold 4.7.1 in Enfold 4.7.2 and the functions work fine.
    I don’t know what lines are causing the issue but it should be solved in the next release so that people can add the Social Share Buttons that are not included in Enfold.

    PS as many others I don’t like too much the new accordion style in ALB. it only wastes time by openig and closing all those windows. May be there should be an option for having them all opened.

    Have a nice weekend
    Manu

    #1178967

    Hi,

    @manurimini: There is going to be a new option that disables the toggle containers in the element options. It should be available in next patch.

    Best regards,
    Ismael

    #1226629
    This reply has been marked as private.
Viewing 30 posts - 91 through 120 (of 125 total)
  • You must be logged in to reply to this topic.