Individual CTA Button

I’d like to have the option to add a call to action button for each individual on the team in which I can use any URL for

2 Likes

Hi @Andrew_Decher, thank you for sharing, love this idea!

Although there is no option to do it directly in the widget, we can make a custom script for you as a workaround. I’m going to DM you to get some details :slight_smile:

Friends, if you’d love us to help you with the custom script, just contact us and provide the following info:

  • The link to the widget in question (or the installation code)
  • The text you’d like each member to have

We’ll be happy to assist :blush:

Hi there,

A small workaround, maybe that will help. :face_with_peeking_eye:

Edit the Member Biography and switch to the Code Editor.

Add this code with the URL (#) you like:

<p><a href="#">Button</a></p>

For the button style add this code to the Custom CSS field on the Style tab of your Team Showcase widget’s settings:

Button in the 1st to 3rd layout (Popup)

.global-styles,
.eapp-team-showcase-popup-item-description a {
  background-color: #04AA6D !important; /* Green */
  border: none !important;
  color: white !important;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none !important;
  display: inline-block !important;
  font-size: 16px !important;
}

Button in the 4th layout

.global-styles,
.eapp-team-showcase-member-card-list-bio a {
  background-color: red !important; /* Red */
  border: none !important;
  color: white !important;
  padding: 5px 20px;
  text-align: center;
  text-decoration: none !important;
  display: inline-block !important;
  font-size: 16px !important;
}

@Max I hope I am right about the CSS classes :thinking:

1 Like

I actually just discovered that it already ALMOST has this feature. I can add an external link and the see info button will direct to the link. However, it opens a new tab. Can someone instruct me on how to make it follow the external link within the same tab? Thanks!

Hi @Andrew_Decher


Switch this OFF for ext. Link.


I didn’t see that. I must have some serious brain fog today. I switched it off so that it doesnt open in a new tab, but now I get a “refused to connect” error.

1 Like

@Andrew_Decher
It’s probably on the frame side

1 Like

Yep, this issue occurs because of the Hostinger iframes.

Please try to replace your current installation code with the new one and let me know if it helped :slightly_smiling_face:

<script src="https://custom-scripts.elfsightcdn.com/public-scripts/hostinger-and-go-daddy/install-widget.js" data-banner></script>
<div class="elfsight-app-2ab52d26-eed1-4ed4-a3ec-c72bf699b111"></div>
1 Like

This worked! Thank you!

1 Like