/*
Theme Name: Pricom - Child
Theme URI: https://harutheme.com/pricom
Author: HaruTheme
Author URI: https://harutheme.com/
Description: This is child theme of Pricom
Template: pricom
Version: 1.0.0
*/

/*---------------------------------
  	Write your css code from here
------------------------------------*/
add_filter('woocommerce_gateway_title', function($title, $id){
  if ($id === 'cod') { $title = 'Ön Sipariş (Ödeme Yok)'; }
  return $title;
}, 10, 2);

add_filter('woocommerce_gateway_description', function($desc, $id){
  if ($id === 'cod') {
    $desc = 'Ödemeyi şimdi almıyoruz. Siparişiniz kayda alınır; WhatsApp üzerinden teyit edilir.';
  }
  return $desc;
}, 10, 2);
add_filter('woocommerce_order_button_text', function(){
  return 'Siparişinizi Oluşturun';
});