FeedbackJar works on any WordPress site via a header/footer snippet plugin or a single wp_footer hook in your theme. Compatible with any theme and page builder.
# Sign up at app.feedbackjar.com
# Create a widget → copy your Widget ID Plugins → Add New → search "WPCode" or "Insert Headers and Footers" → Install & Activate → Any header/footer snippet plugin works — WPCode, Insert Headers and Footers, or Header Footer Code Manager.
<script src="https://cdn.feedbackjar.com/sdk.js"></script>
<script>
window.fj.init('YOUR_WIDGET_ID');
</script> → Save. The widget now loads on every page and post.
// functions.php of your child theme
add_action('wp_footer', function () {
?>
<script src="https://cdn.feedbackjar.com/sdk.js"></script>
<script>window.fj.init('YOUR_WIDGET_ID');</script>
<?php
}); → Use a child theme so parent-theme updates don't overwrite the change.
Sign up free, grab your Widget ID, and have the feedback widget running in your WordPress app in 2 minutes.