懒得说废话了,暂时不出售该功能
懒人包专用下载覆盖即可,路径定位\zibll\inc\functions\user\page.php文件
代码修改方式如下
156行左右
if (_pz('user_auth_s', true)) {
$tabs_array['auth'] = array(
'title' => '官方认证',
'nav_attr' => 'drawer-title="官方认证"',
'loader' => '<div style="padding: 40px 20px;" class="colorful-bg c-blue flex jc zib-widget"><div class="colorful-make"></div><div class="text-center"><div class="em4x"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-user-auth"></use></svg></div><div class="mt10 em14 padding-w10 font-bold mb40">官方认证</div><div class="placeholder" style="width: 120px;height: 30px;"> </div></div></div>',
);
}
163行左右添加
319行左右
if (_pz('user_auth_s', true)) {
$buttons[] = array(
'html' => '',
'icon' => zib_get_svg('user-auth'),
'name' => '官方认证',
'tab' => 'auth',
);
}
327左右添加
600行左右
//获取用户中心绑定邮箱等功能的按钮
function zib_get_user_set_link($class = '', $tab = '', $text = '')
{
$user_id = get_current_user_id();
if (!$user_id) {
return;
}
$args = array(
'tag' => 'a',
'class' => 'collection-set-link ' . $class,
'mobile_bottom' => true,
'height' => 220,
'data_class' => 'modal-mini',
'text' => $text,
'query_arg' => array(
'tab' => $tab,
'action' => 'user_set_modal',
),
);
//每次都刷新的modal
return zib_get_refresh_modal_link($args);
}
629行左右添加
在func.php文件里添加这段代码
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
- 最新
- 最热
只看作者