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 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 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

How to fix WordPress Wp-admin not found NGINX

If you decided to move from apache to nginx due to the speed at its disposal you will notice that some errors come up at your wordpress functionality because you need to make some settings in the configuration file of your server in nginx.  I had the same issue after installing the nginx on my… Continue reading How to fix WordPress Wp-admin not found NGINX

How to fix 404 not found for all pages except homepage in WordPress

The error with 404 not found for all pages less hompage is often caused by a configuration that is not well done. But before think about a server issue first check if you have the .htaccess file in your wordpress instalation. To do that you have to connect using FTP, or cpanel -> file manager… Continue reading How to fix 404 not found for all pages except homepage in WordPress