Top 3 Shopify External Links Button Apps (Review & Comparison)

shopify external links button apps

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!

A Quick Comparison of 3 best Shopify external links button apps

LogoApp NamePricingFree TrialRating
AOD External Links Button$2.99/month✔️ Yes
(3-day)
5/5
Outlink External Links ButtonFree plan available✔️ Yes
(7-day)
4.9/5
BeUniq ‑ External Links$2.99/month✔️ Yes
(3-day)
5/5

The In-depth Reviews

#1. AOD External Links Button

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.

Additionally, you can choose to replace or hide the “Add to Cart” button, giving you full control over the shopping experience and focusing on promoting external links.
In terms of pricing, AOD offers an attractive and budget-friendly basic plan, starting at just $2.99 per month. This makes it an ideal choice for startups and small businesses seeking cost-effective solutions to elevate their Shopify stores and drive increased sales.
With this app, you can effortlessly add external affiliate links to your product pages. This means that customers can compare prices on popular websites like Amazon, Walmart, eBay, Jet, Aliexpress, and more, all without leaving your store. By doing this, you can ensure that your customers have access to the best deals while staying engaged with your products.

Key features:

  • Simple app installation without manual code required
  • Add External links buttons to unlimited products, replacing Add to Cart
  • Display buttons on product, collection, and home page
  • Increase sales with affiliate link buttons and boost buyer confidence
  • Customize button style to match your theme design

Pricing:

  • Basic plan: $2.99/month

#2. Outlink External Links Button

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.

And to help you track the performance of your external links, Outlink seamlessly integrates with Google Analytics and provides in-app analytics. You can use these data to gain insights into the effectiveness of your affiliate marketing strategies and make informed decisions to optimize your store’s performance.
Outlink has a free plan specifically designed for stores under the Shopify trial period. However, if you have an established business, you may want to explore the Pro and Gold plans. Both of these plans offer comparison table links and support for multiple links per product.

Key features:

  • Easily add external links with just one click
  • Edit button text to suit your needs
  • Customize the styling of the external link buttons
  • Choose to replace the ‘Add to Cart’ button with Outlinks, keep both buttons or select one button option
  • Efficiently bulk edit links for convenience
  • Display Outlinks on product, collection, search, cart, and homepage pages
  • Support multiple external links per product, including variant-level links
  • Integrate with Google Analytics or utilize in-app analytics to track performance

Pricing:

  • Free plan available
  • Basic: $2.08/month
  • Pro: $2.92/month
  • Gold: $4.17/month

#3. BeUniq ‑ External Links

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.

For businesses that prefer to focus on external links and referrals, BeUniq offers the option to hide the “Add to Cart” button on product pages. This feature, along with its mobile compatibility, ensures a seamless and optimized browsing experience for your customers, regardless of the device they’re using.
About the pricing, BeUniq – External Links offers a Basic plan priced at just $2.99 per month. This affordable plan is perfect for small to mid-sized businesses looking to enhance their external link capabilities without breaking the bank.

Key features:

  • Install with one click, no coding skills needed
  • Generate unique links for each blog article, page, and product page
  • Support for multiple links, allowing you to add custom links as needed
  • Hide the Add to Cart button on product pages and ensure mobile compatibility
  • Customize the button style to seamlessly align with your theme design

Pricing:

  • Basic plan: $2.99/month

Final Thoughts

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!

FAQs

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.