How to disable specific wordpress plugins from automatic upgrade
Sometime there is need to use some plugins in an application and you have the need to customize it UI or functionality to meet your business requirements. You install the…
Sometime there is need to use some plugins in an application and you have the need to customize it UI or functionality to meet your business requirements. You install the…
Put the below code in youractivetheme.theme file /** * Implements hook_preprocess_HOOK(). */ function _preprocess_webform_confirmation(&$vars) { if ($vars->id() == 'put your webform id') { // Set your custom message here $markup…
How to use “grep” command in linux or macos to find text inside all files in a folder and including subdirectories Command for the same is grep -rl "string to…
Many a time you have to host your website on multiple server such as load balancer to server high traffic website. It is obvious that if i have a load…
Say for example i have created a custom post type. I have implemented pagination for the same. When i call this url http://localhost.dm/news/multi-media-gallery/page/2/, it show page not found. But if…
I want to trigger an event every time i click on select on any element by id First i will try to set the input value by the following code…
Normally when you use contact form 7 plugin , for dropdown select option, there is no option to set blank value for the first option to validate the select field.…
In Yii2 Gridview normally to display the action button we have the following chunk of code $columns = , 'name', 'description:ntext', 'status', ]; The output you see as below: Now…
By default apache write the access log and error log in the single file. Later it grow in sizes over days and then when you have to debug you find…
When you have access to the command line and you have the export large database, you will not be able to export from phpmyadmin. Hence mysql provide you handy method…