Format Email Link In Top Bar - Question | JoomShaper

Format Email Link In Top Bar

MH

Matt Hunt

Helix Framework 7 months ago

Is there a way to have the hyperlinked anchor text "Email Us" show in the top bar rather than the actual email address? https://snipboard.io/itXs7u.jpg

0
4 Answers
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 7 months ago #188058

Hello,

Thanks for reaching out to us. Could you please share temporary administrator access to your Joomla backend? You can provide the credentials securely in the hidden content section. Also, please take a full backup of your site before we make any changes.

Once I have access, I’ll investigate further and see what’s causing the issue. Let me know once you’ve shared the details!

Best regards,

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 7 months ago #188067

Matt, as always You have two options:

  1. Template Code customization in that file (templates\TEMPLATE-NAME\features\contact.php)
  2. Or use Custom Module there (position top2) with Custom HTML code
0
MH
Matt Hunt
Accepted Answer
7 months ago #188173

Thanks Paul. Looks like I would need to change: $output .= '<li class="sp-contact-email"><span class="far fa-envelope" aria-hidden="true"></span> <a href="mailto:'. $this->params->get('contact_email') .'">' . $this->params->get('contact_email') . '</a></li>';

To something like:$output .= '<li class="sp-contact-email"><span class="far fa-envelope" aria-hidden="true"></span> <a href="mailto:'. $this->params->get('contact_email') .'">Email Us</a></li>';

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 7 months ago #188175

If you like php changes use option (1).

0