0

最近我制作了一个自定义简码,显示 Dokan“添加产品”表单,但现在每次添加新产品时,我都会被重定向到 Dokan 仪表板中的产品编辑页面。我的 php 技能非常有限,因为这是我第一次进行任何编码,但我得到的东西很快。

有人可以帮我解决这个问题吗?

这是短代码显示的代码的结尾(在提交按钮之后)。

 </form>

            <?php } else { ?>

                <?php dokan_seller_not_enabled_notice(); ?>

            <?php } ?>

        <?php } else { ?>

            <?php do_action( 'dokan_can_post_notice' ); ?>

        <?php } ?>
    </div>

    <?php

        /**
         *  dokan_after_new_product_inside_content_area hook
         *
         *  @since 2.4
         */
        do_action( 'dokan_after_new_product_inside_content_area' );
    ?>

</div> <!-- #primary .content-area -->

<?php

    /**
     *  dokan_dashboard_content_after hook
     *  dokan_after_new_product_content_area hook
     *
     *  @since 2.4
     */
    do_action( 'dokan_dashboard_content_after' );
    do_action( 'dokan_after_new_product_content_area' );
?>

4

2 回答 2

0

使用新版本的 Dokan,您可以使用上面的代码在文件 dokan-lite/includes/Dashboard/Templates 中进行调整!

于 2021-03-01T04:29:18.130 回答
-1

编辑这个文件 public_html/wp-content/plugins/dokan-lite/classes/template-products.php

do_action( 'dokan_new_product_added', $product_id, $post_data );

                    if ( current_user_can( 'dokan_edit_product' ) ) {
                        $redirect = dokan_edit_product_url( $product_id );
               } else {
                        $redirect = dokan_get_navigation_url( 'products' );
                    }

只需将 $redirect 的值替换为您的自定义网址,如下所示

$redirect = ("https://www.wordpress.com/dashboard/products/");

对于编辑产品页面后的重定向,请替换以下内容

do_action( 'dokan_product_updated', $post_id );

            //$edit_url = dokan_edit_product_url( $post_id );

            $redirect = apply_filters( 'dokan_add_new_product_redirect', dokan_edit_product_url( $post_id ), $post_id );

            wp_redirect( add_query_arg( array( 'message' => 'success' ), $redirect ) );
            exit;
于 2018-11-16T15:51:31.700 回答