php - WP 自定义帖子类型无法在上面的 woocommerce 3.0 中添加到购物车

标签 php wordpress woocommerce

我仍然可以通过向“woocommerce_product_class”添加过滤器来将自定义帖子类型添加到 WooCommerce 2.6 中的购物车

function wc_product_class( $class, $product_type, $post_type ) {

  if( 'my_custom_post_type_slug' == $post_type )
    $class = 'WC_Product_Simple';

  return $class;

}
add_filter( 'woocommerce_product_class', 'wc_product_class', 10, 3);

//This will echo the carti item id
echo WC()->cart->add_to_cart($custom_post_type_id, $quantity, null, null, array());

不幸的是,这不适用于最新版本的 WooCommerce。有人可以帮我解决这个问题吗?非常感谢任何建议、评论和解决方案。

最佳答案

I'm selling a plugin that would enable to use Custom Post Type as "product" of WooCommerce .我为此做了很多工作。

但这是最重要的部分。
您必须创建自己的数据存储,如下所示:

首先创建一个扩展到 WC_Product_Data_Store_CPT 的类。这个想法是覆盖此类检查帖子类型的现有功能。我发现 readget_product_type 进行检查。

class WCCPT_Product_Data_Store_CPT extends WC_Product_Data_Store_CPT {

    /**
     * Method to read a product from the database.
     * @param WC_Product
     */

    public function read( &$product ) {

        $product->set_defaults();

        if ( ! $product->get_id() || ! ( $post_object = get_post( $product->get_id() ) ) || ! in_array( $post_object->post_type, array( 'birds', 'product' ) ) ) { // change birds with your post type
            throw new Exception( __( 'Invalid product.', 'woocommerce' ) );
        }

        $id = $product->get_id();

        $product->set_props( array(
            'name'              => $post_object->post_title,
            'slug'              => $post_object->post_name,
            'date_created'      => 0 < $post_object->post_date_gmt ? wc_string_to_timestamp( $post_object->post_date_gmt ) : null,
            'date_modified'     => 0 < $post_object->post_modified_gmt ? wc_string_to_timestamp( $post_object->post_modified_gmt ) : null,
            'status'            => $post_object->post_status,
            'description'       => $post_object->post_content,
            'short_description' => $post_object->post_excerpt,
            'parent_id'         => $post_object->post_parent,
            'menu_order'        => $post_object->menu_order,
            'reviews_allowed'   => 'open' === $post_object->comment_status,
        ) );

        $this->read_attributes( $product );
        $this->read_downloads( $product );
        $this->read_visibility( $product );
        $this->read_product_data( $product );
        $this->read_extra_data( $product );
        $product->set_object_read( true );
    }

    /**
     * Get the product type based on product ID.
     *
     * @since 3.0.0
     * @param int $product_id
     * @return bool|string
     */
    public function get_product_type( $product_id ) {
        $post_type = get_post_type( $product_id );
        if ( 'product_variation' === $post_type ) {
            return 'variation';
        } elseif ( in_array( $post_type, array( 'birds', 'product' ) ) ) { // change birds with your post type
            $terms = get_the_terms( $product_id, 'product_type' );
            return ! empty( $terms ) ? sanitize_title( current( $terms )->name ) : 'simple';
        } else {
            return false;
        }
    }
}

之后,将过滤器添加到 woocommerce_data_stores 并使用您的类。

add_filter( 'woocommerce_data_stores', 'woocommerce_data_stores' );

function woocommerce_data_stores ( $stores ) {      
    $stores['product'] = 'WCCPT_Product_Data_Store_CPT';
    return $stores;
}

这样,您就可以将帖子类型birds 添加到购物车。但实际上不会成功加入购物车。因为没有价格,购物车会拒绝它。

WooCommerce Custom Post Type

要解决这个问题,您需要另一个过滤器。下面是添加价格的简单方法。

add_filter('woocommerce_product_get_price', 'woocommerce_product_get_price', 10, 2 );
function woocommerce_product_get_price( $price, $product ) {

    if ($product->get_id() == 815 ) {
        $price = 10;        
    }
    return $price;
}

完成后,您将成功添加到购物车。

WooCommerce Custom Post Type

关于php - WP 自定义帖子类型无法在上面的 woocommerce 3.0 中添加到购物车,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43273286/

相关文章:

php - 尝试检查某些数字 mysql php 之间的值

PHP Laravel 路由问题

php - 添加到 Woocommerce 的自定义元数据未显示在订单项元中

php - 将 ID 传递给函数中的 pre_get_posts 查询

javascript - 如何让我的缩略图显示在随机位置(在存档页面 wordpress 中)

php - 仅在 WooCommerce 管理订单列表自定义列中显示特定订单状态的数据

php - 在自定义 php 文件中使用 Woocommerce 函数

php - 上线时 Paypal 客户端身份验证失败

php - 在 phpmyadmin 中工作的 sql 查询 - 在 php 中不工作

php - woocommerce - 如何获取当前产品类别的最顶级类别