0

我想知道是否有可能在我的网站上设置一个供零售商登录以进行批量订购的部分。它不需要定价(因为我可能已经与不同的零售商协商了不同的价格)。它需要的只是一个地方,他们可以在产品清单上下订单,然后通过电子邮件提交......

有谁知道这样做的插件吗?(不用登录也没关系)

有没有一些简单的方法可以让我在我的 WooCommerce 商店中获取所有产品名称和编号,并将它们添加到电子邮件表单中,产品编号和添加数量的框......像这样:

PHP 明智吗?任何帮助都会很棒!

在此处输入图像描述

4

1 回答 1

2

制作一个页面模板,并像这样构建您的表单:

        $args = array(
            'posts_per_page'   => '',
            'offset'           => 0,
            'category'         => '',
            'orderby'          => 'post_date',
            'order'            => 'DESC',
            'include'          => '',
            'exclude'          => '',
            'meta_key'         => '',
            'meta_value'       => '',
            'post_type'        => 'product',
            'post_mime_type'   => '',
            'post_parent'      => '',
            'post_status'      => 'publish',
            'suppress_filters' => true );

        $products = get_posts( $args );

        foreach ($products as $product) {
            //echo out your table, eg
            $pid = $product->ID;
            $pname = $product->post_title;
            $inputName = $pid.'quantity';

            echo "<tr>
                    <td>$pid</td>
                    <td>$pname</td>
                    <td><input type='text' name='$inputName' value=''> </td>
                  </tr>";
        }
于 2013-09-26T12:32:17.123 回答