首页 > 解决方案 > 将弹出窗口更改为重定向

问题描述

我有一个 wordpress 网站并添加数字插件供客户通过电话登录,在我的 wordpress 网站主题中有一个通过电子邮件的模式弹出注册表单。

这是用于调用弹出窗口的代码:

              <?php if(negarshop_option('header_res_user') == "true" and function_exists('WC')):
                $account_link = wc_get_page_permalink( 'myaccount' );
                $current_user = wp_get_current_user();
            ?>
            <a href="<?php echo $account_link; ?>"<?php if (!$current_user->exists()) { ?> data-toggle="modal" data-target="#login-popup-modal"<?php }?> class="rh-item"><i class="fal fa-user"></i></a>
            <?php endif; ?>

我不想打开一个模式弹出窗口,而是重定向到 mysite.com/my-account/ 或使用数字模式短代码 [dm-modal] 而不是主题默认弹出窗口。

有人可以帮我更改源代码吗?

标签: phpwordpress

解决方案


推荐阅读