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 -
HTML provides <video> tag to embed any video in the webpage.
Here is a sample of video element usage that will embed a video in your web page:
<!DOCTYPE html> <html> <body> <h1>The video element</h1> <video width="320" height="240" controls> <source src="[url to your video]" type="video/mp4"> Your browser does not support the video tag. </video> </body> </html>
Autoplay video in HTML web page -
For the desktop devices you can simply autoplay attribute in the video tag to autoplay the video once the webpage is loaded.
Sometime, it can happen when our try to autoplay video in mobile browser then instead of autoplay it just shows you a blank thumbnail. In this case you will need to use muted attribute as well.
<!DOCTYPE html> <html> <body> <h1>The video element</h1> <video width="320" height="240" controls autoplay muted> <source src="[url to your video]" type="video/mp4"> Your browser does not support the video tag. </video> </body> </html>
Comments
Post a Comment