<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>bigcommerce Archives &#8212; Stampede: the strategic design &amp; technology company</title>
	<atom:link href="https://stampede-design.com/blog/tag/bigcommerce/feed/" rel="self" type="application/rss+xml" />
	<link>https://stampede-design.com/blog/tag/bigcommerce/</link>
	<description>We are creating better worlds though thoughtful design and technology. Connect with us!</description>
	<lastBuildDate>Tue, 07 Apr 2026 09:04:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.8</generator>

<image>
	<url>https://stampede-design.com/wp-content/uploads/2024/02/cropped-Stampede-Favicon-old-32x32.png</url>
	<title>bigcommerce Archives &#8212; Stampede: the strategic design &amp; technology company</title>
	<link>https://stampede-design.com/blog/tag/bigcommerce/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Embedding Forms in Bigcommerce Using Google Forms</title>
		<link>https://stampede-design.com/blog/google-forms-in-bigcommerce/</link>
					<comments>https://stampede-design.com/blog/google-forms-in-bigcommerce/#respond</comments>
		
		<dc:creator><![CDATA[Shaiful Borhan]]></dc:creator>
		<pubDate>Fri, 11 Mar 2016 01:39:00 +0000</pubDate>
				<category><![CDATA[Field Notes]]></category>
		<category><![CDATA[bigcommerce]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[front-end development]]></category>
		<category><![CDATA[Google Forms]]></category>
		<category><![CDATA[tutorial]]></category>
		<guid isPermaLink="false">http://dev.stampedelabs.com/client/v3/wp/?p=6326</guid>

					<description><![CDATA[<p>Bigcommerce out of the box sports a decent contact form that is usable for everyone 99% of the time. However, things get a little tricky if we need to add in a few extra fields in there or even a whole new form. Shaiful walks you through on how to take advantage of Google Forms to host custom forms in BigCommerce.</p>
<p>The post <a href="https://stampede-design.com/blog/google-forms-in-bigcommerce/">Embedding Forms in Bigcommerce Using Google Forms</a> appeared first on <a href="https://stampede-design.com">Stampede: the strategic design &amp; technology company</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="lead" class="lead"><a href="http://bigcommerce.com/" target="_blank">BigCommerce</a> out of the box sports a decent contact form that is usable for everyone 99% of the time. However, things get a little tricky if we need to add in a few extra fields in there or even a whole new form; for example, a product warranty registration form. This is when we handover all form responsibilities to <a href="https://www.google.com/forms/about/" target="_blank">Google Forms</a>.</p>
<div class="full"><img decoding="async" class="alignnone wp-image-7156" src="https://stampede-design.com/wp-content/uploads/2016/03/thumb-bigcommerce.jpg" alt="Bigcommerce" /></div>
<p>The standard way of embedding Google Forms is to use an iframe, which is sufficient. The more preferable way of course is by manually extracting the form&#8217;s HTML fields and re-coding it according to your theme&#8217;s HTML structure. Not only will it match your theme nicely, but you can also insert some custom JS validation on the fields as needed. Another plus is that Google Forms captures form submissions in a convenient spreadsheet format.</p>
<h2>The Steps</h2>
<p>The first step is to create two web pages in BigCommerce that will become our form page and success page when users submit the form. The form page is a <a href="https://support.bigcommerce.com/articles/Public/Creating-Custom-Template-Files" target="_blank">custom template file</a> that will contain our form HTML codes while the success page is simply a generic page. Take note of the success page URL.</p>
<p>Next, build our form in Google Forms with the most minimalist styling. Once tested and published, view its source to get the form codes and re-code the form into our custom template file — in the HTML structure we like while preserving the field names and the &lt;form&gt; action (and method). Next is some code alterations.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;var submitted=false;&lt;/script&gt;
&lt;iframe name=&quot;hidden_iframe&quot; id=&quot;hidden_iframe&quot;style=&quot;display:none;&quot; onload=&quot;if(submitted) {window.location='SUCCESS_PAGE_URL';}&quot;&gt;&lt;/iframe&gt;


&lt;form action=&quot;https://docs.google.com/forms/d/1CsZt9s0vVegFb3-Qa3162Ri7A91ggx6S9B6qvBZcyJY/formResponse&quot; method=&quot;POST&quot; target=&quot;hidden_iframe&quot; onsubmit=&quot;submitted=true;&quot;&gt;
...your form fields...
&lt;/form&gt;


</pre>
<p>Add line 1 and 2 right before our form tag and replace the correct success page URL in line 2.</p>
<p>Next, add <code>target="hidden_iframe" onsubmit="submitted=true;"</code> attributes to the &lt;form&gt; tag so that the form submits into the hidden &lt;iframe&gt; we created in line 2.</p>
<p>Finally, give it a test run. It is advisable to validate the form fields with JS to ensure the form is indeed being submitted successfully.</p>
<p>Although this guide is written for BigCommerce, the implementation steps are generic enough to be used on any platforms where you have HTML and JS editing access. Hope it helps.</p>
<p><span class="message_body">Need help making your BigCommerce store stands out from the competition? <a href="https://stampede-design.com/contact/">Get in touch</a>.</span></p>
<p>The post <a href="https://stampede-design.com/blog/google-forms-in-bigcommerce/">Embedding Forms in Bigcommerce Using Google Forms</a> appeared first on <a href="https://stampede-design.com">Stampede: the strategic design &amp; technology company</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://stampede-design.com/blog/google-forms-in-bigcommerce/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Freebie: E-Commerce Product Sashes &#038; Ribbons</title>
		<link>https://stampede-design.com/blog/e-commerce-product-sashes-ribbons/</link>
					<comments>https://stampede-design.com/blog/e-commerce-product-sashes-ribbons/#respond</comments>
		
		<dc:creator><![CDATA[Shaza Hakim]]></dc:creator>
		<pubDate>Mon, 14 Jul 2014 13:22:28 +0000</pubDate>
				<category><![CDATA[Field Notes]]></category>
		<category><![CDATA[bigcommerce]]></category>
		<category><![CDATA[design resource]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[freebie]]></category>
		<category><![CDATA[ui]]></category>
		<guid isPermaLink="false">https://stampede-design.com/blog/?p=5544</guid>

					<description><![CDATA[<p>We have designed a wide range of product sashes and ribbons in vector format for your quick use in your projects.</p>
<p>The post <a href="https://stampede-design.com/blog/e-commerce-product-sashes-ribbons/">Freebie: E-Commerce Product Sashes &#038; Ribbons</a> appeared first on <a href="https://stampede-design.com">Stampede: the strategic design &amp; technology company</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="lead"><a href="https://stampede-design.com/author/shaiful/">Shaiful</a> recently showed how to add product sashes and ribbons to an e-commerce suite like BigCommerce using jQuery in <a href="https://stampede-design.com/2013/09/add-product-sash-ribbon-in-bigcommerce-using-jquery/">this blog post</a>. We&#8217;ve also received a request to share the sashes we used in the example.</p>
<p>But why stop at that, right? In fact, we went ahead and designed a wide range of product sashes and ribbons for you. They&#8217;re all in editable vector format so you can scale them up, flip them to different corners and change their colors to suit your website style.</p>
<p>This work is licensed under the <a href="http://creativecommons.org/licenses/by/4.0/" target="_blank" rel="noopener">Creative Commons 4.0</a> so feel free to use it in your personal and commercial work.</p>
<p>Enjoy!</p>
<p><a href="https://stampede-design.com/download/11272/">Download E-Commerce Product Sashes and Ribbons (PSD)</a></p>
<div class="full"><a href="https://stampede-design.com/?downloadfile=5543"><img fetchpriority="high" decoding="async" width="492" height="1182" class="alignnone size-full wp-image-5545" src="https://stampede-design.com/wp-content/uploads/2014/07/sashes.png" alt="sashes" srcset="https://stampede-design.com/wp-content/uploads/2014/07/sashes.png 492w, https://stampede-design.com/wp-content/uploads/2014/07/sashes-125x300.png 125w" sizes="(max-width: 492px) 100vw, 492px" /></a></div>
<p><a href="http://creativecommons.org/licenses/by/4.0/" target="_blank" rel="license noopener"><img decoding="async" style="border-width: 0;" src="https://i.creativecommons.org/l/by/4.0/80x15.png" alt="Creative Commons Licence" /></a><br />
<span>E-Commerce Sashes</span> by <a href="https://stampede-design.com" rel="cc:attributionURL">Stampede Design</a> is licensed under a <a href="http://creativecommons.org/licenses/by/4.0/" target="_blank" rel="license noopener">Creative Commons Attribution 4.0 International License</a>.</p>
<p>The post <a href="https://stampede-design.com/blog/e-commerce-product-sashes-ribbons/">Freebie: E-Commerce Product Sashes &#038; Ribbons</a> appeared first on <a href="https://stampede-design.com">Stampede: the strategic design &amp; technology company</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://stampede-design.com/blog/e-commerce-product-sashes-ribbons/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Add Product Sash/Ribbon in BigCommerce Using jQuery</title>
		<link>https://stampede-design.com/blog/add-product-sash-ribbon-in-bigcommerce-using-jquery/</link>
					<comments>https://stampede-design.com/blog/add-product-sash-ribbon-in-bigcommerce-using-jquery/#comments</comments>
		
		<dc:creator><![CDATA[Shaiful Borhan]]></dc:creator>
		<pubDate>Mon, 23 Sep 2013 16:48:03 +0000</pubDate>
				<category><![CDATA[Field Notes]]></category>
		<category><![CDATA[bigcommerce]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[front-end development]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tutorial]]></category>
		<guid isPermaLink="false">https://stampede-design.com/blog/?p=4472</guid>

					<description><![CDATA[<p>Shaiful understands product sashes are a nice touch for e-commerce websites, hence he is here to show you how to have it done.</p>
<p>The post <a href="https://stampede-design.com/blog/add-product-sash-ribbon-in-bigcommerce-using-jquery/">Add Product Sash/Ribbon in BigCommerce Using jQuery</a> appeared first on <a href="https://stampede-design.com">Stampede: the strategic design &amp; technology company</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="lead">Product sashes like On Sale, Bestseller and Sold Out are certainly a nice touch for any e-commerce websites, aesthetically as well as providing a positive user experience.</p>
<div class="full"><img decoding="async" width="655" height="259" src="https://stampede-design.com/wp-content/uploads/2013/06/28-6-2013-12-20-53-AM.jpg" alt="Sample of product sashes." class="size-full wp-image-4268" srcset="https://stampede-design.com/wp-content/uploads/2013/06/28-6-2013-12-20-53-AM.jpg 655w, https://stampede-design.com/wp-content/uploads/2013/06/28-6-2013-12-20-53-AM-300x119.jpg 300w" sizes="(max-width: 655px) 100vw, 655px" /><p class="capt_block">Sample of product sashes.</p></div>
<p>In BigCommerce, exclusive product sash features are not built-in but they can be added using some clever jQuery tricks. Specifically, we need to tell jQuery to read the page for certain &#8220;triggers&#8221; or &#8220;conditions&#8221; and show the appropriate sash based on them. The key to product sashes is they have to appear in product listing pages (like category, homepage, search result) and the product details page. This means the &#8220;triggers&#8221; have to be present in all these pages for jQuery to detect.</p>
<h2>On Sale Sash</h2>
<p>In the following example, I am going to show how to add the most common of all product sashes, On Sale. Firstly, we need to set the discounted price for the appropriate products. If this was done right, the products will show up in the shop with a strike-through line on their original retail price. This element will become the &#8220;trigger&#8221; for the On Sale sash. So we just have to tell jQuery, if this element exists, show the On Sale sash. Below are Javascript codes for the category and product details pages.</p>
<h4>Product Category Page</h4>
<pre class="brush: jscript; title: ; notranslate">
$(&quot;#CategoryContent .ProductList li .RetailPriceValue&quot;).each(function( index ) {
   $(this).parents('li').find('.ProductImage').append('&lt;img src=&quot;http://myshopurl.com/path_to_image/on-sale.png&quot; class=&quot;product-sash&quot; alt=&quot;On Sale&quot; /&gt;');
});
</pre>
<h4>Product Details Page</h4>
<pre class="brush: jscript; title: ; notranslate">
if($('.DetailRow.RetailPrice').is(':visible')) {
   $('.ProductThumbImage .zoomPad').append('&lt;img src=&quot;http://myshopurl.com/path_to_image/on-sale.png&quot; class=&quot;product-sash&quot; alt=&quot;On Sale&quot; /&gt;');
}
</pre>
<h2>Any Miscellaneous Sashes</h2>
<p>A slightly trickier scenario is to show product sashes like Bestseller and New, which we don&#8217;t really have a way to configure via the BC admin. Even though BC has product tags and custom fields, these data don&#8217;t show up in the product category pages. Fortunately, we have something else to use, the main image alternate text. In BC admin, it&#8217;s the Description box of the main product image. You need to enter a unique identifying keyword in the Description box and thanks to jQuery, reading the presence of this keyword is a breeze. This method will allow you to show any kinds of product sashes.</p>
<div class="full"><img decoding="async" width="754" height="420" src="https://stampede-design.com/wp-content/uploads/2013/09/bc_admin_image_desc.png" alt="Enter the keyword into the Description field of the main image." class="size-full wp-image-4490" srcset="https://stampede-design.com/wp-content/uploads/2013/09/bc_admin_image_desc.png 754w, https://stampede-design.com/wp-content/uploads/2013/09/bc_admin_image_desc-300x167.png 300w" sizes="(max-width: 754px) 100vw, 754px" /><p class="capt_block">Enter the keyword into the Description field of the main image.</p></div>
<p>For showing a Bestseller sash, enter the keyword <em>Bestseller</em>. I personally prefer to enter the actual product name followed by the keyword to keep the semantics right, like <em>5ft Christmas Tree &#8211; Bestseller</em>. Here&#8217;s the code for showing the Bestseller product sash.</p>
<h4>Product Category Page</h4>
<pre class="brush: jscript; title: ; notranslate">
$(&quot;#CategoryContent .ProductList li .ProductImage a img&#x5B;alt*='Bestseller']&quot;).each(function( index ) {
   $(this).parents('li').find('.ProductImage').append('&lt;img src=&quot;http://myshopurl.com/path_to_image/best-seller.png&quot; class=&quot;product-sash&quot; alt=&quot;Bestseller&quot; /&gt;');
});
</pre>
<h4>Product Details Page</h4>
<pre class="brush: jscript; title: ; notranslate">
if(ProductImageDescriptions&#x5B;0] &amp;&amp; ProductImageDescriptions&#x5B;0].indexOf(&quot;Bestseller&quot;) &gt;= 0) {
   $('.ProductThumbImage .zoomPad').append('&lt;img src=&quot;http://myshopurl.com/path_to_image/best-seller.png&quot; class=&quot;product-sash&quot; alt=&quot;Bestseller&quot; /&gt;');
}
</pre>
<p>The examples I provide here only contain the necessary jQuery code snippets to make the product sash works. It&#8217;s not really a step-by-step beginners tutorial. You would need CSS to style the product sash nicely. Don&#8217;t forget about the sash graphics too, they are transparent PNGs. I can also foresee that my codes are totally template-dependent. However, if you are familiar with jQuery selectors I am sure you will be able to understand the gist and tweak the codes accordingly to fit your templates. </p>
<p>Give it a try and post your feedback below!</p>
<p>The post <a href="https://stampede-design.com/blog/add-product-sash-ribbon-in-bigcommerce-using-jquery/">Add Product Sash/Ribbon in BigCommerce Using jQuery</a> appeared first on <a href="https://stampede-design.com">Stampede: the strategic design &amp; technology company</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://stampede-design.com/blog/add-product-sash-ribbon-in-bigcommerce-using-jquery/feed/</wfw:commentRss>
			<slash:comments>23</slash:comments>
		
		
			</item>
		<item>
		<title>Customizing BigCommerce and Shopify</title>
		<link>https://stampede-design.com/blog/experience-customizing-bigcommerce-and-shopify/</link>
					<comments>https://stampede-design.com/blog/experience-customizing-bigcommerce-and-shopify/#comments</comments>
		
		<dc:creator><![CDATA[Shaiful Borhan]]></dc:creator>
		<pubDate>Thu, 27 Jun 2013 21:17:25 +0000</pubDate>
				<category><![CDATA[Field Notes]]></category>
		<category><![CDATA[bigcommerce]]></category>
		<category><![CDATA[customisation]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[front-end development]]></category>
		<category><![CDATA[shopify]]></category>
		<guid isPermaLink="false">https://stampede-design.com/blog/?p=4263</guid>

					<description><![CDATA[<p>With the abundance of Saas (Software as a Service) e-Commerce services, it must be hard to pick one for your business. Here Shaiful helps you to decide between two of his favourite ones.</p>
<p>The post <a href="https://stampede-design.com/blog/experience-customizing-bigcommerce-and-shopify/">Customizing BigCommerce and Shopify</a> appeared first on <a href="https://stampede-design.com">Stampede: the strategic design &amp; technology company</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="lead">BigCommerce and Shopify are probably two of the most well-known SaaS (Software as a Service) e-commerce solutions out there today. The main selling point of these services is they make it quick for sellers to have their stores up and running. Anyway I&#8217;m not going talk about the features they have to offer. To be specific, I&#8217;m going to share my experience working with both platforms from the perspective of template customization.</p>
<div class="full"><img decoding="async" class="alignnone" src="https://stampede-design.com/wp-content/uploads/2018/02/Fotor06272207191.jpg" /></div>
<p>Real quick, both services offer a wide array of base themes to get user started. It&#8217;s also worth mentioning that half of the themes on Shopify are premium themes.</p>
<h2>The Common Traits</h2>
<p>Both platforms use a system where the template HTML files are organized into views such as layout or snippets. They use different naming conventions but the general idea is layouts are the skeleton of the whole page and snippets are the bits of content loaded into the page. For example, a layout file could be for homepage or product category page, while a snippet is another file controlling the product loop that can be called from both layout files. Each platform has its own syntax for invoking these files and user can add new layouts and snippets. This system makes it easy to reuse repetitive codes and keeping your code tidy. Making little modifications like adding an FB Like box or a Mailchimp signup form is a piece of cake.</p>
<p>Both platforms also has a built-in HTLM/CSS code editor with basic key features such as a file browser and list of recently opened file. However, the BigCommerce editor has an extra handy feature which lists all the files dependent to the currently viewed file for quick access.</p>
<p>Now we shall compare them.</p>
<h2>BigCommerce (BC) vs Shopify</h2>
<p>Before we go any further, let me just break the news that Shopify hit a home run with this one. The winning formula is Shopify themes are made to be customized in the first place. Two key features that stood out are Theme Settings extension and Liquid programming language.</p>
<p>Theme Settings extension is fairly interesting. It allows the theme developer to tweak the settings or configuration fields of any themes. As an example, if the shop owner decided he needs to use an alternative logo when the website is viewed on a mobile phone, the theme developer can simply add a new upload field into the settings page in addition to the default logo upload field. The new variable will automatically be accessible in the template and the alternative logo can be output and controlled using CSS.</p>
<p>While BC templates only contain static calls to other template files, Shopify has its own template programming language called <a href="http://docs.shopify.com/themes/liquid-basics/index" target="_blank">Liquid</a>. Liquid comes with basic programming functions such as variables assignments, for-loops, conditional statements as well as a handful of cool helper functions. The code can be used both in HTML and CSS files. Here is a very nice <a href="http://cheat.markdunkley.com/" target="_blank">cheat sheet</a>.</p>
<p>With Liquid, a certain degree of logic can be implemented into the template such as giving different CSS class to elements based on the page currently in view. A little more advanced example is using product tags to put ribbon/sash on products in category pages. In my recent project, I tagged products with <em>bestseller</em> and used the following code to produce a Bestseller sash. While this can be implemented in BC using clever Javacsript tricks, I found that the tags system in BC to be a bit limited.</p>
<pre class="brush: xml; title: ; notranslate">
{% for mytag in product.tags %}
   {% if mytag == 'bestseller' %} 
      &lt;span class=&quot;circle sd-bestseller&quot;&gt;Bestseller&lt;/span&gt;
   {% endif %}
{% endfor %}
</pre>
<div class="full"><img loading="lazy" decoding="async" width="655" height="259" src="https://stampede-design.com/wp-content/uploads/2013/06/28-6-2013-12-20-53-AM.jpg" alt="Custom Bestseller product sash. On Sale was built-in." class="size-full wp-image-4268" srcset="https://stampede-design.com/wp-content/uploads/2013/06/28-6-2013-12-20-53-AM.jpg 655w, https://stampede-design.com/wp-content/uploads/2013/06/28-6-2013-12-20-53-AM-300x119.jpg 300w" sizes="(max-width: 655px) 100vw, 655px" /><p class="capt_block">Custom Bestseller product sash. On Sale was built-in.</p></div>
<p>The next thing I love about Shopify is the dedicated manager for Menus or Navigation in the admin panel. Admins can create as many menu groups as they like in addition to the default Main Menu. Then simply use the Liquid for-loop in the appropriate template file to render the menu (also in any way they like). This is how it looks in its simplest form. Of course, with a little bit more code you can also highlight the active menu item.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;ul&gt;
   {% for link in linklists&#x5B;'footermenu1'].links %}
      &lt;li&gt;&lt;a href=&quot;{{ link.url }}&quot;&gt;{{ link.title }}&lt;/a&gt;&lt;/li&gt;
   {% endfor %}
&lt;/ul&gt;
</pre>
<p>Once the menu structures are implemented in the template this way, it will be very easy for store admins to add or remove menu links without having to alter the template file directly.</p>
<p>Another feature that works very well with the menu manager is Smart Collection. A collection is Shopify&#8217;s way of saying category. A smart collection is somewhat a dynamic category where products are automatically assigned based on the rules defined to the category for example, if a product has a specific tag or if it falls between a specific price range. A menu can be made to link to the smart collection which gives a &#8220;product filter&#8221; sense of interaction when it is placed strategically on the page.</p>
<p>The next exciting feature Shopify has to offer is <a href="https://apps.shopify.com" target="_blank">Apps</a> to extend the functionality of your online store. There are hundreds of them but a particular one that has proved to be essential is the meta fields app, which allows the user to define additional generic text fields to products. Outputting these extra text can be done effortlessly using simple template tags. With custom meta fields, designers would have far more design flexibility when customizing the theme.</p>
<h2>BC&#8217;s Redeeming Features</h2>
<p>The one limitation of Shopify that I noticed is the checkout pages are off-limits to HTML modifications. Therefore, you won&#8217;t be able to place any special text or move the layout around. This could be due to the fact that a code mistake can cause the whole checkout process to break. CSS changes is still permitted though. BC on the other hand allows their checkout pages HTML structure to be modified.</p>
<p>One little bonus feature of BC is the template files can be accessed via FTPS or WebDAV. This can be really useful in circumstances where you need to make a directory-wide search or batch search and replace task using your local IDE.</p>
<h2>Final Words</h2>
<p>Working with BC and Shopify have been a great learning experience. But if I had to choose which one I enjoyed more, it has to be Shopify!</p>
<p>The post <a href="https://stampede-design.com/blog/experience-customizing-bigcommerce-and-shopify/">Customizing BigCommerce and Shopify</a> appeared first on <a href="https://stampede-design.com">Stampede: the strategic design &amp; technology company</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://stampede-design.com/blog/experience-customizing-bigcommerce-and-shopify/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
	</channel>
</rss>
