I am assuming that you are already familiar with WordPress and Bootstrap CSS framework. We all know and that’s why you came here. Also I guess you are also a WordPress plugin developer. If yes, then this article may save lots of your time to design your WP plugin administrative pages inside WP admin panel if you can use Bootstrap. Let’s see how we can use Bootstrap CSS in WordPress plugin page. Why Bootstrap CSS framework for WP Plugin? Because …
Category: Tips & Tricks
I don’t know if you should feel happy or not. But I can say personally it’s a very good initiative by Bangladesh Telecommunication Regulatory Commission (BTRC) to stop using illegally imported mobile phone in Bangladesh. But don’t worry, I have made a complete guide to check IMEI from BTRC to understand whether your mobile phone was illegally imported or not. Don’t forget to verify IMEI from BTRC before buying your next phone. Recently BTRC announced this initiative to verify legal …
Today is my first day in my machine to work in Windows 10. And my machine has Windows 10 installed alongside Ubuntu 14.04 LTS. But I faced my very first problem with Windows 10 today that was related to NTFS drive mounting from Linux. At last I figured out the problem. If you use Windows 10 and Linux in same machine then when you will use Windows 10, by default Windows 10 has Fast startup turned on and that will …
After clicking on any navigation link in navgation and whenever that page will be open then one active class will be added in that element. $(document).ready(function(){ var a = $('.navbar-nav a'); a.each(function(){ if(window.location.href == $(this).attr('href')){ $(this).closest('li').addClass('active'); } }) })
Typically windows server has no built-in backup transfer system via SSH or FTP/SFTP. They can only take backup and transfer to another windows machine. But in the age of cloud computing we need portablity of data. Anywhere I can put or get data. So from this sense I tried to get some handy tools which will do a perfect trick for me. For my windows server I love rsync very much. It’s lovely. I like it’s awesomeness. Also for windows …