WooCommerce Shop页面变体产品按钮替换为添加到购物车按钮

时间:2018-07-24 作者:gautam dutta

我目前正在woocommerce上进行电子商务。在我的店铺/目录页面上,我使用了显示“选择选项”按钮的变体产品。我需要删除此按钮才能添加到购物车按钮。

1 个回复
SO网友:Pratik Bhatt

您的意思是需要将“选择选项”按钮替换为“添加到购物车”按钮吗

请检查以下代码

add_filter( \'woocommerce_product_add_to_cart_text\' , \'custom_select_options_text\' );
  function custom_select_options_text() {
  global $product;
  $product_type = $product->product_type;
  switch ( $product_type ) {
  case \'subscription\':
  return __( \'Options\', \'woocommerce\' ); /*change \'Options\' for Simple Subscriptions */
  case \'variable-subscription\':
  return __( \'Options\', \'woocommerce\' ); /*change \'Options\' for Variable Subscriptions */
  case \'variable\':
  return __( \'Options\', \'woocommerce\' ); /*change \'Options\' for Variable Products */
  case \'simple\':
  return __( \'Add to Cart\', \'woocommerce\' ); /*change \'Add to Cart\' for Simple Products */
  break;
      }
  }

结束