Create a floating share button without a plugin.

2020-06-05T02:05:29+00:00

Hello I am here again and I am going to teach how to create a sticky share button without a plugin this is easy you just need a basic html, simple wordpress function, css and javascript to do this. Also you need the icoomon icons well this is pretty indeed when you done applied it.

Create a floating share button without a plugin.2020-06-05T02:05:29+00:00

How to create your own shortcode safe and clean in WordPress?

2020-05-30T04:16:16+00:00

Hi there, I will teach how to create your own shortcode in wordpress in a secure way and very clean code. Well it was easy to create your own shortcode but did you consider it safe and clean? Well old traditional way we code it in the function.php as example like this right? function client_shortcode(

How to create your own shortcode safe and clean in WordPress?2020-05-30T04:16:16+00:00

WPBB Creating a plugin more secured way

2019-08-05T06:58:35+00:00

Base on my experience For security I always used OOP here, Object Oriented Programming, which you will usually use a Class as blueprint of your functionality and interface you can learn OOP here when you are not familiar. What is WPBB? WORDPRESS PLUGIN BOILERPLATE - a standardised, organised, object oriented foundation for building high -

WPBB Creating a plugin more secured way2019-08-05T06:58:35+00:00

Read the Query String Node.Js

2019-05-01T11:11:15+00:00

The function passed into the http.createServer() has a req argument that represents the request from the client, as an object (http.IncomingMessage object). This object has a property called "url" which holds the part of the url that comes after the domain name: var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.write(req.url); res.end(); }).listen(8080); Save the code

Read the Query String Node.Js2019-05-01T11:11:15+00:00

Using An Exit Intent Listener To Manage Popups On A Page

2019-04-24T12:39:38+00:00

Not too long ago I wrote a tutorial titled, Create an Email Subscription Popup with jQuery, that demonstrated how to create popup modals within your web application. In this example the modals were presented on a timer. If you hadn’t noticed, and I think most people did, The Polyglot Developer was using those modals for newsletter

Using An Exit Intent Listener To Manage Popups On A Page2019-04-24T12:39:38+00:00

Node.js Modules

2019-04-22T16:03:39+00:00

What is a Module in Node.js? Consider modules to be the same as JavaScript libraries. A set of functions you want to include in your application. Built-in Modules Node.js has a set of built-in modules which you can use without any further installation. Look at our Built-in Modules Reference for a complete list of modules. Include Modules

Node.js Modules2019-04-22T16:03:39+00:00

How Node.Js Work in AWS

2019-04-17T12:13:28+00:00

I am starting learning how node js work I made a first video how this will work in aws or amazon server. Once I am done and configure it correctly I will start my own chat API using node js.  Learning is fun when you have the passion to do it :). Here is the

How Node.Js Work in AWS2019-04-17T12:13:28+00:00

Convert a putty .ppk key to an Amazon .pem file on OSX

2019-04-10T09:03:14+00:00

This article will show you how to generate a .pem file from an existing .ppk key. 1. Install putty on your mac Done easily with homebrew. $ brew install putty 2. Generate the keyWe will use puttygen to generate the key. $ puttygen key.ppk -O private-openssh -o key.pem key.ppk: the original file name/path. -O private-openssh: the output type. private-openssh is used to save an

Convert a putty .ppk key to an Amazon .pem file on OSX2019-04-10T09:03:14+00:00

How to Create a WordPress Plugin

2019-04-01T14:38:54+00:00

I made a video with regards creating your own plugin you can visit it here Creating My Own Wordpress Plugin Playlist. I already published 1 plugin in the wordpress.org this one Amelia Shortcode Extended. Wordpress Plugin Creating a wordpress plugin is easy I made a video and you can follow that steps for you to understand

How to Create a WordPress Plugin2019-04-01T14:38:54+00:00

How to Get Magento 2 Attribute & Attribute Options Programmatically

2019-03-25T01:13:48+00:00

For Magento 2, attributes are options to describe the products and its features. It is a property of the product. It helps potential customers to choose the best-fit product for their needs. By default, Magento 2 products have predefined attributes like name, price, description etc. To show the characteristics of a product, custom options are

How to Get Magento 2 Attribute & Attribute Options Programmatically2019-03-25T01:13:48+00:00