WordPress permalink pagination not working
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…
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…
Many a times when you view the php version in the browser by displaying the phpinfo() information and the php version that is displayed when you see by typing the…
function makeAjaxRequest(data1,data2,.....,datax){ $.ajax({ 'type':'POST', async: false, url: 'http://www.example.com/some_request_url', data:{param1:data1,param2:data2,....,paramx:datax}, success : function(response) { console.log(response); // Using this you can check the posted data in browser console window return true;// you…
I had code on my gitlab repository, Another person is also working on the same code . He had committed , pushed and merged his changes on the master branch.…
In Yii2, while you use gridview widget to display your table data, for performing any operation on the record by selecting the checkbox, gridview assign the value of the first…