這是一個說大不大說小不小的問題,但還是有必要處理下,找到主題
/Avada/includes/lib/inc/redux/framework/FusionReduxCore/core/enqueue.php
開啟 enqueue.php 檔案定位到大約 291 行,如下:
wp_enqueue_script(
'webfontloader',
'https://googleajax.admincdn.com/ajax/libs/webfont/1.5.0/webfont.js',
array( 'jquery' ),
'1.5.0',
true
);
}
將 https://googleajax.admincdn.com/ajax/libs/webfont/1.5.0/webfont.js
替換為 #
修改後如下:
wp_enqueue_script(
'webfontloader',
'#',
array( 'jquery' ),
'1.5.0',
true
);
}
將 https://googleajax.admincdn.com/ajax/libs/webfont/1.5.0/webfont.js
儲存即可。