<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="78469" data-post-id="78469">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Monotom" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Monotom/120/18031_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Monotom
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="dsignr" data-post="19" data-topic="1813">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dsignr/48/5311_2.png" class="avatar"> dsignr:</div>
<blockquote>
<p>Easy theme development.</p>
</blockquote>
</aside>
<p>I am building something very similar at the moment and therefore, it would be really interesting how you tackled the part with “theme development”? I guess you implemented a multi tenancy solution, is that correct? How did you enable theme development and do you mean with the term something similar as Shopifys implementation with Liquid? Or is it just limited to customize some stylesheets?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="78469" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/53">Post #52</a>
	                </div>
	            </div>
              <div id="likers-container-78469" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="78469"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #52"></div>
  </section>
</div>
    <div class="postbit" id="78530" data-post-id="78530">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dsignr" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dsignr/120/5311_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dsignr
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Well, I’m glad to share my workflow. The way I solved is pretty unique to my usecase, but still worth sharing.</p>
<p>In my config file, I have this:</p>
<pre><code># Setup your site's theme here.
theme = "myile"
System.put_env("THEME", theme)

config :myapp, MyAppWeb.Endpoint,
  url: [host: "localhost"],
  .
  theme: theme,
  .
</code></pre>
<p>Inside my <code>brunch-config.coffee</code>:</p>
<pre><code>theme = process.argv[process.argv.length-1]
themeUrl = "themes/#{theme}"
.
.
exports.config =
  optimize: false
  files:
    javascripts:
      joinTo:
        "js/#{themeUrl}/admin/products/crud.js": [
          "js/#{themeUrl}/common/*"
          "js/#{themeUrl}/admin/products/ui/formatting.coffee"
          "js/#{themeUrl}/admin/products/ui/product_variations.coffee"
          "js/#{themeUrl}/admin/products/crud.coffee"
        ]
</code></pre>
<p>My assets folder looks like this:<br>
<code>js/themes/myile/admin/products/ui/formatting.coffee</code><br>
.<br>
.<br>
and so on.</p>
<p>And then, I create a helper file for use inside my views:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">  def current_theme() do
    Application.get_env(:myapp, MyAppWeb.Endpoint)[:theme]
  end

  def theme_url() do
    "themes/#{current_theme()}"
  end
</code></pre>
<p>And, inside my layout file:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">&lt;%= render MyAppWeb.LayoutView, "#{theme_url()}/components/my/search-bar.html", conn: @conn %&gt;
</code></pre>
<p>This method helps me to define a standard theme. But, my store also has multisite support. Meaning, domains <a href="http://abc.com" rel="noopener nofollow ugc">abc.com</a> and <a href="http://xyz.com" rel="noopener nofollow ugc">xyz.com</a> are run on the same instance of my store, so each store uses a different theme. Directly loaded from files on disk. But they can also be switched from a graphical UI inside my custom admin panel.</p>
<p>I initially wanted to go the shopify route (using liquid templates). But, not only does it complicate your implementation, it also doesn’t add much value. Since, these are templates used from the backend interface and not by my customers, I don’t need to worry about third party devs, in which case the shopify templates would have made sense. I can simply use the tried and tested EEX templates now which more than just get the job done.</p>
<p>I hope this helped.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="78530" data-batch-url="/posts/batch_likers">
                        3
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/54">Post #53</a>
	                </div>
	            </div>
              <div id="likers-container-78530" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="78530"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #53"></div>
  </section>
</div>
    <div class="postbit" id="78532" data-post-id="78532">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Monotom" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Monotom/120/18031_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Monotom
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="dsignr" data-post="54" data-topic="1813">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dsignr/48/5311_2.png" class="avatar"> dsignr:</div>
<blockquote>
<p>I hope this helped.</p>
</blockquote>
</aside>
<p>Very interesting, thank you very much for your effort to summarize your implementation!</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="78532" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/55">Post #54</a>
	                </div>
	            </div>
              <div id="likers-container-78532" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="78532"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #54"></div>
  </section>
</div>
    <div class="postbit" id="78585" data-post-id="78585">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dsignr" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dsignr/120/5311_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dsignr
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I’m glad it was useful. No problem.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="78585" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/56">Post #55</a>
	                </div>
	            </div>
              <div id="likers-container-78585" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="78585"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #55"></div>
  </section>
</div>
    <div class="postbit" id="83900" data-post-id="83900">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dsignr" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dsignr/120/5311_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dsignr
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>As an update to anyone following this thread, I’ve decided to start writing about my journey of writing my E-Commerce application from scratch on medium and why I made the choices I made. Hope it helps! <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"></p>
<p><a href="https://medium.com/build-ideas/my-journey-of-writing-an-e-commerce-engine-from-scratch-wip-ff4adb54c352" class="onebox" target="_blank" rel="noopener nofollow ugc">https://medium.com/build-ideas/my-journey-of-writing-an-e-commerce-engine-from-scratch-wip-ff4adb54c352</a></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="83900" data-batch-url="/posts/batch_likers">
                        4
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/57">Post #56</a>
	                </div>
	            </div>
              <div id="likers-container-83900" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="83900"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #56"></div>
  </section>
