Title: Integration with Elementor?
Last modified: January 15, 2018

---

# Integration with Elementor?

 *  Resolved [blackeye0013](https://wordpress.org/support/users/blackeye0013/)
 * (@blackeye0013)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/)
 * Hi, your plugin is really great, any chance to make it compatible with the page
   builder [Elementor](https://cs.wordpress.org/plugins/elementor/) and its color
   palettes?

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/integration-with-elementor/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/integration-with-elementor/page/2/?output_format=md)

 *  [eplanet](https://wordpress.org/support/users/eplanet/)
 * (@eplanet)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9866491)
 * +1 for Elementor integration!
 *  Plugin Author [Daniel Menȝies](https://wordpress.org/support/users/kungtiger/)
 * (@kungtiger)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9883013)
 * Work’s in progress.
    Stay tuned.
 *  Thread Starter [blackeye0013](https://wordpress.org/support/users/blackeye0013/)
 * (@blackeye0013)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9895697)
 * Thanks for you reply, I’m glad to hear that.
    It would be the excellent feature
   and big timesaver!
 *  Plugin Author [Daniel Menȝies](https://wordpress.org/support/users/kungtiger/)
 * (@kungtiger)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9902633)
 * I find Elementor’s colour management rather weird.
 * As far as I can figure there are two places where colours are set:
    After clicking
   on that icon in the top left corner I find two buttons _Default Colors_ and _Color
   Picker_. The first seems to set the four global colours of the theme and the 
   second up to 6 (plus black and white) of the palette of the colour picker. Now,
   I can overwrite them all in both places (or just in one) but can not add an entry
   to _More Palettes_ without some dirty hacking (if you wonder why I am happy to
   explain).
 * As I am not familiar with Elementor’s workflow and am unsure what that list of
   palettes is actually trying to do, I am wondering, what is it you have in mind:
   
   simply replacing all colours in both or just one place, or adding an entry to
   the list of palettes?
    -  This reply was modified 8 years, 4 months ago by [Daniel Menȝies](https://wordpress.org/support/users/kungtiger/).
      Reason: corrected html tag garble
 *  [eplanet](https://wordpress.org/support/users/eplanet/)
 * (@eplanet)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9903692)
 * I finally wrote a plugin for this (and GeneratePress/GP-Premium alpha pickers).
   
   GeneratePress has a filter so that was easy. Elementor was, as you say a dirty
   hack.
 * For Elementor I resorted to using update_option then hide the Elementor Color
   Picker setting. You can add as many colors you want in Central Color Palette 
   and it works good in Elementor and GeneratePress/GP-Premium. I personally like
   8 colors plus black and white.
 * It’s best to leave the 4 Elementor Default/Global Colors alone.
 * Hacky but worth it to me.
 *  Plugin Author [Daniel Menȝies](https://wordpress.org/support/users/kungtiger/)
 * (@kungtiger)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9906601)
 * Thanks for the details.
    Give this a try: [1.10-dev](https://plugins.svn.wordpress.org/kt-tinymce-color-grid/branches/1.10-dev/)
   I am following your solution and am hiding the settings via CSS but rather than
   overwriting one of Elementor’s options I am using one of its filter.
 *  Thread Starter [blackeye0013](https://wordpress.org/support/users/blackeye0013/)
 * (@blackeye0013)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9906789)
 * Thanks, I’ll give it a try. Could you pls provide us a zip file for the download?
   This link seem to be the whole directory and copying the files one by one, could
   be quite tricky… Thanks
 *  Plugin Author [Daniel Menȝies](https://wordpress.org/support/users/kungtiger/)
 * (@kungtiger)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9906998)
 * If you have SVN just checkout that link otherwise [1.10-dev](https://mega.nz/#!N3YhjY5T!Uhn14G-fEsZlu9GgWMp-jdG4zLi3wPFWsbeeoX2eKvE)
 *  [eplanet](https://wordpress.org/support/users/eplanet/)
 * (@eplanet)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9907776)
 * This works for Elementor for me. Nice job.
 * GeneratePress doesn’t have alpha pickers but it’s premium plugin does:
    [https://generatepress.com/premium/](https://generatepress.com/premium/)
 * I just use something like this:
 *     ```
       function cc_palettes() {
       	$palettes = array_column( get_option( 'kt_color_grid_palette' ), '0' );
       	foreach ( $palettes as &$hex ) {
       		$hex = '#' . $hex;
       	}
   
       	return $palettes;
       }
   
       // Let's have at least 8 colors in Central Color Palette
       $palette_count = count( cc_palettes() );
       if ( $palette_count >= 8 ) {
   
       	if ( is_plugin_active( 'gp-premium/gp-premium.php' ) ) {
       		add_filter( 'generate_default_color_palettes', 'cc_palettes' );
       	}
       }
       ```
   
 * Thanks!
 *  Plugin Author [Daniel Menȝies](https://wordpress.org/support/users/kungtiger/)
 * (@kungtiger)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9908424)
 * Thanks for the feedback. I consider the integration with Elementor done.
    Before
   I release 1.10 I’d like to get those alpha pickers and GeneratePress sorted as
   well.
 * Now, I have a free version of GeneratePress running and the custom colours show
   up without any special code, meaning my wpColorPicker/Iris integration works.
 * I take it there is a problem with the altered version of wpColorPicker/Iris that
   the premium version of GeneratePress is providing. I’ve already added an alpha
   channel to the settings editor of CCP but I need to have a look at GP’s code 
   concering alpha pickers to finish the job. Maybe one of you could help out?
 *  [eplanet](https://wordpress.org/support/users/eplanet/)
 * (@eplanet)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9908522)
 * I have GP-Premium but I can’t post a public download, how can I get this to you
   privately?
 *  Plugin Author [Daniel Menȝies](https://wordpress.org/support/users/kungtiger/)
 * (@kungtiger)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9908816)
 * You can send me your mail address to [tumonowoye@crypemail.info](https://wordpress.org/support/topic/integration-with-elementor/tumonowoye@crypemail.info?output_format=md)
   
   It’s a temporary mailbox which only my laptop can read and I will delete as soon
   as we’re done.
 *  [eplanet](https://wordpress.org/support/users/eplanet/)
 * (@eplanet)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9908883)
 * Sent
 *  Plugin Author [Daniel Menȝies](https://wordpress.org/support/users/kungtiger/)
 * (@kungtiger)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9908976)
 * Give this a try: [1.10-dev2](https://mega.nz/#!F25xkZib!4m6UrNSmetIlSpVgOdEs3aW4_6BvyXmdvdGkvLNUVKA)
   
   Withing the CCP’s settings tick _GeneratePress Premium_ and _Transparency_.
 *  [eplanet](https://wordpress.org/support/users/eplanet/)
 * (@eplanet)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/integration-with-elementor/#post-9909061)
 * Works!

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/integration-with-elementor/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/integration-with-elementor/page/2/?output_format=md)

The topic ‘Integration with Elementor?’ is closed to new replies.

 * ![](https://ps.w.org/kt-tinymce-color-grid/assets/icon-256x256.png?rev=1095993)
 * [Central Color Palette](https://wordpress.org/plugins/kt-tinymce-color-grid/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/kt-tinymce-color-grid/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/kt-tinymce-color-grid/)
 * [Active Topics](https://wordpress.org/support/plugin/kt-tinymce-color-grid/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/kt-tinymce-color-grid/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/kt-tinymce-color-grid/reviews/)

 * 17 replies
 * 3 participants
 * Last reply from: [blackeye0013](https://wordpress.org/support/users/blackeye0013/)
 * Last activity: [8 years, 3 months ago](https://wordpress.org/support/topic/integration-with-elementor/page/2/#post-10000257)
 * Status: resolved