Articles on: WordPress & WooCommerce

The UI in the backend is messed up (Conflict)

Does your product page look like this?



When your theme has a customiser built with Bootstrap, often the template files are loaded on every single page in admin. So bootstrap is conflicting with our react.js that is used for administering to the products. To test if your theme is conflicting with our plugin, please change the theme (e.g. Storefront or one of the WordPress default themes) to find out if the issue is caused by your current activated theme.


In the first instance - contact your theme developers and ask them for a snippet to add to functions.php that will only call bootstrap files on pages that need them.


add_action( 'admin_footer', 'fpd_dequeue_script' );

function fpd_dequeue_script() {
if( wp_script_is('fpd-admin') ) {
wp_dequeue_script( 'bootstrap.bundle.min.js' );
}
}


PHP

Updated on: 06/08/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!