Skip to main content

Posts

Showing posts with the label wordpress

Why did I choose Wordpress?

Why did I choose Wordpress for developing a School Management System on Subscription based SaaS Model? I have some experience in Wordpress Plugins Development, and have been developing quality applications using wordpress for quite some time now. I have even built a fully functional Accounting System on Wordpress. Checkout some screenshots of some of my wordpress based web-applications - http://www.tallydev.com/hello-world/ A little History When I had started my IT Consultancy Company (Adore I.T. Services Pvt. Ltd.), some of my clients were looking for cost-effective, quality web-applications with modern UI and UX. I had .Net(C#) Desktop Application Development experience and did not know web-development. I had bagged a project and had very little time to develop and deliver. I wanted an easy solution – a low barrier entry. After some initial research, I figured web-applications can quickly be built on top of Wordpress as a plugin. Wordpress is already providing a CMS...

Custom breadcrumb list in wordpress

While developing a custom plugin for a website I needed to post a custom breadcrumb trail. Articles on this website are based on a custom post type and some of them were very deep in hierarchical order.  (Example : Knowledgebase > Indian Mining Regulations > DGMS > Mining Legislation > Safety Conferences on Safety in Mines > X - Safety Conference) I wanted to put a series of links for visitor to follow the progression of contents. So, I thought about giving them breadcrumb trails to follow it back to wherever they want to go in the series. After some google search and some modifications: here is what I created. Hope, it may help you. This is for a custom post type of hierarchical in nature, but it can also be used for pages or other post types having hierarchies. function fn_nova_breadcrumb_trail($post) { $separator = '  > '; $trail_posts = array($post); $parent = $post; $current_post_id=$post->ID; while($parent->post_parent) {...

Datatables and Wordpress Integration problem solved.

Note: Download a working demo plugin from this project's github repository . Like other wordpress developers, I had also faced the problem of integrating datatable (server side processing) with wordpress. I tried every tips, tricks and multiple ways to solve the problem, but couldn't do it. My ajaxified functions of the wordpress simple dint work. I din't have much time and had to finish a small project on time. So, I decided to skip it and go through the developer's way : the plugin developer had suggested and implemented. I dropped the required php file with some related modifications and called the url of the php file in the datatable options in my project. It worked after few small hiccups. I wasn't satisfied though, as i wanted the wordpress centric solution, instead of using some drop-in file to complement the functionality. I had vowed to look after this problem whenever I could get some time. (You may visit the url http://www.bearinghouse.net/orde...