How to check what is the theme of a store using Shopify
When you visit a store created by Shopify and you are fascinated by the theme of this store. You want to install it for your store but you don’t know what is this theme....
When you visit a store created by Shopify and you are fascinated by the theme of this store. You want to install it for your store but you don’t know what is this theme....
Use Winver command First, you open the Run dialog box using hotkey Windows + R; fill winver and click OK. If you see Version 1703 with OS Build 15063.xxx, then Windows Creators Update is installed...
Today, I have a task with request: How to add days to current date in Javascript? and here was the code I used:
1 2 3 4 5 6 7 8 | function addDays(dateObj, numDays) { dateObj.setDate(dateObj.getDate() + numDays); return dateObj; } var now = new Date(); //Current date var nextWeek = addDays(now , 7); // Add 7 days alert(nextWeek); // Result |
This is my code. You can consult. Good luck.
With PHP, We easily get the URL by $_GET method. With JavaScript is not so easy but you still can do that with function below:
1 2 3 4 5 6 7 8 9 10 | function GetURLParameter(sParam){ var sPageURL = window.location.search.substring(1); var sURLVariables = sPageURL.split('&'); for (var i = 0; i < sURLVariables.length; i++){ var sParameterName = sURLVariables[i].split('='); if (sParameterName[0] == sParam){ return sParameterName[1]; } } } |
Now you can using this function get URL...
Today, When I visited a website for freelancer and I found a service from an Indian’s freelancer. He said he can create a email signatures for you with price is $5. It’s cheap. But...
Did you know that the cart page is, on average, the 2nd most visited page of any eCommerce website? (The first being the homepage). Most Shopify store owners overlook their cart page and wonder...
If you are a web developer, the errors about jQuery are the most frequent. Instead take many time for debug to find fault, you just pay attention and you can easily identify common causes...
ShutterStock is a digital photo business website. Photographers will deposit their images at here and users worldwide can purchase these photos through ShutterStock. And of course the photo on ShutterStock is not free and...
This morning, May 15, 2017, Bkav Technology Group (Vietnam) has released the free tools to check WannaCrypt (also known as Wanna Crypt0r or Wanna Cry) – a powerful malware that is spreading vigorously in...
What happened? This week, Trump signed a resolution allowing ISPs (Comcast, Verizon, AT&T, etc.) to sell your browsing habits without your permission. Yes, it’s offical. Privacy is dead. How does it effect you? A...