Oct 1, 2016
Are your 404 pages a dead end? Instead of leaving customers hanging when they hit a 404, try to guide them to other parts of their website that might be more useful. Customize your 404 page to featur...
Why do offline-retailers spend about $60 billion annually on in-store display for special events? Because customers are much more lavish when being emotionally affected. If you’re doing online busine...
https://www.smashingmagazine.com/2016/09/freebie-flat-line-ux-and-e-commerce-icon-sets-83-icon-sets-ai-eps-png-svg/
No content to show
User Activity
05-13-2021
@Hellstromprints I suppose you want to hide it from collection pages. correct? Paste this CSS at the very bottom of your california.css inside Assets . This should hide the number of products as in below screenshot.collection .head h4{ display:non...
On normal stores (basic plan) they have a customize option for Buy button, not sure about Lite version though @Renovation-Inc Try updating the styles for button inside Product component, if you can find it inside your embed code. attaching screenshot...
Adding<input type="hidden" name="type" value="product"> should work. Try this code instead @momzilla_ <form action="{{ routes.search_url }}" method="get" role="search" class="search-form search-page-form">
<div class="input-group input-g...
@DonPseudo update the code you already added inside theme.js.liquid in Step 4. See screenshot
Add dots: false to $('.product-slideshow') @DonPseudo $('.product-slideshow').slick({
dots: true,
infinite: true,
speed: 500,
slidesToShow: 1,
dots: false,
slidesToScroll: 1,
arrows: false,
asNavFor: '.product-slidesho...
@rvandyck this might help you https://community.shopify.com/c/Shopify-Discussion/Create-a-collection-by-color/td-p/381588
05-04-2021
Paste it at the very bottom of Assets/theme.css. If you are using older version of Debut, look for theme.scss.liquid inside Assets/Remove the '>' .hero__inner form.search-form { margin-top: 40px}
05-03-2021
1. set margin-top for the search-form using the CSS selector I mentioned above.hero__inner > form.search-form { margin-top: 40px} 2. I can see that you have 4 </div> (closing tags) after the </form>. There should be only 3 </div>.
05-03-2021
@Andrew-Alcott You can do this in two simple steps. Try it on duplicate theme first, instead of the live themeOpen sections/hero.liquid ( Image with text overlay section) , locate <div class="hero__inner"> Copy the search-form code from templates/s...
@bethchan you can create an alternate product template for those 5 products. refer https://shopify.dev/tutorials/customize-theme-create-alternate-templates
02-03-2021
Try line_item.line_price instead. The liquid variables are different for order printer app.
text-transform: capitalize;Refer : https://www.w3schools.com/cssref/pr_text_text-transform.asp If you are unsure about the CSS selector, please share the URL
updated the code based on https://github.com/Shopify/shopify-express/blob/master/middleware/webhooks.jsapp.post("/webhook", async(req, res) => {
const data = await req.rawBody
const hmacHeader = await req.get('X-Shopify-Hmac-Sha256')
try{
...
Thanks to @ken_smas . I finally made it work. Is async/await is a best practice here?const express = require("express")
const bodyParser = require("body-parser")
const crypto = require("crypto")
const secretKey = "xxxxx"
const app = express()
const...
@marbs can you share the link?
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
2368 | 05-03-2021 09:01 AM | |
15318 | 06-03-2020 10:51 AM | |
3047 | 06-03-2020 04:17 AM | |
6689 | 01-07-2020 03:34 AM |