Integrating IMCE Drupal module with CiviCRM CKEditor
CiviCRM comes with CKEditor as a default wysiwyg editor. One of the missing feature has been ability to upload /browse existing files on the server using CKEditor. So after some…
learnings, photography, travel, adventures, passions, life etc...
CiviCRM comes with CKEditor as a default wysiwyg editor. One of the missing feature has been ability to upload /browse existing files on the server using CKEditor. So after some…
If you are using jquery sorting a select element is quite easy. Check the below code. $(“#select-id”).html( $(“#select-id option”).sort(function (a, b) { return a.text == b.text ? 0 : a.text…
I have developed very basic iphone app for CiviCRM using Titanium framework. Features Allows users to “Search Contacts” from their remote CiviCRM database. Add Individuals. App uses CiviCRM REST interface…
You can implement a module and call below function function modulename_preprocess_page(&$variables) { unset($variables); } This will unset default title, but there are 2 problems: 1. This hook is not called…
Recently we successfully upgraded one of our client CiviCRM install from v2.1 to v3.1.2. Over all I was pretty happy with the CiviCRM upgrade process considering client’s db was in…
Today I have finally finished my secret project for CiviCRM v3.1. It was to implement iGoogle style dashboard with few features specific to our project. Main base for this feature…
It was very challenging to work on 3.0 feature set and my team worked really hard to ensure release was as per schedule. Now that CiviCRM v3.0 alpha1 is out,…
Usually on Shared Hosting there are lots of restrictions, which makes it impossible to install CiviCRM. Few tricks that i learned over the time that might help others. (Especially if…
Update: Note that these instructions won’t work for Drupal 7 (due to some changes in core), hence this post is obsolete. Hence I would recommend single code base and separate…
Being a Open Source developer, i know a bit about Open Source code. This is the first time i heard Open Source concept used besides software. OpenCola is the first…