当前位置:首页>源码分享>RiPro源码> RiPro 主题添加“常见问题FAQ”教程

RiPro 主题添加“常见问题FAQ”教程

1. ripro ->inc -> codestar-framework -> options -> options.theme.php 搜索“share_poster_img_qrcode”,在第一个“),”后添加如下代码

array(
    'id'         => 'is_show_faq',
    'type'       => 'switcher',
    'title'      => '是否显示常见问题FAQ',
    'label'      => '文章底部显示常见问题FAQ',
    'default'    => true,
),
array(
    'id'     => 'faq_help_field',
    'type'   => 'group',
    'title'  => '常见问题FAQ相关设置',
    'max' => '6',
    'fields' => array(
        array(
        'id'         => '_matter',
        'type'       => 'text',
        'title'      => '常见问题',
        'attributes' => array(
        'style' => 'width: 100%;',
        ),
        ),
        array(
            'id'      => '_answer',
            'type'    => 'textarea',
            'title'   => '问题答案',
        ),
    ),
    'dependency' => array('is_show_faq', '==', 'true'),
    'default' => array(
        array(
            '_matter' =>'免费下载或者VIP会员专享资源能否直接商用?',
            '_answer' => '本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。',
        ),
    ),
),

2. ripro -> parts ->author-box.php,在“<div class=”article-footer”>”前添加如下代码

<?php if (_cao('is_show_faq')) : ?>
<div id="help">
  <h2>常见问题FAQ</h2>
  <div>
    <?php $show_faq = _cao('faq_help_field');if (!empty($show_faq)) {
      foreach ($show_faq as $key => $text) {
        echo '<dl><dt><i></i>'.$text['_matter'].'</dt>';
        echo '<dd><i></i>'.$text['_answer'].'</dd></dl>';
      }
    } ?>
  </div>
</div>
<?php endif; ?>

3. ropro -> footer.php,在“<?php if (_cao(‘web_js’)) : ?>” 前添加如下代码

<script>
var ndt = $("#help dt");
var ndd = $("#help dd");
ndd.eq(0).show();
ndt.click(function () {
ndd.hide();
$(this).next().show();
});
</script>

4. ripro -> assets -> css-> diy.css 添加如下样式

/***常见问题FAQ***/#help h2,#down h2{ font-size:18px; line-height:54px; color:#323232; border-bottom:2px solid #4f8af1; width:150px; font-weight:normal;}
#help dt{cursor:pointer; color:#353535; font-size:18px;margin-bottom:20px; }
#help dd{ display:none;color:#767676; font-size:14px; padding:10px; border-radius:5px; background:#f0f0f0; margin-bottom:20px;margin-bottom:20px; line-height:25px; letter-spacing:1px;}
#help dt,#help dd{ margin-left:40px; position:relative;}
#help dt i,#help dd i{background:url(../images/background/ico.png) no-repeat; width:30px; height:30px; display:block; position:absolute; left:-40px; top:0px;}
#help dd i{background-position: 0 -35px;}
.mt20{margin-top: 20px;margin-bottom: 15px;}
.ripro-dark #help h2, #down h2,.ripro-dark #help dt{color: #eee;}

5. 附上所需图标,请自行下载,放入 ripro -> assets -> images -> background 目录下

文章链接:https://sjcnh.cn/231.html
文章标题:RiPro 主题添加“常见问题FAQ”教程
文章版权:@花醉 所发布的内容,部分为原创文章,转载请注明来源,网络转载文章如有侵权请联系我们!我们将在24小时内极速处理!
本文最后更新发布于2023年06月09日 14时05分39秒,某些文章具有时效性,若有错误或已失效,请在下方留言或联系:841134898@qq.com

您已阅读完《免费(共171篇)》专题的第 13 篇。您可以继续阅读该专题下面的文章:

本文声明 本站上的部份代码,教程,软件,插件来自会员发布以及互联网收集,不代表本站立场,仅供网友个人学习交流或测试研究使用,未经原版权作者许可,禁止用于任何商业途径!请用户仔细辨认内容的真实性,避免上当受骗!本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。请在下载24小时内删除!若您喜欢本文可附上原文链接随意转载。如无意侵害了您的权益,请发送邮件841134898@qq.com 或点击右侧 私信:花醉 反馈,我们将尽快处理。如果遇到付费才可观看的文章,建议升级终身VIP。全站所有资源“任意下免费看”。本站资源少部分采用7z压缩,为防止有人压缩软件不支持7z格式,建议下载7-zip。zip、rar解压,建议下载WinRAR。

给TA赞助
共{{data.count}}人
人已赞助
!
您也想出现在这里吗?点击联系我们吧!
点击投个广告吧
0 条回复A文章作者M管理员
    暂无讨论,说说你的看法吧
个人中心
今日签到
有新私信 私信列表
有新消息 消息中心
快速搜索
在线客服
关注我们
  • 扫码打开当前页

  • 微信公众号

返回顶部