日期:2015-04-08 阅读:6962
dmandwp系统 - wordpress系统和DM系统区块建站>>
购买: http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380
官网文档: http://revolution.themepunch.com/
在下载的the7主题包里,在plugins里有codecanyon-2751380-slider-revolution-responsive-wordpress-plugin.zip,解压后,里面有Slider Revolution插件和样本文件。
另外在 the7包/ Demo ContentCompact (recommended) / Slider Revolution这个目录里,会有the7主题用到的Slider Revolution样本文件。
另外,在主题 wp_the7/wp-contentthemes / dt-the7 / inc / plugins 里,也有Slider Revolution插件文件。
----------------
用到了google juqery.ui
在插件目录里搜索,然后换成本地的: 在文件: plugins/revslider/inc_php/framework 的 base_admin.class.php
<link rel='stylesheet' id='jui-smoothness-css' href='http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/themes/base/jquery-ui.css' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js?ver=4.0'></script>
换成:
$urlJqueryUI =home_url().'/sitelibs/jquery-ui.min.js';
wp_enqueue_style('jui-smoothness',home_url().'/sitelibs/jquery-ui.min.css', array(), null);
------------
预览时,也会调ajax.google,在 plugins/revslider/revslider_front.php
改为:
程序代码: [选择]
//$url_jquery = $setBase."ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js?app=revolution";
$url_jquery = home_url().'/sitelibs/jquery.js'; //这不是jqueryui
echo home_url()
---------------
然后再导入 example
-------------
导入后,有的example的 css里有fonts.google
可以先解压example 把这个去了。
或者导入后,用phpmyadmin改,在wp-options里找revslider-static-css字段。
-------------
如果是全屏的话,要注意 设置高度。
--------------
这个插件有 google fonts的css,可以用这个插件来清除:
https://wordpress.org/plugins/remove-google-fonts-references/