Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #1223060

    Dear team,

    could anyone help me by finding the correct place where I can edit the Mouse over text of the social Media Icons in the top bar?
    Our client would like to use the icon of Dribbble for the link to his website. But I have to change the word “Dribbble” on mouse over.

    Thanks!

    Sven

    #1223786

    Hey Videmi,

    Could you please attach a mockup of what you’re trying to achieve?

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1238543

    Hello Victoria,

    thank you for your help.
    Please visit the website. When you go to the dribble logo in the top / right corner you get the mouseover “dribble”.
    Out client would like to change this mouseover. The background is, that we need a signé which is usable for “website”. So the world / dribble-logo is perfect.

    Best regards,

    Sven

    #1239441

    Hi Sven,

    I’m not really sure I understand the request. Can we ask for a mockup or a screenshot on what you want to achieve on mouse-over the dribble logo?

    Best regards,
    Nikko

    #1243027

    Dear Nikko,

    I uploaded an image which shows the tool-tip I would like to change.
    Thank you very much!

    #1243111

    Hi Videmi,

    That tooltip is produced by the title tag (html/browser default).
    If you want to change the title, you’ll need to modify avia_social_media_icons class which is defined in wp-content > themes > enfold > includes > helper-social-media.php:
    Then the title part of line 167 in Enfold 4.6.7.3

    $html .=	"<a {$blank} {$aria_label} href='" . esc_url( $icon['social_icon_link'] ) . "' " . av_icon_string( $icon['social_icon'], false ) . " title='{$display_name}'>";

    you can add some condition on top of it, to make it change title when it’s dribble.
    I hope this helps.

    Best regards,
    Nikko

    #1243389

    Hey Nikko,

    thank you very much! But it needs a bit more skills than I have to write the code condition to change only dribble.
    I will try to ask somebody to help me in this case.

    Thank you very much and best regards,

    Sven

    #1243400

    Hi Sven,

    On top of the code I pointed out above you can put this code:

    if($display_name == 'Dribble') {
      $display_name = 'My Dribble';
    }

    Then just replace My Dribble with the text you want to use.
    Hope it helps.

    Best regards,
    Nikko

    #1248974
    This reply has been marked as private.
    #1249301

    Hi Videmi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. 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
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. 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 an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1250545
    This reply has been marked as private.
    #1250698

    Hi Videmi,

    Thanks for giving us admin access.
    I was short of one b this is the right code:

    if( $display_name == 'Dribbble' ) {
    	$display_name = 'Reo.de';
    }

    I have modified it on your site (link in private content, however, it’s not changing.
    Is there any internal caching in the server which prevents it from working? If yes, please flush out the cache or temporarily disable it.
    I tested the code and it worked properly on my end.

    Best regards,
    Nikko

    #1298867

    Hello Nikko, The above works perfectly!

    How do I implement this modification in a child theme?

    • This reply was modified 3 years, 5 months ago by rlhinirv57.
    #1298969

    Hi rlhinirv57,

    You’re welcome :)
    Please try to create an includes folder to your child theme, then inside it add the helper-social-media.php file.

    Best regards,
    Nikko

    #1299013

    Thanks Nikko, I can gain FTP access so will take that approach.

    #1299048

    Hi rlhinirv57,

    You’re welcome :)
    Just let us know how it goes, if you need assistance, we’ll be here to help.

    Best regards,
    Nikko

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