Finding the best Shopify external links button apps for your store? Don’t go anywhere!
Shopify store owners may want to add external links to their products or pages. These buttons lead to another website or resource, such as a blog post, a video, or an affiliate offer. And external links can benefit your customers, your brand, and your revenue. But creating and managing them can be hard.
That’s why you may need an app that simplifies external links on Shopify. In this article, we will review and compare the top 3 apps for this purpose. By the end, you’re sure to pick the best app for your needs and start adding external links to Shopify.
Let’s take a look!
Logo | App Name | Pricing | Free Trial | Rating |
---|---|---|---|---|
AOD External Links Button | $2.99/month | ✔️ Yes (3-day) | 5/5 ⭐ |
|
Outlink External Links Button | Free plan available | ✔️ Yes (7-day) | 4.9/5 ⭐ |
|
BeUniq ‑ External Links | $2.99/month | ✔️ Yes (3-day) | 5/5 ⭐ |
|
AOD External Links Button makes it easier than ever for customers to explore alternative purchasing options and discover the best prices available through external links.
Key features:
Pricing:
Outlink External Links Button is another great app that can help you enhance your Shopify store with seamless integration of external links. It allows you to easily add various types of links, such as affiliate links, referral links, or even internal links, to your store. It’s a fantastic tool for any business looking to expand their reach and provide more options for their customers.
Adding external links is a breeze with Outlink. It’s a one-click process that saves you time and effort. You can easily edit the button text to make it more appealing to your audience. And if you’re concerned about maintaining the look and feel of your store, don’t worry! Outlink offers customization options, which allows you to style the button to seamlessly blend with your store’s design.
Key features:
Pricing:
The last contender of this lineup is BeUniq – External Links – an amazing Shopify app that allows you to easily add external link buttons to different pages of your store.
One of the notable features of the app is the ability to assign unique links to each blog article, page, and product page. This allows you to tailor the experience for your customers, providing them with relevant and targeted external links.
Key features:
Pricing:
When it comes to incorporating external links into your Shopify store, having the right app can make all the difference. After reviewing the top 3 Shopify external links button apps, namely AOD External Links Button, Outlink External Links Button, and BeUniq ‑ External Links, it is clear that each app offers unique features and benefits.
Whether you’re looking for simplicity and affordability, versatility and power, or a free and user-friendly solution, there’s an app that suits your specific needs. We hope that our review and comparison have provided valuable insights to help you make an informed decision. Thank you for reading!
Yes, Shopify allows external links. However, it requires technical skills to implement. To simplify the process, you can consider using Shopify apps that offer external links buttons, some of which even provide a free plan for testing purposes.
Alternatively, if you have coding knowledge and prefer to do it yourself, you can follow these steps to add code to your Shopify theme's JavaScript file:
Step 1: From your Shopify admin, go to Online Store > Themes.
Step 2: Locate the theme you want to edit, click the "..." button to open the actions menu, and select Edit code.
Step 3: In the Assets directory, choose one of the following files:
theme.js
theme.js.liquid
custom.js
Step 4: Paste the following code at the bottom of the selected file:
var links = document.links;
for (let i = 0, linksLength = links.length ; i < linksLength ; i++) {
if (links[i].hostname !== window.location.hostname) {
links[i].target = '_blank';
links[i].rel = 'noreferrer noopener';
}
}
Step 5: Click Save to apply the changes.
By adding this code to your theme's JavaScript file, external links will open in a new browser tab.