Answers for "woocommerce add to cart with custom data programmatically"

0

woocommerce show data to cart page

add_filter( "woocommerce_get_item_data", "cs_get_item_data", 10,2 );
function cs_get_item_data( $data, $cart_item ){
  if ( isset( $cart_item['singleFood'] ) ) {
    $data[] = array(
        'name'    => 'Choosen Custom Food Items',
        'value'   => sanitize_text_field( $cart_item['singleFood'] ),
      );
  }
  return $data;
}
Posted by: Guest on May-08-2021
0

add to cart function woocommerce

// To change add to cart text on single product page
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' ); 
function woocommerce_custom_single_add_to_cart_text() {
    return __( 'Buy Now', 'woocommerce' ); 
}
// To change add to cart text on product archives(Collection) page
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );  
function woocommerce_custom_product_add_to_cart_text() {
    return __( 'Buy Now', 'woocommerce' );
}
Posted by: Guest on July-07-2021

Code answers related to "woocommerce add to cart with custom data programmatically"

Browse Popular Code Answers by Language