Hi,I activate ssl for my site, only for checkout pages,admin area and register, and this pages work good,but another pages (http) not view what I "logged in".When I set "Force SSL for all site pages" pages view what I "logged in", but I dont want use https for this pages...How I can fix it?

Use nop 3.8
set "SSL enabled"=true
set "Secure URL" = https://myStore.com/
in web.config set
    <authentication mode="Forms">
      <forms name="NOPCOMMERCE.AUTH" loginUrl="~/login" protection="All" timeout="43200" path="/" requireSSL="true" slidingExpiration="true" />
    </authentication>

and

      <providers>
        <add name="MySessionStateStore" type="Microsoft.Web.Redis.RedisSessionStateProvider" host="localhost" accessKey="" ssl="true" />
      </providers>