We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Open link button in new tab on mega nav promo

Open link button in new tab on mega nav promo

gina16
Excursionist
25 1 5

Hi,

How can i make the button 'Shop Now' on the mega nav image open in a new tab? www.kiki-health.com

Screenshot 2024-10-18 at 12.04.19 PM.png

Replies 5 (5)

Tech_Coding
Shopify Partner
520 133 131

Hello @gina16 

Please replace this HTML code:
<a href="/collections/vitamins-minerals-omegas" class="btn btn--overlay btn--x-small btn--secondary">
<span>Discover</span>
</a>

 

with This:
<a href="/collections/vitamins-minerals-omegas" target="_blank" class="btn btn--overlay btn--x-small btn--secondary">
<span>Shop Now</span>
</a>

 

Result:

Tech_Coding_0-1729247570315.png

 

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Shopify UI Developer
Your Coffee Tips adds a little sweetness to my day.
gina16
Excursionist
25 1 5

Hi and thank you soo much for coming back to me.

Where can I find this code to replace? 

Rohail_Ali_12
Shopify Partner
98 13 14

Hi @gina16,

You can add this script just before the closing </body> tag.

<script>

var discoverButton = document.querySelector('a.btn span');
// Check if the text inside the span is 'Discover'
if (discoverButton && discoverButton.textContent.trim() === 'Discover') {
    // Get the parent anchor element and add target="_blank"
    discoverButton.closest('a').setAttribute('target', '_blank');
}
</script>

 

The above code will add the attribute to that button.

Best,

If helpful then please Like and Accept Solution.
Feel free to contact me for your Website Tasks: info@rsdigitals.com
Explore Premium Themes with Editable Creatives: https://www.rsdigitals.com/
gina16
Excursionist
25 1 5

Thanks Rohail, but what file do I add it to? 

 
Rohail_Ali_12
Shopify Partner
98 13 14

Hi @gina16,

You can add this to theme.liquide file.

Best,

If helpful then please Like and Accept Solution.
Feel free to contact me for your Website Tasks: info@rsdigitals.com
Explore Premium Themes with Editable Creatives: https://www.rsdigitals.com/