Skip to main content

Shopify - Add password protection to your online store

Add password protection to your online store

You can add password protection to your online store.

Steps:

  • From your Shopify admin, go to Online Store > Preferences.
  • Scroll to the Password protection area, and check Enable password.
  • In Password, enter the password that you'll give to the customers who you want to be able to access your online store. Don't use the same password that you use to log into your admin.
  • In Message for your visitors, enter the message that you want to show on the password page. If you don't want to show a message, then leave this field blank.
  • Click Save.

 

Edit your password page settings

You can edit the content that shows on your password page, such as the text, colors, and typography. 

  • From your Shopify admin, go to Online Store > Themes.
  • Find the theme that you want to edit and click Customize.
  • Select Password page from the top bar drop-down menu. If you don't see Password page in the menu, then you need to add password protection to your online store.
  • To edit the sections on the password page, do the following tasks
    •  Click Sections.
    • Click on the section that you want to edit. Most themes have header, content, and footer sections.
    • Make changes to the section settings.
    • Click Save.
  • To edit the theme settings for the password page, do the following tasks:
    • Click Theme settings.
    • Click on the settings category that you want to edit. Most themes have color, typography, social, and favicon settings.
    • Make changes to the theme settings.
    • Click Save.

 

Comments

Popular posts from this blog

IIS, There was an error when trying to connect. Do you want to retype your credentials and try again?

IIS 8 error on windows server 2012 insufficient permission There was an error when trying to connect. Do you want to retype your credentials and try again? Details: Filename: \?\C:Windows\system32\inetsrv\config\redirection.config Error: Cannot read configuration file due to insufficient permissions screenshot: Solution: Steps to short out this issue: go to C:\Windows\Microsoft.Net\Framework64\v2.0.50727\CONFIG\machine.config here you got the redirection tag like the below <configurationredirection enabled="true" password="[enc:IISCngProvider:X0ObCWwZ4+PrTHiFVPtzFeCcL8u5P6KUOYfo1/0QrgZWATA5pKWqHvD8nL2crNJKyyqr4z/rBdLPjdRcaLxAMMj4l+lvp5EXXKSXueolvyGa34F4QZfbBVCM6oVNcq3M368TOTVjJv4POVFQWvu0MDVlGgReglXB+Lw5BRI4Htw=:enc]" path="C:\Windows\System32\inetsrv\config\import\" username="Administrator"> </configurationredirection"></li"> you need to change this to <configurationRedirection /> Th...

Wordpress - Contact Form 7 notification open in popup - Bootstrap modal popup

How to add open Contact form 7 Notification / Messages in Modal popup We can use the Bootstrap modal popup and Contact form 7 Doom Events to create the popup. Paste the below code in the functions.php, it will work for you (please change the messages as per the requirements): add_action('wp_footer', 'munesh_Footertext'); function munesh_Footertext() { echo '<div class="modal fade in formids" id="myModal2" role="dialog" tabindex="-1">     <div class="modal-dialog">       <!-- Modal content-->       <div class="modal-content no_pad text-center">          <button type="button" class="close" data-dismiss="modal">&times;</button>         <div class="modal-header heading">           <h3 class="modal-title" id="MSTitle">Message Sent!</b></h3>         </div>      ...