Support

Search results for ""

Sorry, no results found. Perhaps you would like to search the documentation?
All Topics
GeneralReason

Conflict with JW Player 6 Plugin

Anyone notice conflicts when ‘JW Player 6’ is also active?
-‘Update’ & ‘Add Column’ icons become non-responsive.
-Admin Column views don’t change.

7 years, 7 months ago
Stefan van den Dungen Gronovius
Developer

We will try to reproduce this issue and look for a possible fix.
Since I cannot download the plugin right now from their website, you can please provide us with a copy of the plugin you’re using? Please send the file to support@admincolumns.com and we will try to reproduce the problem. Otherwise you could have a look at the console in your browser as this sounds like a javascript error/conflict.

7 years, 7 months ago
Stefan van den Dungen Gronovius
Developer

I found the download link but it did not work at the time.
Just downloaded the plugin and I was able to reproduce the issue.
It turns out that is there is a select2 conflict error on our settings page.
You can use this snippet to disable the jwplayer select2 on our setting pages.

function cac_remove_jwplayer_select2(){
	if( function_exists( 'cac_is_setting_screen' ) && cac_is_setting_screen() ){
		wp_deregister_script( 'jquerySelect2' );
		wp_dequeue_script( 'jquerySelect2' );
	}
}
add_action( 'admin_enqueue_scripts', 'cac_remove_jwplayer_select2' );

This should fix the problem.

7 years, 7 months ago
GeneralReason

What file exactly do we add this code to?

7 years, 7 months ago
Stefan van den Dungen Gronovius
Developer

You can add this in your own theme function.php file.
This is custom code that should effect your installation and should not be added in our plugin files.

7 years, 7 months ago
GeneralReason

problem solved

Thank u sir.

7 years, 7 months ago
Stefan van den Dungen Gronovius
Developer

You’re welcome.
I will close this ticket

7 years, 7 months ago

You must be logged in to reply to this topic.