A space to discuss online store customization, theme development, and Liquid templating.
I want to add a log out button for my customers account page'.
@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
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?
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
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, 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