</div>
    <div class="postbit" id="99746" data-post-id="99746">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="pkrawat1" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/pkrawat1/120/7503_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  pkrawat1
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p><a href="https://aviacommerce.org/" rel="noopener nofollow ugc">Aviacommerce</a> is an open source e-commerce platform in Elixir. At <a href="https://aviabird.com/" rel="noopener nofollow ugc">aviabird</a> have been working on it for last 9 months. This platform has all the core features which any basic e-commerce system should have. Developers can start exploring the project with the help from documentation <a href="https://aviacommerce.org/" rel="noopener nofollow ugc">website</a>.</p>
<p>As of now, we have just released the developer documentation. This would help developers get started with using it to create their own solutions on top of it. Next up is user guide. We’ll release it by the end of October.</p>
<p>We are expecting feedback/suggestion from the community on how can we improve this e-commerce platform. Please use Github issues to report bugs if you find them.</p>
<p>We would like to thank all the developers and clients who have helped us make this project a reality.</p>
<p>Please use the <a href="https://gitter.im/avia-commerce/Lobby" rel="noopener nofollow ugc">gitter channel</a> to interact with the dev team or if you have any questions or suggestions.</p>
<p>You can also follow us on <a href="https://twitter.com/aviacommerce" rel="noopener nofollow ugc">twitter</a> for latest updates.</p>
<h3><a name="p-99746-important-links-1" class="anchor" href="#p-99746-important-links-1" aria-label="Heading link" rel="nofollow"></a>Important links</h3>
<ol>
<li><a href="https://github.com/aviacommerce/" rel="noopener nofollow ugc">Github organisation page</a></li>
<li><a href="https://aviacommerce.org/" rel="noopener nofollow ugc">Aviacommerce docs website</a></li>
<li><a href="https://www.aviacommerce.org/demo/demo.html" rel="noopener nofollow ugc">Demo information</a></li>
</ol>
<aside class="quote quote-modified" data-post="1" data-topic="17116">
  <div class="title">
    <div class="quote-controls"></div>
    <img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/pkrawat1/48/7503_2.png" class="avatar">
    <div class="quote-title__text-content">
      <a href="https://forum.elixirforum.com/t/presenting-aviacommerce-open-source-e-commerce-in-elixir/17116" rel="nofollow">Presenting Aviacommerce, open source e-commerce in Elixir</a> <a class="badge-category__wrapper " href="/c/news/announcing/159" rel="nofollow"><span data-category-id="159" style="--category-badge-color: #d2407f; --category-badge-text-color: #FFFFFF; --parent-category-badge-color: #d2407f;" data-parent-category-id="158" data-drop-close="true" class="badge-category --style-square --has-parent"><span class="badge-category__name">Announcing</span></span></a>
    </div>
  </div>
  <blockquote>
    <a name="p-99534-presenting-aviacommerce-open-source-e-commerce-platform-in-elixir-1" class="anchor" href="#p-99534-presenting-aviacommerce-open-source-e-commerce-platform-in-elixir-1" aria-label="Heading link" rel="nofollow"></a>Presenting Aviacommerce, open source e-commerce platform in Elixir
[aviacommerce] 
<a href="https://aviacommerce.org" rel="noopener nofollow ugc">Aviacommerce</a> is an open source e-commerce platform in Elixir. We at <a href="https://aviabird.com" rel="noopener nofollow ugc">aviabird</a> have been working on it for last 9 months. This platform has all the core features which any basic e-commerce system should have. Developers can start exploring the project with the help from documentation <a href="https://aviacommerce.org" rel="noopener nofollow ugc">website</a>. 
As of now, we have just released the developer documentation. This would help developers get started with using it to create…
  </blockquote>
</aside>
 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="99746" data-batch-url="/posts/batch_likers">
                        3
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/58">Post #57</a>
	                </div>
	            </div>
              <div id="likers-container-99746" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="99746"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #57"></div>
  </section>
</div>
    <div class="postbit" id="100927" data-post-id="100927">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Cochonours" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Cochonours/120/13516_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Cochonours
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Looks nice, and just on time as I was looking for something simple and nice, and hopefully not dead like other projects linked in here.</p>
<p>I just tried your demo and there is a big red flag : why do you force customers to log in when they want to checkout? That’s a big no-no to force them to create an account or log in when most people just want to buy something and go on with their lives. See. <a href="https://articles.uie.com/three_hund_million_button/" class="inline-onebox" rel="noopener nofollow ugc">The $300 Million Button — 			UX Articles by Center Centre</a></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="100927" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/59">Post #58</a>
	                </div>
	            </div>
              <div id="likers-container-100927" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="100927"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #58"></div>
  </section>
