Using the pdf library dompdf in your WordPress page to convert some HTML you already have generated to a PDF file will be explained in this article. We will be doing that by creating a WordPress page template. The page template will include the dompdf library and convert an example HTML to a PDF file Continue Reading …
Latest Posts
WordPress : Add Text or Content To Bottom Of Post without plugin programmatically
This article will describe in detail adding text or any other content at the bottom of all posts programatically at run time without any changes to the wordpress database.The article will discuss 7 different requirements all done without a plugin through theme’s functions.php file as follows :- Adding simple text or any content as Ads Continue Reading …
WordPress : Execute external php file
If you have created a folder within your word press directory and have placed a php file there and you would like to execute this php file then this article will tell you in detail how to run php files external to your theme.There are 3 Methods explained in this article.You will not require a Continue Reading …
Change thumbnail size in wordpress
We must understand theme thumbnails sizes before I tell you about changing thumbnail sizes without using a plugin.Featured image and thumbnail are just the same in WordPress. The Thumbnails sizes are defined in WordPress Settings->Media . The smallest thumbnail out there is used as thumbnail in the archive pages,search and category post listings.This may be Continue Reading …
Windows 10 classic start menu enable
How to enable classic style desktop in windows 10 with classic or windows 7 style start menu ? Well if that is your question then this article will describe exactly how you can do that. This may be required if you have recently migrated to Windows 10 and may find the Windows Menu styles different Continue Reading …
Encrypt and Decrypt a file in java
This article will describe how to encrypt and decrypt a file in java. We shall demonstrate file encryption using example source code.This source code has been tested to work not only on text files but also on audio video files and images.The name of the file, encrypt/decrypt and the password to be used for the Continue Reading …
Determine the Operating System installation date using wmi in vb.net programmatically
This article will describe how to determine the operating system installation date using wmi with vb.net source code.The wmi object is created and queried for the operating system installation date. Here is the example source code Continue Reading …
How to get windows firewall status programmatically in vb.net
I am going to tell you how to get windows firewall status programmatically alongwith the example source code. To achieve this the netsh command is executed and its output is captured. For this the process ExecuteProcessSilentlyAndCaptureOutput is used To see the code for the ExecuteProcessSilentlyAndCaptureOutput first read the following article Execute Process Source Code Get Continue Reading …
Double linked list in c++ implementation
In this double linked list tutorial we go step by step in building our doubly linked list and towards the end we have the source code for a complete program implementing the doubly liked list. The linked list is a collection of nodes of a given type For demonstration purpose we create a type Continue Reading …
How to track click on a link with ajax and javascript
I simply wanted to know on which links the user clicks. So I devised a method to capture these link URLS using javascript and posted them to server storing them in a log file.If this is what or something similar you would like to to do then read on. This allowed me to see the Continue Reading …
WordPress dompdf installation in page template example
Using the pdf library dompdf in your WordPress page to convert some HTML you already have generated to a PDF file will be explained in this article. We will be doing that by creating a WordPress page template. The page template will include the dompdf library and convert an example HTML to a PDF file Continue Reading …
WordPress redirect page with countdown timer
If you want to redirect a specific page on your WordPress website, displaying a message along with a countdown timer something like a splash page, redirecting to a internal or external page when countdown reaches zero,then please read on. This article will describe in detail how to perform the redirect without a plugin. Step Continue Reading …
WordPress : Add header code for a specific page without plugin
There may be a requirement when you would like to place header code consisting of scripts or meta tags to appear on site header for a particular page only and not on all pages. Two Methods will be described in this article showing how to do that without a plugin, step by step. Method Continue Reading …
Php script to split large files to smaller files
This article will describe how you can split large php files line by line to smaller php files. If you have a large php file with content in each line of the file and you would like to convert it to smaller chunks then here you will find the php script code to do that Continue Reading …
Access windows filesystem in ubuntu virtualbox
This article will describe how to access a windows drive in ubuntu operating system installed in virtual box machine. Shut down the virtual machine. From the virtual Machine Menu,Go to Machine->settings->Shared Folders. Click on Machine Folders -> Blue Folder Icon with Plus Sign on the right (Add Folder Icon) Click on folder path -> Choose Continue Reading …
Large .thumbnails folder in DCIM folder in android.
Are you facing the problem of having a large .thumbnails folder in the the DCIM folder in the android.This is actually an error and android automatically creates the folder with files that show a very large size wheras actually they are not.This might create problems if you are backing up your files to the cloud Continue Reading …
WordPress : Using syntaxighlighter plugin with gutenberg editor causes error
Do you use Syntaxhighlighter Evolved Plugin to highlight code in gutenberg block editor and it creates error in the form of replacing the code with funny characters while publishing or updating the post ? If yes then this article will describe exactly how to fix this error from occurring and breaking the code. If you Continue Reading …