by Techfivestars | Mar 12, 2019 | Web Development
Today I will show you how to setup stripe for woocommerce from A to Z. Also, I am using WordPress version 4.9 and woocommerce version 3.5.4 in this tutorial. You also need to install WooCommerce Stripe Gateway plugin before doing following steps. How to setup stripe...
by Techfivestars | Feb 24, 2019 | Web Development
Today I will show you how to setup paypal for woocommerce from A to Z. Also, I am using WordPress version 4.9 and woocommerce version 3.5.4 in this tutorial. Paypal gateway is built in woocommerce plugin, so you don’t need to install it. How to setup paypal in...
by Techfivestars | Apr 12, 2016 | Web Development
Introduction: In this section, I will guide you how to create a login.php file which is used for user sign in the site. This file is not much different from the signup.php file. So, it will not be so difficult for you to understand if you have already read the...
by Techfivestars | Apr 11, 2016 | Web Development
Introduction: To go with signup.php I will continue introducing you how to write code for checkup.php file which is used to look up the username in the database and returns a string indicating whether it has been already been taken. checkup.php <?php...
by Techfivestars | Apr 11, 2016 | Web Development
Introduction: In this section, I continue to introduce you about how to build a social network. You will learn how to write code to help new user creating his/her account. Therefore it will enable them to login to the site. signup.php <?php require_once...
by Techfivestars | Apr 10, 2016 | Web Development
Introduction: In this section, I will introduce you the index.php which is also the default page when users access to the website. This is one of the simplest code files in our project. This file is a trivial file but necessary nonetheless to give the project a home...