</div>
    <div class="postbit" id="101120" data-post-id="101120">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="ashish173" src="/assets/icons/user-9f439610.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  ashish173
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="Cochonours" data-post="59" data-topic="1813">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/cochonours/48/13516_2.png" class="avatar"> Cochonours:</div>
<blockquote>
<p>why do you force customers to log in when they want to checkout? That’s a big no-no to force them to create an account or log in when most people just want to buy something and go on with their lives.</p>
</blockquote>
</aside>
<p>Wow! the revenue jump is mind-boggling for this small a change. By far the best example highlighting the importance of UX on any business.</p>
<p>We had a discussion internally about the approach to take with aviacommerce. When we started discussing it our approach was to review some of the existing e-commerce companies. Understand the approach they are taking and try to reason from there. We looked at <a href="http://amazon.com" rel="noopener nofollow ugc">amazon.com</a>, <a href="http://flipkart.com" rel="noopener nofollow ugc">flipkart.com</a>, <a href="http://shopify.com" rel="noopener nofollow ugc">shopify.com</a> flow and a couple others. In this <em>not so</em> extensive research we found out that all the platforms were taking the approach to force the user to log in before they could checkout. We believe these giants have research teams working on just making the checkout flow as smooth as possible. So we didn’t consider taking the guest checkout approach after this point.</p>
<p>However, we didn’t rule against the idea of guest checkout approach completely. We made a choice to not implement it at this point keeping in mind if the community shows interest and wants it then we’ll certainly add this feature. As an open source platform targetting the community we can’t afford to not support this. So we’ll implement this feature sooner than later.</p>
<p>At this point, we are focusing on providing support for essential third-party services such as marketing, shipping services, CRM etc. Any e-commerce platform is incomplete without the support for these services in form of plugins. Read more on our vision <a href="https://www.aviacommerce.org/blog/2018/08/02/avia-vision.html" rel="noopener nofollow ugc">here</a>.</p>
<p>Thanks for sharing your valuable feedback. It’s this kind of feedback that we are looking for.</p>
<p>FYI I am one of the members of aviacommerce project steering the project.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101120" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/60">Post #59</a>
	                </div>
	            </div>
              <div id="likers-container-101120" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101120"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #59"></div>
  </section>
</div>
    <div class="postbit" id="101123" data-post-id="101123">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="LostKobrakai" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/LostKobrakai/120/3072_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  LostKobrakai
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="ashish173" data-post="60" data-topic="1813">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/letter_avatar_proxy/v4/letter/a/a8b319/48.png" class="avatar"> ashish173:</div>
<blockquote>
<p>We looked at <a href="http://amazon.com" rel="nofollow">amazon.com</a>, <a href="http://flipkart.com" rel="nofollow">flipkart.com</a>, <a href="http://shopify.com" rel="nofollow">shopify.com</a> flow and a couple others. In this <em>not so</em> extensive research we found out that all the platforms were taking the approach to force the user to log in before they could checkout.</p>
</blockquote>
</aside>
<p>The bigger the platform the more likely it is that users already have an account on there, negating the negative effect of needing to register before buying something.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101123" data-batch-url="/posts/batch_likers">
                        4
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/61">Post #60</a>
	                </div>
	            </div>
              <div id="likers-container-101123" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101123"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #60"></div>
  </section>
</div>
    <div class="postbit" id="101224" data-post-id="101224">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Cochonours" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Cochonours/120/13516_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Cochonours
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>To complement what LostKobrakai said, the bigger platforms have a competitive advantage in requiring for people to create accounts: by doing so, users will be more likely to come back there to buy, and they want to sell often in order to promote their delivery subscriptions. Of course it only works because they are alrealdy in a position of monopoly, or at the very least are big and extensive enough to compel people to register.</p>
<p>I think for smaller platforms, and especially for the more specialised ones that do not really hope to sell a product twice or thrice to the same client, it’s much better to not force people to register. It’s always a nice option to give, but it should remain that: optional, for easier purchases later on.</p>
<p>BTW to complete the first purchase, the user will have to give his name and address, as well as email in order to receive updates about his purchase. The only thing lacking for the creation of a “real” account is a password, so the only difference between “create an accont” and “do no create yet” is one password field.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101224" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/resources-for-building-an-e-commerce-store-in-phoenix/1813/62">Post #61</a>
	                </div>
	            </div>
              <div id="likers-container-101224" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101224"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #61"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/1813/load_more?page=7">Load more posts (4 remaining)</a>
</div></template></turbo-stream>