-
-
Save mmarj/d24fa8a9bcf4947180b746c36068037c to your computer and use it in GitHub Desktop.
How to add custom css field with elementor free version.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Elementor\Controls_Manager; | |
use Elementor\Element_Base; | |
use Elementor\Core\Files\CSS\Post; | |
use Elementor\Core\DynamicTags\Dynamic_CSS; | |
// Exit if accessed directly | |
if (!defined('ABSPATH')) { | |
exit; | |
} | |
if(defined('ELEMENTOR_PRO_VERSION')){ | |
return; | |
} | |
class Prefix_Custom_Css { | |
/** | |
* Add Action hook | |
*/ | |
public function __construct() { | |
add_action('elementor/element/after_section_end', [__CLASS__, 'add_controls_section'], 10, 3); | |
add_action('elementor/element/parse_css', [$this, 'add_post_css'], 10, 2); | |
//add_action( 'elementor/post-css-file/parse', [ $this, 'add_page_settings_css' ] ); | |
add_action( 'elementor/css-file/post/parse', [ $this, 'add_page_settings_css' ] ); | |
add_action( 'elementor/editor/after_enqueue_scripts', [$this, 'enqueue_editor_scripts']); | |
} | |
/** | |
* Replace Pro Custom CSS Control | |
*/ | |
public static function add_controls_section($element, $section_id, $args) { | |
if ($section_id == 'section_custom_css_pro') { | |
$element->remove_control('section_custom_css_pro'); | |
$element->start_controls_section( | |
'section_custom_css', | |
[ | |
'label' => __( 'Prefix Custom CSS', 'pawshop_toolkit' ), | |
'tab' => Controls_Manager::TAB_ADVANCED, | |
] | |
); | |
$element->add_control( | |
'custom_css_title', | |
[ | |
'raw' => __( 'Add your own custom CSS here', 'pawshop_toolkit' ), | |
'type' => Controls_Manager::RAW_HTML, | |
] | |
); | |
$element->add_control( | |
'custom_css', | |
[ | |
'type' => Controls_Manager::CODE, | |
'label' => __( 'Custom CSS', 'pawshop_toolkit' ), | |
'language' => 'css', | |
'render_type' => 'ui', | |
'show_label' => false, | |
'separator' => 'none', | |
] | |
); | |
$element->add_control( | |
'custom_css_description', | |
[ | |
'raw' => __( 'Use "selector" to target wrapper element. Examples:<br>selector {color: red;} // For main element<br>selector .child-element {margin: 10px;} // For child element<br>.my-class {text-align: center;} // Or use any custom selector', 'pawshop_toolkit' ), | |
'type' => Controls_Manager::RAW_HTML, | |
'content_classes' => 'Theme_pawshop elementor-descriptor', | |
] | |
); | |
$element->end_controls_section(); | |
} | |
} | |
/** | |
* @param $post_css Post | |
* @param $element Element_Base | |
*/ | |
public function add_post_css($post_css, $element) { | |
if ($post_css instanceof Dynamic_CSS) { | |
return; | |
} | |
$element_settings = $element->get_settings(); | |
if (empty($element_settings['custom_css'])) { | |
return; | |
} | |
$css = trim($element_settings['custom_css']); | |
if (empty($css)) { | |
return; | |
} | |
$css = str_replace('selector', $post_css->get_element_unique_selector($element), $css); | |
// Add a css comment | |
$css = sprintf('/* Start custom CSS for %s, class: %s */', $element->get_name(), $element->get_unique_selector()) . $css . '/* End custom CSS */'; | |
$post_css->get_stylesheet()->add_raw_css($css); | |
} | |
/** | |
* @param $post_css Post | |
*/ | |
public function add_page_settings_css( $post_css ) { | |
$document = \Elementor\Plugin::$instance->documents->get( $post_css->get_post_id() ); | |
$custom_css = $document->get_settings( 'custom_css' ); | |
$custom_css = trim( $custom_css ); | |
if ( empty( $custom_css ) ) { | |
return; | |
} | |
$custom_css = str_replace( 'selector', $document->get_css_wrapper_selector(), $custom_css ); | |
// Add a css comment | |
$custom_css = '/* Start custom CSS for page-settings */' . $custom_css . '/* End custom CSS */'; | |
$post_css->get_stylesheet()->add_raw_css( $custom_css ); | |
} | |
/** | |
* Enqueue Editor Script | |
*/ | |
public function enqueue_editor_scripts() { | |
wp_enqueue_script('prefix-editor-support-js', plugin_dir_path(__FILE__).'inc/widgets/elementor/assets/js/editor-support.js', array('jquery'), '', true); | |
} | |
} | |
new Prefix_Custom_Css(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
"use strict"; | |
function addCustomCss(css, view) { | |
var model = view.getEditModel(), | |
customCSS = model.get('settings').get('custom_css'); | |
if (customCSS) { | |
css += customCSS.replace(/selector/g, '.elementor-element.elementor-element-' + view.model.id); | |
} | |
return css; | |
} | |
function addPageCustomCss() { | |
var customCSS = elementor.settings.page.model.get('custom_css'); | |
if (customCSS) { | |
customCSS = customCSS.replace(/selector/g, elementor.config.settings.page.cssWrapperSelector); | |
elementor.settings.page.getControlsCSS().elements.$stylesheetElement.append(customCSS); | |
} | |
} | |
elementor.hooks.addFilter('editor/style/styleText', addCustomCss); | |
elementor.settings.page.model.on('change', addPageCustomCss); | |
elementor.on('preview:loaded', addPageCustomCss); | |
})(jQuery); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//include custom css file with the plugin or theme | |
if (defined('ELEMENTOR_VERSION')) { | |
require_once(plugin_dir_path(__FILE__).'inc/widgets/elementor/custom-css.php'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment