How can I change the name of my homepage on my dual domain store?

Hello,

I have two different domains pointing at my Shopify store. Projects817.com and 817apparel.com. I created a landing page (https://projects817.com/pages/landing-page) that I can get both URLs to point to using this code :

{% if template == ‘index’ %}

{% endif %}

If they click on the women’s apparel they are directed here : https://projects817.com/

if they click on the men’s button they are directed here: https://projects817.com/pages/mens-home-page

I want to set my logo as unclickable and would like to create a home button in each menu to so that the customer can go back to the home page if needed, however with the code I have the home button always redirects back to the landing page. So at this point, I think that I need to rename my home page (women’s home page) so that I make everything work correctly, however, I have no clue how to do that. Can someone please help me?

Hi @Only1mrsfragili
If you want to prevent click action for the logo,
You can try to add this code into the bottom of the file styles.css

.header__logo {
pointer-events: none;
}

I need to rename my homepage in code so that when I click home, it actually takes me to the women’s home page and not the landing page.