Try removing the old org-mode settings (s) from load-path :
(require 'cl) ;; Org-mode that was shipped with Emacs (setq load-path (remove-if (lambda (x) (string-match-p "org$" x)) load-path)) ;; ELPA (setq load-path (remove-if (lambda (x) (string-match-p "org-20" x)) load-path)) (setq custom-org-path "~/.emacs.d/org-8.2.4/lisp") (add-to-list 'load-path custom-org-path)
Also be sure to do this as early as possible in init.el , especially if you are using an org-mode based system for your emacs configuration files.
Alex Vorobiev
source share