2014-02-12 3 views
0

WordPress Nextgen 갤러리에서 iframe 기반 팝업 플러그인을 거의 사용하지 않았습니다. frame_event_publisher.js 파일에서 항상 js 오류를 생성합니다.NextGen 갤러리에서 Iframe 플러그인 관련 문제가 발생했습니다.

다른 플러그인에서이 파일을로드하지 못하도록 금지되어 있습니까?

+0

무엇이 오류입니까? –

+0

내가 TypeError를받는 sm : this.find_parent (...)는 정의되지 않았습니다. this.find_parent (child) .register_child (child.Frame_Event_Publisher); –

+0

이 문제가 계속 발생하고 있음을 확인할 수 있습니다. 복제하려면 iframe에서 관리자 페이지를 열면 오류가 나타납니다. –

답변

0

해결 방법 중 하나는 강제로 스크립트를 큐에서 빼는 것입니다. NextGEN이 작동하려면이 스크립트가 필요할 것이므로 필요할 때만 큐를 제거하기위한 조건을 추가해야합니다.

add_action('wp_print_scripts', 'dequeue_frame_event_publisher', 100); 
function dequeue_frame_event_publisher() { 
    if (is_admin()) { // Add another condition to check if in an iframe. 
     wp_dequeue_script('frame_event_publisher'); 
    } 
}