我有一个个人主题" A" ,我希望它在没有Woocommerce的情况下也可以使用。 当 Woocommerce" WC" 插件添加后,我会将A产品与WC集成。我有一个名为"对象"的自定义帖子类型,如何制作"对象"可以通过WC购买吗?
我已经在StackOverflow Adding Custom Post Types to Woocommerce上看到了这个答案 最终解决方案提供了一个免费(不再是)插件来解析。
我更喜欢自己做这件事,没有插件的帮助。我很好奇,预包装解决方案并不是我想要的。
答案 0 :(得分:9)
我有created a simple tutorial这里添加它太长了。
要实现目标,您的帖子类型必须有价格。也就是说,价格的自定义字段应该有一个元键_price
。
如果您的元密钥不是_price
,则可以向下面显示的woocommerce_get_price
添加过滤条件。
add_filter('woocommerce_get_price','reigel_woocommerce_get_price',20,2);
function reigel_woocommerce_get_price($price,$post){
if ($post->post->post_type === 'post') // change this to your post type
$price = get_post_meta($post->id, "price", true); // assuming your price meta key is price
return $price;
}
有了这个,您现在可以将帖子类型中的任何帖子添加到购物车。这样做http://localhost/wordpress/cart/?add-to-cart=1
,其中1是帖子类型中帖子的ID。
访问该链接后的示例结果图像:
现在,您必须设置如下表格。
<form action="" method="post">
<input name="add-to-cart" type="hidden" value="<?php echo $post->ID ?>" />
<input name="quantity" type="number" value="1" min="1" />
<input name="submit" type="submit" value="Add to cart" />
</form>
你需要这个才能得到“添加到购物车”按钮。输入的名称必须保持原样。
答案 1 :(得分:3)
我们可以尝试一件容易的事情..您想要一个自定义的帖子类型来存储您的产品,当WooCommerce集成时,您自定义的帖子类型中添加的产品可以作为woocommerce产品..
检查是否安装了woocommerce。
如果没有,则创建自定义帖子类型为“产品”(类似于woocommerce)。
要检查woocommerce是否处于活动状态,请使用此代码
<?php
if ( class_exists( 'WooCommerce' ) ) {
// code that requires WooCommerce
} else {
// you don't appear to have WooCommerce activated
}
?>
答案 2 :(得分:1)
我遇到了同样的问题。花了几天后,我想出了它应该如何运作及其解决方案。
我在这里做了什么
_price
更改了if
类woocommerce/includes/class-wc-product-factory.php
函数get_product_class
中的if ( 'product' === $post_type){
条件,如下所示:
之前
if ( 'product' === $post_type || 'packages' === $post_type ){
之后
if ( 'product' === $post_type || 'packages' === $post_type ){
效果很好。
现在我想使用一些过滤方法更改此产品类型。任何人都可以让我知道它:
Display.getInstance().setProperty(
"android.WebView.grantPermissionsFrom",
"https://www.example.com/"
);
答案 3 :(得分:1)
I'm selling a plugin that would enable to use Custom Post Type as "product" of WooCommerce。我做了很多工作,使其与WooCommerce 3.0兼容
但这是最重要的部分 您必须创建自己的数据存储,如下所示:
首先创建一个扩展到WC_Product_Data_Store_CPT
的类。这个想法是覆盖检查帖子类型的这个类的现有函数。我找到了read
和get_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
的帖子类型添加到购物车。但实际上并不会成功添加到购物车。因为没有价格,购物车会拒绝它。
要解决此问题,您需要另一个过滤器。以下是添加价格的简单方法。
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;
}
一旦完成,您就可以成功添加到购物车中。