Support Center

PixeBuilder Support Center
Support Center>pixe_enqueue_builder_scripts
Updated On: January 22, 2026

pixe_enqueue_builder_scripts

Description

do_action('pixe_enqueue_builder_scripts');

This action is triggered after the builder scripts have been enqueued. Use this action to register additional scripts or data for the builder settings area.

This is typically used to include element settings in the side panel.

Examples

add_action('pixe_enqueue_builder_scripts', 'my_custom_builder_script');
function my_custom_builder_script(){
	wp_enqueue_script('my-custom-builder-js', '/path/to/script.js', array('jquery'), '1.0.0', true);
}

Related

Is This Article Helpful?

We value your feedback! Let us know if this article helped you:

Still need help? Contact Us for further assistance.

Table Of Contents