Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

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

Add a log out button for customers.

Add a log out button for customers.

hillview
New Member
4 0 0

I want to add a log out button for my customers account page'.

Replies 7 (7)

BSSCommerce-B2B
Shopify Partner
1972 564 567

@hillview, Can you kindly share your url store and password?

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

hillview
New Member
4 0 0

Hi,

 

I haven’t used this community for Shopify before so am very nervous about sharing our login details. Is there a way to connect with you via the store admin?

BSSCommerce-B2B
Shopify Partner
1972 564 567

I mean the link to your site not admin store 😅 Or you could tell me what theme you're using

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

hillview
New Member
4 0 0
hillviewfarms.com.au
BSSCommerce-B2B
Shopify Partner
1972 564 567

@hillview,

Step 1. Go to Admin -> Online store -> Theme > Edit code

Step 2. Find the file theme.liquid

Step 3: Add this code before </body>

<script>
document.addEventListener('DOMContentLoaded', (event) => {
    if (window.location.pathname === '/account') {
        const logoutLink = document.createElement('a');
        logoutLink.href = '/account/logout/';
        logoutLink.className = 'logout';
        logoutLink.textContent = 'Logout';
        const customerInfo = document.querySelector('.customer-info');
        if (customerInfo) {
            customerInfo.insertBefore(logoutLink, customerInfo.firstChild);
        }
    }
});
</script>

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

hillview
New Member
4 0 0
I have added that and it’s worked, thank you so much. I have reached out to
your company via Shopify experts system regarding this but I would like to
look at getting you to provide paid services to upgrade/improve our site.

Thank you again.
BSSCommerce-B2B
Shopify Partner
1972 564 567

@hillview, Glad to hear that 😊

If it helps you, please like and mark it as the solution.

Best Regards 😍

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now