Wordpress插件滑块革命错误

Him*_*dar 9 wordpress jquery revolution-slider

我无法摆脱以下错误.激活插件后,错误显示出来.

Slider Revolution error: could not unzip into the revslider/public/assets/ folder, please make sure that this folder is writable. 
Run Code Online (Sandbox Code Playgroud)

我做了chmod 777到revslider/public/assets /但没有用.

我在浏览器中也遇到了这个错误..

Revolution Slider Error: You have some jquery.js library include that comes after the revolution files js include.
This includes make eliminates the revolution slider libraries, and make it not work.
To fix it you can:
    1. In the Slider Settings -> Troubleshooting set option: Put JS Includes To Body option to true.
    2. Find the double jquery.js include and remove it.
Run Code Online (Sandbox Code Playgroud)

转到滑块设置后我无法进入故障排除设置选项,因为没有任何链接(包括"问题处理")在右侧工作(附截图)

在此输入图像描述

小智 10

我也有同样的问题.我不确定导致此问题的原因,但我可以分享我的解决方法:

  1. 首先,您必须具有对WP文件夹的FTP访问权限
  2. 停用Revolution Slider插件
  3. 使用FTP并转到revslider/public/assets/assets/svg /并将svg.zip文件下载到您的PC.
  4. 解压缩svg.zip.抓取所有解压缩的内容并将其放入uploads/revslider/assets/svg /文件夹中.(如果在uploads/revslider文件夹中资产和svg不存在,则必须手动创建它们).
  5. 转到revslider/inludes/framework / open base.class.php文件并编辑函数public_folder_unzip():

旧代码

 if($unzipfile === true){
 update_option('rs_public_version', RevSliderGlobals::SLIDER_REVISION); 
 }
 else{
 add_action('admin_notices', array('RevSliderBase', 'copy_notice'));
 }
Run Code Online (Sandbox Code Playgroud)

新代码

 if($unzipfile == true){
 update_option('rs_public_version', RevSliderGlobals::SLIDER_REVISION); 
 }
 else{
 add_action('admin_notices', array('RevSliderBase', 'copy_notice'));
 }
Run Code Online (Sandbox Code Playgroud)
  1. 保存文件更改.
  2. 激活插件.


小智 8

我在更新Autoptimize插件后发现今天发生了这种情况.关闭自动优化设置中的Javascript优化可以解决问题(尽管可能以某些性能为代价).