注册赠送会员模块-日主题V2主题美化二开教程

图片[1]-注册赠送会员模块-日主题V2主题美化二开教程-尚艺博客

利用宝塔或则FTP打开/rizhuti-v2/inc/options下的admin-options.php文件放入一下代码在第10行下面:

CSF::createSection( $prefix, array(
            'title'  => '功能增强',
            'icon'   => 'fas fa-rocket',
            'fields' => array(
            array(
                'id'     => 'register_gift',
                'title'  => '注册送会员',
                'type'   => 'fieldset',
                'fields' => array(
                    array(
                        'id'      => 'is_register_gift',
                        'type'    => 'switcher',
                        'title'   => '开关',
                        'default' => false,
                    ),
                    array(
                        'id'         => '_level',
                        'type'       => 'radio',
                        'title'      => '会员等级',
                        'inline'     => true,
                        'options'    => array(
                            '31'   => '月卡VIP',
                            '365'  => '年卡VIP',
                            '3600' => '永久VIP',
                        ),
                        'default'    => '31',
                        'dependency' => array( 'is_register_gift', '==', 'true' ),
                    ),
                    array(
                        'id'         => '_day',
                        'type'       => 'text',
                        'title'      => '赠送时长(天)',
                        'inline'     => true,
                        'default'    => '30',
                        'dependency' => array( 'is_register_gift', '==', 'true' ),
                    ),
                ),
            ),
            )
        )
    );

随后把这行代码放在主题的functions.php文件最底部即可

感谢您的来访,获取更多精彩文章请收藏本站。

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容