How To Create Custom Popups for WordPress From Scratch

In order to achive this feature you normally need to install a plugin and then create any popups for wordpress you want. But in this tutorial I will show how to do this feature on your own using PHP, jquery and few lines of css. The popup content will be administrable from admin and you… Continue reading How To Create Custom Popups for WordPress From Scratch

How To Add Woocommerce Reviews On Listing Page

Using the below bunch of code you will be able to add woocommerce reviews for every single product. The reviews will appear on category page, shop page and on all places where you have products listed using woocommerce query. Adding the reviews on the listing page will increase the customer confidence in order to buy… Continue reading How To Add Woocommerce Reviews On Listing Page

How To Create Woocommerce Tabs For Product Page

In this tutorial we will create new woocommerce tabs for product page, which will be administrated from admin. We will use ACF because is one of the best plugins for WordPress at the moment. To achive that, we will create few custom fields for our product page, and then we will create a hook to… Continue reading How To Create Woocommerce Tabs For Product Page

How To Create Domain Nameserver Using SSH CentOS 7

In this tutorial I will try to walk you through the process of creating new domain nameserver for your VPS or dedicated server. In order to achive this you will need SSH access, in this tutorial I will use PUTTY and centos 7. First thing we have to do is to install the bind utilities… Continue reading How To Create Domain Nameserver Using SSH CentOS 7

How to Add Custom ACF Fields to User Columns in WordPress

In this tutorial I will show you the code you need to add in your functions.php in order to add new acf fields to user columns in wordpress admin panel. The best part here is after you add the new column in users listing, you will be able to search by this field too. Add… Continue reading How to Add Custom ACF Fields to User Columns in WordPress

How To Search by SKU In WordPress – ACF Query

In this tutorial I will show you what code you have to implement in your functions.php in order to make Post Object acf field search by a SKU. In this example we will use sku for a post object type product. Anyway using the same code you can add any type of custom query you… Continue reading How To Search by SKU In WordPress – ACF Query

How to remove nginx cache CENTOS 7

In order to reduce TTFB and to have a more fast website you can activate nginx cache. But after you make an update in css file or javascript you will have to remove nginx cache. To do that open up your Putty and login to the server as root and write the following code in… Continue reading How to remove nginx cache CENTOS 7

How to Implement WordPress Login With Email

If you are trying to implement a custom login form in wordpress you will see that you have to options only for login with username. In order to make your login form work with username and email you have to create a custom function where you check what type of data user added in form’s… Continue reading How to Implement WordPress Login With Email

How To Create a Website On Your Own – WordPress Part 1

In this tutorial I will show you step by step how to create a website on your own with CSS, HTML, jQuery and PHP. There is no need to know any of this, because you will understand when you will start to write your first lines of code. For this tutorial we will use WordPress,… Continue reading How To Create a Website On Your Own – WordPress Part 1

How to create custom wordpress user registration form

In this tutorial I will show you how to implement a custom registration form for your wordpress website using ajax. Using ajax we will enhance the UX for our website because we will create real time actions. First of all we need to create the HTML structure for our form, which should look like below:… Continue reading How to create custom wordpress user registration form