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);
}