Moonstack Ultimate Elementor Kit is a powerful plugin that extends Elementor Page Builder with a comprehensive set of professional widgets for displaying posts, custom fields, sliders, and various content elements.
In the WordPress admin dashboard, the plugin settings and tools are available under the MU Elementor Kit menu.
Post Widgets
Slider Widgets
Form Widgets
This plugin supports embedding videos from third-party video platforms such as YouTube, Vimeo, and Dailymotion.
These services are used only when the site administrator explicitly selects a video field type and provides a corresponding video URL.
When embedding a video:
– The video ID is used to generate an iframe embed URL.
– No personal user data is collected or stored by the plugin.
– No data is transmitted automatically without user action.
External services used:
Dailymotion
Service: Video embedding
Website: https://www.dailymotion.com
Privacy Policy: https://www.dailymotion.com/legal/privacy
Terms of Service: https://www.dailymotion.com/legal/terms
Vimeo
Service: Video embedding
Website: https://vimeo.com
Privacy Policy: https://vimeo.com/privacy
Terms of Service: https://vimeo.com/terms
YouTube
Service: Video embedding
Website: https://www.youtube.com
Privacy Policy: https://policies.google.com/privacy
Terms of Service: https://www.youtube.com/t/terms
Google reCAPTCHA
Service: Spam protection and security
Website: https://www.google.com/recaptcha/about/
Privacy Policy: https://policies.google.com/privacy
Terms of Service: https://policies.google.com/terms
Basic Widgets
All widgets include extensive hook systems for customization:
All widgets can be customized using WordPress hooks. Example:
// Modify post title output
add_filter('moonulel_post_title_single_before_output', function($title, $post, $settings) {
return strtoupper($title);
}, 10, 3);
// Add custom content after banner slider
add_action('moonulel_banner_slider_after_container', function($settings, $unique_id, $widget) {
echo '<div class="custom-slider-navigation">Custom Nav</div>';
}, 10, 3);
// Filter form widget submitted data before sending email or saving
add_filter('moonulel_form_submitted_data', function($submitted_data, $form_id, $post_id, $settings) {
// Add custom hidden data
$submitted_data['Source'] = 'Facebook Ads';
return $submitted_data;
}, 10, 4);