How to Create Plugin in WordPress From Scratch – Part 1

Plugins are one of the best parts of using wordpress because you can install them very easy and get a new functionality for your website. You can find out there a plugin for alomost anything you want for your website. However you have to pay attention to what install in your website because some of… Continue reading How to Create Plugin in WordPress From Scratch – Part 1

How To Get Posts In WordPress by Repeater Value

In this tutorial we will get all posts from a custom post type which have a certain key and value from a repeater acf field. To do this we will create a custom function where we will check what we need in order to get the rights posts.  Get Posts In WordPress by Repeater Value… Continue reading How To Get Posts In WordPress by Repeater Value

How To Deal With WP Ajax Response 0 Error

I am sure many of you get this error when you try to implement a new ajax in wordpress. Even if all your ajax code is right, you still get the error in console or in network tab. It’s annoying because anything you try still get the same ajax response.  WP Ajax Response 0 In… Continue reading How To Deal With WP Ajax Response 0 Error

How To Make Programmatically WordPress Login PHP

In this tutorial we will try to programmatically login user using PHP. This functionality is usefull when you create a custom registration form and after registration you auto login the user in his account. Or if you want to register user account for an easy login. Programmatically WordPress Login PHP In order to successfully autologin… Continue reading How To Make Programmatically WordPress Login PHP

How To Create A Php Mention System Using Quilljs

In this tutorial we will create a mention system in php using quilljs. In order to achive this functionality we will need to create the html form, download the quill js plugin. Quill js is a very usefull rich text editor, this plugin is very easy to use and you can add your own scripts… Continue reading How To Create A Php Mention System Using Quilljs

How To Create Secure Server With Ratchet Websocket Php

In this tutorial I will show you all required steps in order to implement a websocket server using Ratchet library. Ratchet is PHP library which provide necessary tools for developers to implement real time applications. Using ratchet you can create a websocket server which will handle all concurent connections. Then, from server side you can… Continue reading How To Create Secure Server With Ratchet Websocket Php

Published
Categorized as PHP

How To Update Merchant Preferences In Paypal Billing Plan PHP

In this tutorial I will show you how to update merchang preferences in paypal billing plan, even if there are a lot of tutorials and paypal’s documentaiton is pretty good, they have some issues already opened on gitrhub from last years and it seems nobody solve them, so if you want to implement some functions… Continue reading How To Update Merchant Preferences In Paypal Billing Plan PHP

How To Export Woocommerce Orders to XML Using PHP

This tutorial will show you how to export all your woocommerce shop orders in xml file. We will use woocommerce default functions to get all the data we need to generate the xml then when we will access a specific link the xml will be auto generated again and again. If we want to automate… Continue reading How To Export Woocommerce Orders to XML Using PHP

How To Export HTML to Excel using PHP

Excel is among the most used file types to export your website data, so in this tutorial I will show you how to export html to excel using php. It’s not that hard I will give you the main class of this functionality, then you only need to call the function and provide the required… Continue reading How To Export HTML to Excel using PHP