Creating customizable products in your Shopify store not only increase your customer satisfaction, it also increases your conversion rate. Here is a method to add custom options for your Shopify product and convert it into personalized product - Go to Shopify store page and search for "Advanced Product Customizer" app or you can directly the the Shopify app page by clicking on this link Advanced Product Customizer . Install Advanced Product Customizer app for free in your Shopify store From the application dashboard, enable to app embed block to complete the installation process Click "Product Custom Options" From the Shopify products list, select the product on which you want to add custom options. Advanced Product Customizer offers Image Swatch, Color Swatch, Text box, File Upload, Radio, Checkbox, Date Picker and more. Here is the a demo video for adding custom option for a Shopify product -
I wanted to show a countdown on my webpage. So I searched across the internet to find the solution. I found a jQuery library - Countdown.js useful for this. Here I am sharing the script used for creating the default countdown of this jQuery library.
<head>
<title>jQuery Countdown</title>
<link rel="stylesheet" href="Styles/jquery.countdown.css"></link>
<style type="text/css">
#defaultCountdown { width: 240px; height: 45px; }
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="Scripts/jquery.plugin.js"></script>
<script type="text/javascript" src="Scripts/jquery.countdown.js"></script>
<script type="text/javascript">
$(function () {
$('#defaultCountdown').countdown({ until: +600});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="defaultCountdown">
</div>
</form>
</body>
Put the above script inside the html tag of your webpage and it will generate a default countdown for 10 mins. Here is the screenshot for the default screenshot -
Comments
Post a Comment