Points to know when you design your website Homepage

Blog, Themes, Web Design & Programming
We all know that Shopify platform is being used by the users worldwide, some of them are selling their items, products and services on this platform while others (such as audiences OR clients) are buying useful items, products and services. Shopify is an eCommerce platform, so the main object to make website on this platform is to sale the products in a very easy and best. So when a seller uses this platform, so many questions come in their mind, most important one is – what details to be covered on home page of the Shopify store. Your website homepage provides 2 important information to the users – 1. An introduction to your brand, 2. A set of instructions meant to help users to find what they need. This page…
Read More

Team Startbit – Working from Home during Corona outbreak

Blog
Stay Home Stay Safe!!! Team Startbit is available for the work and clients always. Fighting the spreading of #covid19, while being staying at home, maintaining #socialdistancing and giving the best results as before. Our aim is to provide BEST & TIMELY SERVICES to our clients. Our passionate team members amidst this #coronavirus outbreak, working from home dedicatedly with all possible efforts.We appreciate their unprecedented commitment in this hour of #coronacrisis.#teamstartbit#proudteam#teamefforts#wfhWe are working with same energy, passion and dedication to provide on-time delivery. This is the time to maintain social distancing and we are very much committed to it and following all the guidelines issues by Govt. of India and WHO. Due to our team's efforts we are delivering all the work as usual during this crisis.
Read More

Rest API using JWT Authentication with Laravel 6.13.1

Blog
JWT authentication provides a secure way to transmit data between the client and server. Using JWT we can transfer data and information between client and server. In this post, we will look at how we can create a rest API security using JWT authentication and Laravel based API. Generally, We use rest API services on different types of platforms such as web, android and IOS. If you are familiar with front-end development languages like ReactJs, AngularJs & VueJs then you have idea to use API services to create dynamic front-end web application. Why we should use JWT token based authentication? If you have a look in the config/auth.php file, You can find out laravel default authentication configuration. Laravel’s authentication functionality is based on the guards and providers. Here providers defines…
Read More
SameSite Cookie & Shopify Apps

SameSite Cookie & Shopify Apps

Blog, Ruby on Rails, Shopify
With the release of Chrome 80 on February 4th, 2020, the default behaviour of Chrome will change from allowing cookies in a cross-site or third-party context to denying them, unless specific attributes are included as a part of the cookie. The new version of Google Chrome will be blocking 3rd party cookies, and hence breaks lots of Shopify apps. In May 2019 Google announced that cookies that do not include the "SameSite=None" and Secure" labels will not be accessible by any third parties, in Chrome version 80 and further. The Secure label means cookies need to be set and read via HTTPS connections. SameSite prevents the browser from sending this cookie along with cross-site requests. The main goal is mitigate the risk of cross-origin information leakage. It also provides some…
Read More
SameSite cookie updates by Chrome

SameSite cookie updates by Chrome

Blog, Tips
Google Said: In May 2019 Google announced that cookies that do not include the "SameSite=None" and Secure" labels will not be accessible by any third parties, in Chrome version 80 and further. The Secure label means cookies need to be set and read via HTTPS connections. Chrome SameSite cookie default is: "None" which allows third-party cookies to track users across sites. But from February 4 2020, cookies will default into "SameSite=Lax" which means cookies are only set when the domain in the URL of the browser matches the domain of the cookie. Any cookie with the "SameSite=None" label must also have a secure flag, meaning it will only be created and sent through requests made over HTTPs. Meanwhile, the “SameSite=Strict” designation restricts cross-site sharing altogether, even between different domains that…
Read More

Happy New Year 2020

Blog
“As the new year renews all the happiness and good tidings, hope the joyful spirit keeps glowing in your heart forever! Happy New Year!” “Everything about the future is uncertain, but one thing is for sure that God had already planned all our tomorrows, we just have to trust him today, We heartily wish a beautiful tomorrow for you and your family. Happy New Year 2019!”
Read More

Woocommerce Admin

Blog
Woocommerce team created the new plugin for the wordpress in which we can find a new JavaScript-driven interface for managing your store. The plugin includes new and improved reports, and a dashboard to monitor all the important key metrics of your site. WooCommerce Admin has been translated into 4 locales. Anyway, this is a good start, as they write on its plugin page header: Test drive the future of WooCommerce. A quicker, JavaScript-powered interface with exciting new features. So I totally believe that the developer team is already focused on optimizing the speed issue, good job! Highlights Dashboard Customization For a while now you have been able to chose which charts, summary numbers, and leaderboards are displayed on your dashboard – but now you can change the order in which…
Read More

How to setup PayPal Express Checkout payment for India sellers?

Blog
PayPal Express Checkout payment is available in India selling in Indian Rupees (INR) or United States Dollars (USD). You can now add PayPal as an option during the payment step in the checkout process in India. Add the buttons to your website Now that you've seen the Smart Payment Buttons in action, add the button code to your website. Copy and paste this code into an HTML page and view it in your browser. You'll use the code to start a basic integration. For Smart Button Integrate in Website: https://developer.paypal.com/docs/checkout/integrate/ In shopify we can add the paypal by follow these steps Steps: From your Shopify admin, go to Settings > Payment providers.In the PayPal section, select your PayPal account type.Click Activate.Enter the email address for your PayPal account, then click Next.Enter the password for your PayPal account,…
Read More
Default Routing In Codeigniter

Default Routing In Codeigniter

Blog, PHP, PHP Scripts, Techniques, Web Design & Programming
One of the most common problem that a beginner faces with codeigniter is the presence of index.php in the URL just before the name of the controller. This makes the URL look odd. Also, whenever developers are trying to form a link during the development of a project, it becomes mandatory for the developer to add index.php in the URL otherwise the application does not work and keeps on providing a 404 Error (Not FOund). So, in order to make the URL of the codeigniter user friendly , we can use .htaccess file. This .htaccess file helps us in changing the default routing behavior of Codeigniter. This .htaccess file contains some line of code which can help us achieve our target and it is placed in the root directory of…
Read More